Compare commits

...
20 Commits
Author SHA1 Message Date
github-actions[bot] 7b7c6e31cd 🛸 Sync 2026-09-15 02:19:07
Merge-upstream / merge (push) Waiting to run
2026-09-15 02:19:07 +08:00
kiddin9 f6683ec9ac Update upstream.yml 2026-09-15 02:16:45 +08:00
github-actions[bot] 921c6ff346 🍓 Sync 2026-09-15 02:13:06 2026-09-15 02:13:06 +08:00
kiddin9 7872f8755a Update luci-mod-status.patch 2026-09-15 02:10:35 +08:00
kiddin9 cfa884d090 Update upstream.yml 2026-09-15 02:10:26 +08:00
kiddin9 0bc6317028 Update upstream.yml 2026-09-15 02:05:16 +08:00
kiddin9 127e9ab526 Update upstream.yml 2026-09-15 02:03:03 +08:00
kiddin9 55f4afaae1 Update upstream.yml 2026-09-15 02:02:39 +08:00
kiddin9 40019bd445 Update upstream.yml 2026-09-15 01:54:56 +08:00
github-actions[bot] 0dbf9b779b 🍉 Sync 2026-09-15 01:05:01 2026-09-15 01:05:01 +08:00
github-actions[bot] 5a1af7b30a 🛸 Sync 2026-09-15 00:39:41 2026-09-15 00:39:41 +08:00
kiddin9 e1c9ca3f42 Update luci-mod-status.patch 2026-09-15 00:37:24 +08:00
github-actions[bot] 5fc27ca614 💐 Sync 2026-09-14 23:49:49 2026-09-14 23:49:49 +08:00
kiddin9 593e4e0ff8 Update upstream.yml 2026-09-14 23:47:43 +08:00
github-actions[bot] 1ffa1631e1 🎈 Sync 2026-09-14 23:41:35 2026-09-14 23:41:35 +08:00
kiddin9 ed6695f0b6 Update luci-mod-status.patch 2026-09-14 23:39:10 +08:00
github-actions[bot] 8a76697528 🍕 Sync 2026-09-14 23:30:37 2026-09-14 23:30:37 +08:00
kiddin9 d6d7df32a5 Update luci-mod-status.patch 2026-09-14 23:28:05 +08:00
github-actions[bot] 26d174538f 🦄 Sync 2026-09-13 19:17:01
Merge-upstream / merge (push) Canceled after 0s
2026-09-13 19:17:01 +08:00
kiddin9 d9f7c5c117 Update upstream.yml 2026-09-13 19:15:00 +08:00
456 changed files with 52008 additions and 9625 deletions
+13 -41
View File
@@ -1,16 +1,14 @@
--- a/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js
+++ b/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js
@@ -32,8 +32,7 @@ return baseclass.extend({
swap = L.isObject(systeminfo.swap) ? systeminfo.swap : {};
@@ -36,14 +36,14 @@ return baseclass.extend({
available = Math.min(mem.total ?? Infinity, Math.max(0, available + (mem.buffered || 0)));
var fields = [
- _('Total Available'), (mem.available) ? mem.available : (mem.total && mem.free && mem.buffered) ? mem.free + mem.buffered : null, mem.total,
- _('Used'), (mem.total && mem.free) ? (mem.total - mem.free) : null, mem.total,
+ _('Used'), (mem.total && mem.available) ? (mem.total - mem.free - mem.buffered - mem.cached) : null, mem.total,
- _('Total Available'), available, mem.total,
+ _('Used'), (mem.total && mem.available) ? (mem.total - available): null, mem.total,
];
if (mem.buffered)
@@ -43,7 +42,7 @@ return baseclass.extend({
if (mem.cached)
fields.push(_('Cached'), mem.cached, mem.total);
if (swap.total > 0)
@@ -33,37 +31,16 @@
--- a/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js
+++ b/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js
@@ -33,9 +33,9 @@ var callCPUInfo = rpc.declare({
method: 'getCPUInfo'
});
@@ -36,7 +36,7 @@ var callCPUInfo = rpc.declare({
-var callCPUUsage = rpc.declare({
+var callTempInfo = rpc.declare({
var callCPUUsage = rpc.declare({
object: 'luci',
- method: 'getCPUUsage'
+ method: 'getTempInfo'
});
return baseclass.extend({
@@ -48,7 +48,7 @@ return baseclass.extend({
L.resolveDefault(callSystemInfo(), {}),
L.resolveDefault(callCPUBench(), {}),
L.resolveDefault(callCPUInfo(), {}),
- L.resolveDefault(callCPUUsage(), {}),
+ L.resolveDefault(callTempInfo(), {}),
L.resolveDefault(callLuciVersion(), { revision: _('unknown version'), branch: 'LuCI' }),
L.resolveDefault(callGetUnixtime(), 0)
]);
@@ -59,7 +59,7 @@ return baseclass.extend({
systeminfo = data[1],
cpubench = data[2],
cpuinfo = data[3],
- cpuusage = data[4],
+ tempinfo = data[4],
luciversion = data[5],
unixtime = data[6];
@@ -78,15 +78,9 @@ return baseclass.extend({
@@ -85,10 +85,9 @@ return baseclass.extend({
var fields = [
_('Hostname'), boardinfo.hostname,
@@ -72,16 +49,11 @@
+ _('Architecture'), (cpuinfo.cpuinfo || boardinfo.system) + ' ' + cpubench.cpubench,
_('Target Platform'), (L.isObject(boardinfo.release) ? boardinfo.release.target : ''),
- _('Firmware Version'), (L.isObject(boardinfo.release)
- ? '%s%s / '.format(
- boardinfo.release.description || '',
- boardinfo.release.revision ? boardinfo.release.revision : ''
- )
- : '') + (luciversion || ''),
+ _('Firmware Version'), (L.isObject(boardinfo.release) ? boardinfo.release.description + ' / ' : '') + (luciversion || ''),
_('Kernel Version'), boardinfo.kernel,
_('Local Time'), datestr,
_('Uptime'), systeminfo.uptime ? '%t'.format(systeminfo.uptime) : null,
@@ -94,10 +88,18 @@ return baseclass.extend({
? '%s%s / '.format(
boardinfo.release.description || '',
boardinfo.release.revision ? boardinfo.release.revision : ''
@@ -101,10 +100,18 @@ return baseclass.extend({
systeminfo.load[0] / 65535.0,
systeminfo.load[1] / 65535.0,
systeminfo.load[2] / 65535.0
@@ -90,7 +62,7 @@
+ ) : null
];
+ if (tempinfo.tempinfo) {
+ if (cpuusage.tempinfo) {
+ fields.splice(6, 0, _('Temperature'));
+ fields.splice(7, 0, tempinfo.tempinfo);
+ }
+7 -4
View File
@@ -123,7 +123,7 @@ jobs:
(
git_clone https://github.com/sirpdboy/luci-app-advancedplus
git_clone https://github.com/sirpdboy/luci-app-taskplan taskplan && mvdir taskplan
git_clone https://github.com/sirpdboy/luci-app-lucky oplucky && mvdir oplucky
# git_clone https://github.com/sirpdboy/luci-app-lucky oplucky && mvdir oplucky
git_clone https://github.com/sirpdboy/luci-app-partexp partexp && mvdir partexp
git_clone https://github.com/sirpdboy/netspeedtest speedtest && mvdir speedtest
git_clone https://github.com/sirpdboy/luci-app-parentcontrol
@@ -166,6 +166,7 @@ jobs:
git_clone https://github.com/linkease/nas-packages-luci && mv -n nas-packages-luci/luci/* ./; rm -rf nas-packages-luci
git_clone https://github.com/linkease/istore && mv -n istore/luci/* ./; rm -rf istore
#git_clone https://github.com/linkease/lcdsimple lcdsimple1 && mvdir lcdsimple1
git_clone https://github.com/0x5826/openwrt-packages-extras 0x5826; rm -rf 0x5826/MAINTENANCE.md; mvdir 0x5826
) &
(
# git_clone https://github.com/frainzy1477/luci-app-clash
@@ -246,6 +247,7 @@ jobs:
git_clone https://github.com/linkease/istore-packages
git clone https://github.com/laipeng668/luci-app-gecoosac gecoosac1 && mvdir gecoosac1
git_clone https://github.com/eamonxg/luci-theme-shadcn
git_sparse_clone dashboard-redesign "https://github.com/eamonxg/luci" modules/luci-mod-dashboard
) &
(
git_clone https://github.com/muink/luci-app-dnsproxy
@@ -392,8 +394,8 @@ jobs:
(
git_sparse_clone develop "https://github.com/Ysurac/openmptcprouter-feeds" \
dsvpn glorytun-udp glorytun grpcurl ipcalc luci-app-dsvpn luci-app-glorytun-tcp luci-app-glorytun-udp luci-app-mail luci-app-mlvpn luci-app-mptcp luci-app-nginx-ha luci-app-sqm-autorate luci-app-packet-capture luci-app-iperf luci-theme-openmptcprouter sqm-autorate speedtestc mlvpn mptcp tcptraceroute tracebox tsping atinout z8102
git_sparse_clone chawrt/25.12 "https://github.com/liudf0716/luci" applications/luci-app-aw-bpf applications/luci-app-xkcptun applications/luci-app-apfree-wifidog
git_sparse_clone chawrt/25.12 "https://github.com/liudf0716/packages" net/aw-bpf net/xkcptun net/apfree-wifidog
git_sparse_clone chawrt/25.12 "https://github.com/liudf0716/luci" applications/luci-app-xkcptun applications/luci-app-apfree-wifidog
git_sparse_clone chawrt/25.12 "https://github.com/liudf0716/packages" net/xkcptun net/apfree-wifidog
) &
git_sparse_clone master "https://github.com/immortalwrt/packages" net/n2n net/qbittorrent \
net/amule net/cdnspeedtest net/minieap net/ddns-go net/sysuh3c net/3proxy utils/filebrowser net/cloudreve \
@@ -469,7 +471,7 @@ jobs:
-H "Authorization: Bearer ${{ secrets.TOKEN_KIDDIN9 }}" \
-X POST -d '{ "query": "query {repository(owner: \"'"$1"'\", name: \"'"$2"'\"){latestRelease{tagName tagCommit{oid}}refs(refPrefix:\"refs/tags/\",last:1,orderBy:{field:TAG_COMMIT_DATE,direction:ASC}){edges{node{name target{oid}}}}defaultBranchRef{target{...on Commit {oid}}}}}"}' https://api.github.com/graphql)
}
for pkg in $(ls !(luci-*|nikki|mihomo*|dockermanager|kaiplus|fastnet|baidudrive|openwrt-einat-ebpf|qBittorrent-Enhanced-Edition|tuic-client|glorytun|dae|daed|shadowsocks-libev|mosdns|spotifyd|miniupnpd|openwrt-Toolkit|libdouble-conversion|wxbase|3proxy|ucode|mergerfs|openwrt-nezhav1|homebox|sub-web|tcptraceroute|frp|openwrt-caddy|mentohust|brlaser|rapidjson|smartdns|hysteria|gecoosac|libcryptopp|naiveproxy|rustdesk-server|shadowsocksr-libev|tuic-server|joker|ps3netsrv|natter|netmaker|openwrt-ympd|subconverter|sms-tool)/Makefile); do
for pkg in $(ls !(luci-*|nikki|mihomo*|dockermanager|kaiplus|fastnet|torrserver|baidudrive|openwrt-einat-ebpf|qBittorrent-Enhanced-Edition|tuic-client|glorytun|dae|daed|shadowsocks-libev|mosdns|spotifyd|miniupnpd|openwrt-Toolkit|libdouble-conversion|wxbase|3proxy|ucode|mergerfs|openwrt-nezhav1|homebox|sub-web|tcptraceroute|frp|openwrt-caddy|mentohust|brlaser|rapidjson|smartdns|hysteria|gecoosac|libcryptopp|naiveproxy|rustdesk-server|shadowsocksr-libev|tuic-server|joker|ps3netsrv|natter|netmaker|openwrt-ympd|subconverter|sms-tool)/Makefile); do
repo="$(grep ^PKG_SOURCE_URL $pkg | grep github | cut -f 4-5 -d '/' | sed -e 's/.git//' | grep -E '[0-9a-zA-Z_-]+$')" || true
if [ "$repo" ]; then
owner="$(echo $repo | cut -f 1 -d '/')"
@@ -538,6 +540,7 @@ jobs:
sed -i 's/body.getAttribute("theme");if(o)switch(o){case"dark":case"light":return o}/documentElement.getAttribute("data-darkmode");if(o)switch(o){case"true":return"dark";case"false":return"light"}/g' luci-app-quickstart/htdocs/luci-static/quickstart/index.js
sed -i 's/icon!=="baby"/icon!==""/' luci-app-quickstart/htdocs/luci-static/quickstart/index.js
sed -i 's/+php8-cgi /+php8-cgi +php8-fpm /' luci-theme-spectra/Makefile
sed -i 's/+luci-base/+luci-base +luci-app-oui/' luci-mod-status/Makefile
while [[ ! -f /tmp/ok || ! -f /tmp/ok2 || ! -f /tmp/ok3 ]]; do
echo "wait"
+1 -1
View File
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=ShadowVPN
PKG_VERSION:=0.2.0
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/aa65535/openwrt-shadowvpn/releases/download/v$(PKG_VERSION)
+4 -4
View File
@@ -10,12 +10,12 @@ AGENTFLOW_ARCH_x86_64:=amd64
AGENTFLOW_ARCH_aarch64:=arm64
AGENTFLOW_ARCH:=$(AGENTFLOW_ARCH_$(ARCH))
AGENTFLOW_HASH_x86_64:=454857022d555b23979bd7b9116ef926ce7117e9e6034116f3223bb72cae07db
AGENTFLOW_HASH_aarch64:=34dfe07fd2a1bcb7de8eadb41dd0a67b46d5db78f4ca14d1835fe94608c0579a
AGENTFLOW_HASH_x86_64:=95cb43ba4e2ce5f060e3609d050caf25170dc151ba882a3a626494b7750d5fbc
AGENTFLOW_HASH_aarch64:=93e92628b26087b87d8571400e83046197167e4795593e757d4dcf7dac5f8231
PKG_NAME:=agentflow
PKG_VERSION:=0.3.1
PKG_RELEASE:=9
PKG_VERSION:=0.3.3
PKG_RELEASE:=11
AGENTFLOW_URL_FILE:=agentflow-linux-$(AGENTFLOW_ARCH)
AGENTFLOW_DOWNLOAD:=$(AGENTFLOW_URL_FILE)-$(AGENTFLOW_HASH_$(ARCH))
-79
View File
@@ -1,79 +0,0 @@
#
# Copyright (C) 2025 Dengfeng Liu
#
# This is free software, licensed under the GNU General Public License v3.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=aw-bpf
PKG_VERSION:=1.08.23
PKG_RELEASE:=1
PKG_SOURCE:=aw-bpf-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/liudf0716/$(PKG_NAME)/tar.gz/$(PKG_VERSION)?
PKG_HASH:=skip
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_MAINTAINER:=Dengfeng Liu <liudf0716@gmail.com>
PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=LICENSE
PKG_BUILD_DEPENDS:=bpf-headers
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
include $(INCLUDE_DIR)/bpf.mk
include $(INCLUDE_DIR)/kernel.mk
define Package/aw-bpf
SECTION:=net
CATEGORY:=Network
TITLE:=ApFree eBPF programs and tools
DEPENDS:=+libbpf +libelf +libjson-c +libmnl +libnftnl +tc-full +bpftool-minimal +ip +kmod-xdpi +kmod-sched-bpf $(BPF_DEPENDS)
URL:=https://github.com/liudf0716/aw-bpf
endef
define Package/aw-bpf/description
ApFree eBPF provides eBPF programs for session tracking, xDPI, DNS monitoring
and user-space tools: aw-bpfctl (control CLI) and aw-eventd (session / DNS
consumer with independent nftables table inet awbpf).
endef
define KernelPackage/xdpi
SECTION:=kernel
SUBMENU:=Network Support
TITLE:=xdpi ebpf module
FILES:=$(PKG_BUILD_DIR)/xdpi_bpf.ko
AUTOLOAD:=$(call AutoProbe,xdpi_bpf)
endef
# Build cmake userspace first (aw-bpfctl, aw-eventd), then BPF objects and kmod.
define Build/Compile
$(call Build/Compile/Default)
$(call CompileBPF,$(PKG_BUILD_DIR)/aw_bpf.c,$(if $(filter arm aarch64 x86_64 i386,$(ARCH)),-DENABLE_XDPI_FEATURE))
$(call CompileBPF,$(PKG_BUILD_DIR)/dns_bpf.c,$(if $(filter arm aarch64 x86_64 i386,$(ARCH)),-DENABLE_XDPI_FEATURE))
$(KERNEL_MAKE) M=$(PKG_BUILD_DIR) modules
endef
define Package/aw-bpf/conffiles
/etc/config/aw-bpf
endef
define Package/aw-bpf/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/aw-bpfctl $(1)/usr/bin/aw-bpfctl
$(INSTALL_BIN) $(PKG_BUILD_DIR)/aw-eventd $(1)/usr/bin/aw-eventd
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/aw-bpf.init $(1)/etc/init.d/aw-bpf
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/aw-bpf.conf $(1)/etc/config/aw-bpf
$(INSTALL_DIR) $(1)/lib/bpf
$(INSTALL_DATA) $(PKG_BUILD_DIR)/aw_bpf.o $(1)/lib/bpf/aw-bpf.o
$(INSTALL_DATA) $(PKG_BUILD_DIR)/dns_bpf.o $(1)/lib/bpf/dns-bpf.o
endef
$(eval $(call BuildPackage,aw-bpf))
$(eval $(call KernelPackage,xdpi))
-2
View File
@@ -1,2 +0,0 @@
config aw-bpf 'common'
option enable_event_log '0'
-325
View File
@@ -1,325 +0,0 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2025-2026 Dengfeng Liu
# aw-bpf service - manages aw-bpf lifecycle: aw-eventd, xdpi module, BPF maps
START=90
STOP=10
USE_PROCD=1
NAME=aw-bpf
PROG="/usr/bin/aw-eventd"
CONF_FILE="/var/etc/eventd.conf"
BPF_FS_ROOT="/sys/fs/bpf"
AW_BPF_PIN_DIR="$BPF_FS_ROOT/tc/globals"
AW_BPF_LEGACY_PIN_DIR="$BPF_FS_ROOT/xdp/globals"
AW_BPF_MAPS="ipv4_map ipv6_map mac_map tcp_conn_map udp_conn_map xdpi_l7_map session_events_map prog_array_map dns_ringbuf dns_ringbuf_portal dns_stats_map"
AW_BPF_PROGS="tc_ingress tc_egress"
AW_BPF_LAN_IFACES=""
AW_BPF_WAN_IFACES=""
resolve_lan_ifaces() {
local lan_device lan_ifname
AW_BPF_LAN_IFACES=""
config_load network
config_get lan_device lan device
config_get lan_ifname lan ifname
if [ -n "$lan_device" ] && [ -e "/sys/class/net/$lan_device" ]; then
AW_BPF_LAN_IFACES="$lan_device"
return 0
fi
for iface in $lan_ifname; do
if [ -n "$iface" ] && [ -e "/sys/class/net/$iface" ]; then
AW_BPF_LAN_IFACES="$iface"
return 0
fi
done
}
resolve_wan_ifaces() {
local wan_device wan_ifname
AW_BPF_WAN_IFACES=""
config_load network
config_get wan_device wan device
config_get wan_ifname wan ifname
if [ -n "$wan_device" ] && [ -e "/sys/class/net/$wan_device" ]; then
AW_BPF_WAN_IFACES="$wan_device"
return 0
fi
for iface in $wan_ifname; do
if [ -n "$iface" ] && [ -e "/sys/class/net/$iface" ]; then
AW_BPF_WAN_IFACES="$iface"
return 0
fi
done
}
detach_tc_programs() {
local iface="$1"
[ -z "$iface" ] && return 0
[ ! -e "/sys/class/net/$iface" ] && return 0
tc filter del dev "$iface" ingress 2>/dev/null || true
tc filter del dev "$iface" egress 2>/dev/null || true
tc qdisc del dev "$iface" clsact 2>/dev/null || true
}
attach_tc_programs() {
local iface="$1"
local aw_bpf_file="/lib/bpf/aw-bpf.o"
[ -z "$iface" ] && return 0
[ ! -e "/sys/class/net/$iface" ] && return 0
[ ! -f "$aw_bpf_file" ] && {
echo "aw-bpf.o not found at $aw_bpf_file" >&2
return 1
}
tc qdisc del dev "$iface" clsact 2>/dev/null || true
tc qdisc add dev "$iface" clsact 2>/dev/null || true
if ! tc filter add dev "$iface" ingress prio 1 bpf da obj "$aw_bpf_file" sec tc/ingress 2>/tmp/aw-bpf.ingress.err; then
echo "Failed to attach aw-bpf ingress to $iface: $(cat /tmp/aw-bpf.ingress.err 2>/dev/null)" >&2
rm -f /tmp/aw-bpf.ingress.err
return 1
fi
rm -f /tmp/aw-bpf.ingress.err
if ! tc filter add dev "$iface" egress prio 1 bpf da obj "$aw_bpf_file" sec tc/egress 2>/tmp/aw-bpf.egress.err; then
echo "Failed to attach aw-bpf egress to $iface: $(cat /tmp/aw-bpf.egress.err 2>/dev/null)" >&2
rm -f /tmp/aw-bpf.egress.err
tc filter del dev "$iface" ingress 2>/dev/null || true
tc qdisc del dev "$iface" clsact 2>/dev/null || true
return 1
fi
rm -f /tmp/aw-bpf.egress.err
echo "aw-bpf attached on $iface" >&2
return 0
}
cleanup_aw_bpf_pins() {
local entry
for entry in $AW_BPF_PROGS $AW_BPF_MAPS; do
[ -e "$BPF_FS_ROOT/$entry" ] && rm -f "$BPF_FS_ROOT/$entry"
[ -e "$AW_BPF_PIN_DIR/$entry" ] && rm -f "$AW_BPF_PIN_DIR/$entry"
[ -e "$AW_BPF_LEGACY_PIN_DIR/$entry" ] && rm -f "$AW_BPF_LEGACY_PIN_DIR/$entry"
done
}
load_bpf_resources() {
echo "Loading BPF resources..." >&2
mkdir -p "$AW_BPF_PIN_DIR" 2>/dev/null || true
cleanup_aw_bpf_pins
resolve_lan_ifaces
if [ -z "$AW_BPF_LAN_IFACES" ]; then
echo "No valid interfaces found from network.lan" >&2
return 1
fi
for iface in $AW_BPF_LAN_IFACES; do
attach_tc_programs "$iface" || return 1
done
load_dns_bpf_program
return 0
}
load_xdpi() {
if lsmod | grep -q xdpi; then
echo "xdpi module already loaded" >&2
return 0
fi
if command -v modprobe >/dev/null 2>&1; then
if modprobe xdpi_bpf 2>/dev/null || modprobe xdpi-bpf 2>/dev/null; then
echo "xdpi module loaded via modprobe" >&2
return 0
fi
fi
for modfile in /lib/modules/$(uname -r)/xdpi_bpf.ko /lib/modules/$(uname -r)/xdpi-bpf.ko /lib/modules/$(uname -r)/extra/xdpi_bpf.ko /lib/modules/$(uname -r)/extra/xdpi-bpf.ko /lib/xdpi_bpf.ko /lib/xdpi-bpf.ko; do
if [ -f "$modfile" ]; then
insmod "$modfile" 2>/dev/null && echo "xdpi module loaded via insmod $modfile" >&2 && return 0 || true
fi
done
echo "Warning: xdpi module not found or failed to load" >&2
return 1
}
load_dns_bpf_program() {
local dns_bpf_file="/lib/bpf/dns-bpf.o"
local xdp_pin_base="/sys/fs/bpf/aw"
if [ ! -f "$dns_bpf_file" ]; then
echo "dns-bpf.o not found at $dns_bpf_file" >&2
return 0
fi
mkdir -p "$xdp_pin_base" 2>/dev/null || true
resolve_wan_ifaces
if [ -z "$AW_BPF_WAN_IFACES" ]; then
echo "No valid WAN interfaces found. Skip loading DNS XDP." >&2
return 1
fi
for iface in $AW_BPF_WAN_IFACES; do
echo "Attaching DNS XDP program to $iface..." >&2
ip link set dev "$iface" xdp off 2>/dev/null || true
if ! ip link set dev "$iface" xdp obj "$dns_bpf_file" sec xdp 2>/tmp/aw-bpf.xdp.err; then
echo "Failed to attach dns xdp to $iface: $(cat /tmp/aw-bpf.xdp.err 2>/dev/null)" >&2
rm -f /tmp/aw-bpf.xdp.err
return 1
fi
rm -f /tmp/aw-bpf.xdp.err
done
sleep 1
local xdp_prog_id=$(bpftool prog show name xdp_dns_monitor 2>/dev/null | head -n1 | cut -d':' -f1)
[ ! -e "$xdp_pin_base/dns_ringbuf" ] && bpftool map pin name dns_ringbuf "$xdp_pin_base/dns_ringbuf" 2>/dev/null
if [ ! -e "$xdp_pin_base/dns_ringbuf_portal" ]; then
bpftool map pin name dns_ringbuf_por "$xdp_pin_base/dns_ringbuf_portal" 2>/dev/null || \
bpftool map pin name dns_ringbuf_portal "$xdp_pin_base/dns_ringbuf_portal" 2>/dev/null
fi
[ ! -e "$xdp_pin_base/dns_stats_map" ] && bpftool map pin name dns_stats_map "$xdp_pin_base/dns_stats_map" 2>/dev/null
return 0
}
cleanup_bpf_resources() {
echo "Cleaning up global BPF resources..." >&2
resolve_lan_ifaces
for iface in $AW_BPF_LAN_IFACES; do
detach_tc_programs "$iface"
done
resolve_wan_ifaces
for iface in $AW_BPF_WAN_IFACES; do
ip link set dev "$iface" xdp off 2>/dev/null || true
done
rm -rf /sys/fs/bpf/aw/dns_* 2>/dev/null
cleanup_aw_bpf_pins
return 0
}
unload_xdpi() {
if ! lsmod | grep -q xdpi; then
echo "xdpi module not loaded" >&2
return 0
fi
local rmmod_output
rmmod_output=$(rmmod xdpi_bpf 2>&1 || rmmod xdpi-bpf 2>&1)
local rmmod_status=$?
if [ $rmmod_status -ne 0 ]; then
echo "Note: Failed to unload xdpi module (may still be in use). Error: $rmmod_output" >&2
return 0
fi
if lsmod | grep -q xdpi; then
echo "Note: Module still loaded after rmmod attempt" >&2
return 0
fi
echo "xdpi module unloaded successfully" >&2
return 0
}
generate_conf() {
local enable_event_log
local location_id ap_device_id ap_mac_address ap_longitude ap_latitude
config_load "aw-bpf"
config_get enable_event_log "common" enable_event_log "0"
config_get location_id "common" location_id ""
config_get ap_device_id "common" ap_device_id ""
config_get ap_mac_address "common" ap_mac_address ""
config_get ap_longitude "common" ap_longitude ""
config_get ap_latitude "common" ap_latitude ""
# Inherit location/device audit info from wifidogx if not explicitly set in aw-bpf
if [ -f "/etc/config/wifidogx" ]; then
local w_loc w_dev w_mac w_long w_lat
config_load "wifidogx"
config_get w_loc "common" location_id ""
config_get w_dev "common" ap_device_id ""
config_get w_mac "common" ap_mac_address ""
config_get w_long "common" ap_longitude ""
config_get w_lat "common" ap_latitude ""
[ -z "$location_id" ] && location_id="$w_loc"
[ -z "$ap_device_id" ] && ap_device_id="$w_dev"
[ -z "$ap_mac_address" ] && ap_mac_address="$w_mac"
[ -z "$ap_longitude" ] && ap_longitude="$w_long"
[ -z "$ap_latitude" ] && ap_latitude="$w_lat"
fi
[ -z "$location_id" ] && location_id="UNKNOWN"
[ -z "$ap_device_id" ] && ap_device_id="UNKNOWN"
[ -z "$ap_mac_address" ] && ap_mac_address="UNKNOWN"
[ -z "$ap_longitude" ] && ap_longitude="0.000000"
[ -z "$ap_latitude" ] && ap_latitude="0.000000"
mkdir -p /var/etc
cat > "$CONF_FILE" <<EOF
# Generated automatically by /etc/init.d/aw-bpf from UCI
enable_event_log=${enable_event_log}
location_id=${location_id}
ap_device_id=${ap_device_id}
ap_mac_address=${ap_mac_address}
ap_longitude=${ap_longitude}
ap_latitude=${ap_latitude}
EOF
}
start_service() {
load_xdpi
load_bpf_resources
if ! command -v "$PROG" >/dev/null 2>&1; then
echo "aw-eventd binary not found" >&2
return 1
fi
generate_conf
echo "Starting aw-bpf service (aw-eventd)..." >&2
procd_open_instance
procd_set_param command "$PROG" -c "$CONF_FILE"
procd_set_param respawn 3600 5 0
procd_set_param file "$CONF_FILE"
procd_close_instance
}
stop_service() {
echo "Stopping aw-bpf service..." >&2
cleanup_bpf_resources
unload_xdpi
echo "aw-bpf cleanup completed" >&2
}
service_triggers() {
procd_add_reload_trigger "aw-bpf"
}
reload_service() {
restart
}
+2 -2
View File
@@ -5,8 +5,8 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=brook
PKG_VERSION:=20260101.0
PKG_RELEASE:=4
PKG_VERSION:=20270101
PKG_RELEASE:=5
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/txthinking/brook/tar.gz/v$(PKG_VERSION)?
+89
View File
@@ -0,0 +1,89 @@
# SPDX-License-Identifier: GPL-3.0-only
#
# Copyright (C) 2021 ImmortalWrt.org
include $(TOPDIR)/rules.mk
PKG_NAME:=cloudflared-next
PKG_VERSION:=2026.9.1
PKG_RELEASE:=1
# Architecture mapping for pre-built binaries
ifeq ($(ARCH),x86_64)
CF_ARCH:=amd64
endif
ifeq ($(ARCH),aarch64)
CF_ARCH:=arm64
endif
ifeq ($(ARCH),arm64)
CF_ARCH:=arm64
endif
ifeq ($(ARCH),armv8)
CF_ARCH:=arm64
endif
ifeq ($(ARCH),arm)
CF_ARCH:=arm
endif
ifeq ($(ARCH),armv7)
CF_ARCH:=arm
endif
ifeq ($(ARCH),i386)
CF_ARCH:=386
endif
PKG_SOURCE:=cloudflared-linux-$(CF_ARCH)-$(PKG_VERSION)
PKG_SOURCE_URL:=https://github.com/cloudflare/cloudflared/releases/download/$(PKG_VERSION)/cloudflared-linux-$(CF_ARCH)?
PKG_HASH:=skip
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
include $(INCLUDE_DIR)/package.mk
define Package/cloudflared-next
SECTION:=net
CATEGORY:=Network
SUBMENU:=Web Servers/Proxies
TITLE:=Cloudflare Tunnel client Next - Pre-built Binary
URL:=https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/get-started/
DEPENDS:=@(x86_64||aarch64||arm||i386) +ca-bundle
PROVIDES:=cloudflared
CONFLICTS:=cloudflared
endef
define Package/cloudflared-next/description
Contains the command-line client for Cloudflare Tunnel, a tunneling
daemon that proxies traffic from the Cloudflare network to your origins.
This package contains official pre-built static binaries.
endef
define Package/cloudflared-next/conffiles
/etc/config/cloudflared
/etc/cloudflared/
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) $(DL_DIR)/$(PKG_SOURCE) $(PKG_BUILD_DIR)/cloudflared
chmod 0755 $(PKG_BUILD_DIR)/cloudflared
endef
define Build/Compile
endef
define Package/cloudflared-next/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/cloudflared $(1)/usr/bin/cloudflared
$(INSTALL_DIR) $(1)/etc/cloudflared/
$(INSTALL_CONF) $(CURDIR)/files/sample_config.yml $(1)/etc/cloudflared/config.yml
$(INSTALL_DIR) $(1)/etc/config/
$(INSTALL_CONF) $(CURDIR)/files/cloudflared.config $(1)/etc/config/cloudflared
$(INSTALL_DIR) $(1)/etc/init.d/
$(INSTALL_BIN) $(CURDIR)/files/cloudflared.init $(1)/etc/init.d/cloudflared
endef
$(eval $(call BuildPackage,cloudflared-next))
+17
View File
@@ -0,0 +1,17 @@
config cloudflared 'config'
option enabled '0'
option token ''
# option config '/etc/cloudflared/config.yml'
# option origincert '/etc/cloudflared/cert.pem'
option edge_bind_address ''
option edge_ip_version ''
option grace_period ''
option protocol 'auto'
option region ''
option retries ''
option tag ''
option metrics ''
option loglevel 'info'
option logfile '/var/log/cloudflared.log'
+64
View File
@@ -0,0 +1,64 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2021 Tianling Shen <cnsztl@immortalwrt.org>
USE_PROCD=1
START=99
CONF="cloudflared"
PROG="/usr/bin/cloudflared"
append_param_arg() {
local value
config_get value "config" "$1" $2
[ -n "$value" ] && procd_append_param command "--${1//_/-}" "$value"
}
start_service() {
config_load "$CONF"
local enabled
local token
config_get_bool enabled "config" "enabled"
[ "$enabled" -eq "1" ] || return 1
procd_open_instance "$CONF"
procd_set_param command "$PROG" "tunnel"
procd_append_param command "--no-autoupdate"
append_param_arg "edge_bind_address"
append_param_arg "edge_ip_version"
append_param_arg "grace_period"
append_param_arg "protocol"
append_param_arg "region"
append_param_arg "retries"
append_param_arg "tag"
append_param_arg "metrics"
append_param_arg "loglevel"
append_param_arg "logfile"
config_get token "config" "token"
if [ -z "$token" ]; then
# Locally-managed tunnels
append_param_arg "config" "/etc/cloudflared/config.yml"
append_param_arg "origincert" "/etc/cloudflared/cert.pem"
fi
procd_append_param command "run"
if [ -n "$token" ]; then
# Remotely-managed tunnel (recommended by Cloudflare)
procd_append_param command "--token" "$token"
fi
procd_set_param respawn
procd_set_param stderr 1
procd_close_instance
}
service_triggers() {
procd_add_reload_trigger "$CONF"
procd_add_interface_trigger "interface.*.up" "wan" /etc/init.d/cloudflared restart
}
+17
View File
@@ -0,0 +1,17 @@
# https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/do-more-with-tunnels/local-management/configuration-file/
# NOTICE
# Cloudflare recommends setting up a remotely-managed tunnel.
# Remotely-managed configurations are stored on Cloudflare,
# which allows you to manage the tunnel from any machine
# using the dashboard, API, or Terraform.
#tunnel: <Tunnel-UUID>
#credentials-file: /etc/cloudflared/<Tunnel-UUID>.json
#
#ingress:
# - hostname: luci.example.com
# service: http://localhost:80
# - hostname: ssh.example.com
# service: ssh://localhost:22
# - service: http_status:404
+3
View File
@@ -0,0 +1,3 @@
#!/bin/sh
cloudflared --version | grep "$PKG_VERSION"
+78
View File
@@ -0,0 +1,78 @@
#!/bin/bash
# 自动更新 OpenWrt cloudflared-next 包的版本和 Hash
# 依赖: curl, grep, sed, sha256sum (或 shasum)
set -e
PKG_DIR=$(cd "$(dirname "$0")"; pwd)
MAKEFILE="$PKG_DIR/Makefile"
if [ ! -f "$MAKEFILE" ]; then
echo "错误: 找不到 Makefile 文件 ($MAKEFILE)"
exit 1
fi
# 1. 获取当前本地版本
CURRENT_VERSION=$(grep 'PKG_VERSION:=' "$MAKEFILE" | cut -d'=' -f2 | tr -d ' ')
echo "当前本地版本: $CURRENT_VERSION"
# 2. 获取 GitHub 上的最新版本号
# 注意: cloudflared 的 tag 通常是 2024.x.y 这种格式,无需特殊处理
LATEST_VERSION=$(curl -s https://api.github.com/repos/cloudflare/cloudflared/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | sed 's/^v//')
if [ -z "$LATEST_VERSION" ]; then
echo "错误: 无法从 GitHub 获取最新版本号。"
exit 1
fi
echo "GitHub 最新版本: $LATEST_VERSION"
# 3. 比较版本
if [ "$CURRENT_VERSION" == "$LATEST_VERSION" ]; then
echo "版本已经是最新,无需更新。"
exit 0
fi
echo "发现新版本! 正在准备更新..."
# 4. 下载新版本的源码包并计算 Hash
SOURCE_URL="https://codeload.github.com/cloudflare/cloudflared/tar.gz/$LATEST_VERSION"
echo "正在从 $SOURCE_URL 下载并计算 Hash..."
# 探测可用的哈希计算工具
if command -v sha256sum >/dev/null 2>&1; then
NEW_HASH=$(curl -sL "$SOURCE_URL" | sha256sum | cut -d' ' -f1)
elif command -v shasum >/dev/null 2>&1; then
NEW_HASH=$(curl -sL "$SOURCE_URL" | shasum -a 256 | cut -d' ' -f1)
else
echo "错误: 系统中未找到 sha256sum 或 shasum 命令。"
exit 1
fi
if [ -z "$NEW_HASH" ] || [ ${#NEW_HASH} -ne 64 ]; then
echo "错误: 计算得到的 Hash 值无效: $NEW_HASH"
exit 1
fi
echo "新 Hash 值: $NEW_HASH"
# 5. 更新 Makefile
# 使用特定的正则表达式确保精准替换
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' "s/PKG_VERSION:=.*/PKG_VERSION:=$LATEST_VERSION/" "$MAKEFILE"
sed -i '' "s/PKG_HASH:=.*/PKG_HASH:=$NEW_HASH/" "$MAKEFILE"
else
sed -i "s/PKG_VERSION:=.*/PKG_VERSION:=$LATEST_VERSION/" "$MAKEFILE"
sed -i "s/PKG_HASH:=.*/PKG_HASH:=$NEW_HASH/" "$MAKEFILE"
fi
echo "Makefile 更新成功: $CURRENT_VERSION -> $LATEST_VERSION"
# 6. 可选: 提交更改 (如果是在 Git 仓库中且您希望自动提交)
# cd "$PKG_DIR/.."
# if [ -d ".git" ]; then
# git add cloudflared-next/Makefile
# git commit -m "cloudflared-next: update to version $LATEST_VERSION"
# echo "已在本地 Git 仓库中提交更新。"
# fi
+2 -2
View File
@@ -6,11 +6,11 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=cloudreve
PKG_VERSION:=4.18.0
PKG_RELEASE:=16
PKG_RELEASE:=17
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/cloudreve/Cloudreve.git
PKG_SOURCE_VERSION:=1c3fe4da3c4073e73a11ed93518b545bb8b8d5ce
PKG_SOURCE_VERSION:=ade1866be54a3614bc643ab5f513e93a1e0dc82f
PKG_MIRROR_HASH:=skip
PKG_LICENSE:=GPL-3.0-only
+3 -3
View File
@@ -5,10 +5,10 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=dae
PKG_VERSION:=2026.09.06
PKG_RELEASE:=43
PKG_VERSION:=2026.09.12
PKG_RELEASE:=44
PKG_SOURCE:=dae-src-2026.09.06-80525dabf966.tar.gz
PKG_SOURCE:=dae-src-2026.09.12-187058462a1f.tar.gz
PKG_SOURCE_URL:=https://github.com/kenzok8/openwrt-daede/releases/download/dae-src
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_HASH:=skip
+3 -3
View File
@@ -5,10 +5,10 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=daed
PKG_VERSION:=2026.09.06
PKG_RELEASE:=54
PKG_VERSION:=2026.09.12
PKG_RELEASE:=55
PKG_SOURCE:=daed-src-2026.09.06-62f2e24ac52a.tar.gz
PKG_SOURCE:=daed-src-2026.09.12-a0181f729855.tar.gz
PKG_SOURCE_URL:=https://github.com/kenzok8/openwrt-daede/releases/download/daed-src
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_HASH:=skip
+83 -4
View File
@@ -1,8 +1,65 @@
#!/bin/sh
# daed-cleanup.sh — reaper for stale daed kernel state.
#
# Removes:
# 1. Processes inside the `daens` netns (SIGTERM, then SIGKILL after 1s)
# 2. The `daens` network namespace itself (ip netns del, with
# umount+rm as fallback for zombie nsfs mounts)
# 3. The `dae0` veth pair in the host netns
#
# daed itself owns TC clsact detach. This opkg-side helper only
# reaps stale daens/dae0 state and never removes /sys/fs/bpf/daed.
# The pin directory is created during normal startup, so it is not
# a reliable leak indicator and must not block service lifecycle.
#
# The function stays sourceable by both init.d/daed and daed-guard.
daed_process_probe() {
if command -v pgrep >/dev/null 2>&1; then
pgrep -f '^/usr/bin/daed([[:space:]]|$)' >/dev/null 2>&1
case "$?" in
0) return 0 ;;
1) return 1 ;;
esac
fi
if command -v pidof >/dev/null 2>&1; then
pidof daed >/dev/null 2>&1
case "$?" in
0) return 0 ;;
1) return 1 ;;
esac
fi
return 2
}
daed_cleanup_runtime() {
local pid
local pid rc=0 probe_rc
# If daed userspace is currently running, do not touch the
# netns, the veth, or the eBPF dataplane. They are in active
# use; removing them would make every connection through dae
# hang.
daed_process_probe
probe_rc=$?
case "$probe_rc" in
0)
if [ "${DAED_GUARD_CLEANUP:-start}" = "start" ]; then
logger -t daed-init "cleanup: pre-start skipped because /usr/bin/daed is still running; refusing a second instance"
return 1
fi
logger -t daed-init "cleanup: post-exit skipped because another /usr/bin/daed instance is still running"
return 0
;;
1) ;;
*)
logger -t daed-init "cleanup: cannot determine whether daed is running; refusing to remove netns/veth"
return 1
;;
esac
# 1. Kill processes inside daens.
for pid in $(ip netns pids daens 2>/dev/null); do
kill "$pid" 2>/dev/null
done
@@ -14,14 +71,36 @@ daed_cleanup_runtime() {
done
fi
# 2. Remove the daens netns. ip netns del can fail if a
# process still references it via /proc/<pid>/ns/net or
# because the umount has already happened. Try the
# umount/rm fallback.
if ! ip netns del daens 2>/dev/null; then
umount -l /run/netns/daens 2>/dev/null
rm -f /run/netns/daens
if [ -e /run/netns/daens ] && ! rm -f /run/netns/daens 2>/dev/null; then
logger -t daed-init "cleanup: failed to remove /run/netns/daens (resource busy); a reboot may be required"
rc=1
fi
fi
ip link del dae0 2>/dev/null || true
# 3. Remove the dae0 veth pair.
if ip link show dae0 >/dev/null 2>&1; then
if ! ip link del dae0 2>/dev/null; then
logger -t daed-init "cleanup: failed to remove dae0 veth pair"
rc=1
fi
fi
# 4. The pin root is normal persistent state. Never remove it or
# make its existence change the cleanup result.
if [ -e /sys/fs/bpf/daed ]; then
logger -t daed-init "cleanup: /sys/fs/bpf/daed exists; leaving normal pin root unchanged"
fi
# Final verification covers only netns and veth state.
[ ! -e /run/netns/daens ] || return 1
! ip netns list 2>/dev/null | awk '$1 == "daens" { found=1 } END { exit !found }' || return 1
! ip netns list 2>/dev/null | grep -Eq '^daens([[:space:]]|$)' || return 1
! ip link show dae0 >/dev/null 2>&1 || return 1
return $rc
}
+118 -16
View File
@@ -1,29 +1,131 @@
#!/bin/sh
# Keep daed as a child so signals can be forwarded and stale netns/veth
# state can be cleaned before start and after exit. daed owns TC detach;
# /sys/fs/bpf/daed is normal persistent state and is never removed here.
. /usr/share/daed/cleanup.sh
# Pre-start cleanup refuses to remove runtime state while another
# daed instance is active, and fails closed if that probe is broken.
DAED_GUARD_CLEANUP=start
if ! daed_cleanup_runtime; then
echo "daed: stale network state could not be removed" >&2
echo "daed: stale /usr/bin/daed or netns state could not be verified or removed; refusing to start. Check process and netns state." >&2
logger -t daed-init "pre-start cleanup failed: refusing to start daed"
exit 1
fi
# Keep daed as a child so a panic or unexpected exit is followed by an
# immediate teardown of all kernel/runtime state before procd can respawn us.
# Keep daed as a child so post-exit cleanup runs before procd can
# respawn it.
child_pid=
cleanup_child() {
[ -n "$child_pid" ] && kill "$child_pid" 2>/dev/null
pending_signal=
shutdown_signal=
shutdown_elapsed=0
forced_kill=0
child_term_timeout=20
forward_signal() {
local sig="$1"
if [ -z "$child_pid" ]; then
pending_signal="$sig"
logger -t daed-init "signal $sig received before daed child started; launch cancelled"
return 0
fi
case "$sig" in
TERM|INT|QUIT)
if [ -z "$shutdown_signal" ]; then
shutdown_signal="$sig"
shutdown_elapsed=0
fi
;;
esac
kill -"$sig" "$child_pid" 2>/dev/null
}
trap cleanup_child TERM INT
/usr/bin/daed "$@" &
child_pid=$!
wait "$child_pid"
status=$?
child_pid=
trap - TERM INT
exit_with_signal() {
local sig="$1"
trap - TERM INT HUP QUIT
kill -"$sig" "$$" 2>/dev/null
exit 1
}
if ! daed_cleanup_runtime; then
echo "daed: runtime cleanup after exit failed" >&2
status=1
child_is_running() {
local state
kill -0 "$child_pid" 2>/dev/null || return 1
state=$(awk '{ print $3 }' "/proc/$child_pid/stat" 2>/dev/null)
[ "$state" != "Z" ]
}
trap 'forward_signal TERM' TERM
trap 'forward_signal INT' INT
trap 'forward_signal HUP' HUP
trap 'forward_signal QUIT' QUIT
start_child() {
local sig
# Keep this check inside the function as well as at the call site:
# it closes the ordinary pre-start window, while the pending-signal
# path below handles a signal arriving during the background fork.
[ -z "$pending_signal" ] || return 125
/usr/bin/daed "$@" &
child_pid=$!
if [ -n "$pending_signal" ]; then
sig="$pending_signal"
pending_signal=
forward_signal "$sig"
fi
}
if [ -n "$pending_signal" ]; then
logger -t daed-init "refusing to start daed after pending signal $pending_signal"
exit_with_signal "$pending_signal"
fi
exit "$status"
# Best-effort OOM preference; failure must not block startup.
if ! echo -16 > /proc/self/oom_score_adj 2>/dev/null; then
logger -t daed-init "warn: failed to set /proc/self/oom_score_adj; continuing without OOM preference"
fi
if ! start_child "$@"; then
logger -t daed-init "refusing to start daed after pending signal $pending_signal"
if [ -n "$pending_signal" ]; then
exit_with_signal "$pending_signal"
fi
exit 1
fi
status=0
reaped=0
while [ "$reaped" -eq 0 ]; do
if [ -n "$shutdown_signal" ] && child_is_running; then
if [ "$shutdown_elapsed" -ge "$child_term_timeout" ]; then
if [ "$forced_kill" -eq 0 ]; then
logger -t daed-init "daed did not exit within ${child_term_timeout}s after $shutdown_signal; sending KILL"
kill -KILL "$child_pid" 2>/dev/null
forced_kill=1
fi
else
sleep 1
shutdown_elapsed=$((shutdown_elapsed + 1))
continue
fi
sleep 1
continue
fi
wait "$child_pid" 2>/dev/null
status=$?
if ! child_is_running; then
reaped=1
fi
done
child_pid=
trap - TERM INT HUP QUIT
# Post-exit cleanup runs after the child is reaped.
DAED_GUARD_CLEANUP=post-exit
cleanup_status=0
daed_cleanup_runtime || cleanup_status=$?
if [ "$cleanup_status" -ne 0 ]; then
echo "daed: runtime cleanup after exit failed" >&2
logger -t daed-init "post-exit cleanup failed; check ip netns / ip link show"
fi
if [ "$status" -ne 0 ]; then
exit "$status"
fi
exit "$cleanup_status"
+37 -13
View File
@@ -1,5 +1,7 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2023 Tianling Shen <cnsztl@immortalwrt.org>
# daed-guard handles bounded child shutdown and post-exit netns/veth cleanup.
# Keep the log file and a pre-stop state snapshot for diagnostics.
USE_PROCD=1
START=99
@@ -10,18 +12,28 @@ LOG="/var/log/daed/daed.log"
. /usr/share/daed/cleanup.sh
log() {
logger -t daed-init "$@"
}
start_service() {
log "start: begin"
config_load "$CONF"
local enabled
config_get_bool enabled "config" "enabled" "0"
[ "$enabled" -eq "1" ] || return 1
if [ "$enabled" -ne "1" ]; then
log "start: config disabled, exit"
return 1
fi
local listen_addr log_maxbackups log_maxsize
config_get listen_addr "config" "listen_addr" "0.0.0.0:2023"
config_get log_maxbackups "config" "log_maxbackups" "1"
config_get log_maxsize "config" "log_maxsize" "5"
log "start: listen=$listen_addr log_maxbackups=$log_maxbackups log_maxsize=$log_maxsize"
procd_open_instance "$CONF"
procd_set_param env DAE_LOCATION_ASSET="/usr/share/v2ray" TZ="$(uci -q get system.@system[0].zonename)"
procd_set_param command "$PROG" run
@@ -33,25 +45,37 @@ start_service() {
procd_set_param limits core="unlimited"
procd_set_param limits nofile="1000000 1000000"
# Avoid an endless crash/respawn loop which can repeatedly reattach dae's
# data-plane hooks and make the router management plane unreachable.
procd_set_param respawn 3600 5 5
# daed-guard escalates its child after 20 seconds. Leave time for
# reap and post-exit cleanup before procd kills the wrapper.
procd_set_param term_timeout 30
# procd_set_param respawn: arguments are (threshold, timeout, retry).
# threshold = runtime that resets the short-lived exit counter
# timeout = seconds to wait between retries
# retry = maximum short-lived exits before procd gives up
# Reset the counter after one hour of stable runtime; otherwise retry
# after 5 seconds and stop after 10 failures.
procd_set_param respawn 3600 5 10
# daed-guard sets oom_score_adj before forking; procd has no
# oom_adj/oom_score_adj parameter.
# procd_set_param stdout 1
procd_set_param stderr 1
procd_close_instance
log "start: procd_open_instance done"
}
stop_service() {
rm -f "$LOG"
daed_cleanup_runtime
}
restart() {
stop
sleep 1
daed_cleanup_runtime
start
log "stop: begin"
# Cleanup runs in daed-guard after its child exits. Record only a
# pre-stop snapshot here; pin entries do not prove TC attachment.
local pinned="" ns_left=""
if [ -d /sys/fs/bpf/daed ]; then
pinned=$(ls /sys/fs/bpf/daed 2>/dev/null | tr '\n' ' ')
fi
if ip netns list 2>/dev/null | grep -q '^daens'; then
ns_left="daens"
fi
log "stop: pre-stop state — bpf_pin_entries=[${pinned:-none}] netns_left=[${ns_left:-none}]"
}
service_triggers() {
+96
View File
@@ -0,0 +1,96 @@
include $(TOPDIR)/rules.mk
-include $(dir $(lastword $(MAKEFILE_LIST)))../version.mk
PKG_NAME:=easytier-next
PKG_VERSION:=2.6.4
PKG_RELEASE:=1
# Architecture mapping for pre-built binaries
ifeq ($(ARCH),mipsel)
APP_ARCH:=mipsel
endif
ifeq ($(ARCH),mips)
APP_ARCH:=mips
endif
ifeq ($(ARCH),arm)
APP_ARCH:=arm
endif
ifeq ($(BOARD),kirkwood)
APP_ARCH:=arm
endif
ifeq ($(ARCH),armv7)
APP_ARCH:=armv7
endif
ifeq ($(ARCH),aarch64)
APP_ARCH:=aarch64
endif
ifeq ($(ARCH),arm64)
APP_ARCH:=aarch64
endif
ifeq ($(ARCH),armv8)
APP_ARCH:=aarch64
endif
ifeq ($(ARCH),x86_64)
APP_ARCH:=x86_64
endif
PKG_SOURCE:=easytier-linux-$(APP_ARCH)-v$(PKG_VERSION).zip
PKG_SOURCE_URL:=https://github.com/EasyTier/EasyTier/releases/download/v$(PKG_VERSION)/
PKG_HASH:=skip
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Dante <dante@seckv.com>
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)
SECTION:=net
CATEGORY:=Network
SUBMENU:=VPN
TITLE:=A simple, decentralized mesh VPN with WireGuard support (Next)
URL:=https://github.com/EasyTier/EasyTier
DEPENDS:=@(x86_64||arm||aarch64||mipsel||mips) +kmod-tun
PROVIDES:=easytier
CONFLICTS:=easytier
endef
define Package/$(PKG_NAME)/description
A simple, decentralized mesh VPN with WireGuard support.
endef
define Package/$(PKG_NAME)/config
config EASYTIER_INCLUDE_WEBCONSOLE
bool "Include Web Console (easytier-web)"
depends on PACKAGE_$(PKG_NAME)
depends on !(mips || mipsel)
default y
help
Install the easytier-web web console.
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
unzip -q -o $(DL_DIR)/$(PKG_SOURCE) -d $(PKG_BUILD_DIR)
find $(PKG_BUILD_DIR) -mindepth 2 -type f -exec mv -f {} $(PKG_BUILD_DIR)/ \;
endef
define Build/Compile
endef
define Package/$(PKG_NAME)/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/easytier-core $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/easytier-cli $(1)/usr/bin/
ifdef CONFIG_EASYTIER_INCLUDE_WEBCONSOLE
if [ -f $(PKG_BUILD_DIR)/easytier-web-embed ]; then \
$(INSTALL_BIN) $(PKG_BUILD_DIR)/easytier-web-embed $(1)/usr/bin/easytier-web; \
elif [ -f $(PKG_BUILD_DIR)/easytier-web ]; then \
$(INSTALL_BIN) $(PKG_BUILD_DIR)/easytier-web $(1)/usr/bin/easytier-web; \
fi
endif
endef
$(eval $(call BuildPackage,$(PKG_NAME)))
+63
View File
@@ -0,0 +1,63 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=frpc-next
PKG_VERSION:=0.71.0
PKG_RELEASE:=1
# Architecture mapping for pre-built binaries
ifeq ($(ARCH),mipsel)
FRP_ARCH:=mipsle
endif
ifeq ($(ARCH),mips)
FRP_ARCH:=mips
endif
ifeq ($(ARCH),i386)
FRP_ARCH:=386
endif
ifeq ($(ARCH),x86_64)
FRP_ARCH:=amd64
endif
ifeq ($(ARCH),arm)
FRP_ARCH:=arm
endif
ifeq ($(ARCH),aarch64)
FRP_ARCH:=arm64
endif
PKG_SOURCE:=frp_$(PKG_VERSION)_linux_$(FRP_ARCH).tar.gz
PKG_SOURCE_URL:=https://github.com/fatedier/frp/releases/download/v$(PKG_VERSION)/
PKG_HASH:=skip
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Dante <dante@seckv.com>
PKG_BUILD_DIR:=$(BUILD_DIR)/frp_$(PKG_VERSION)_linux_$(FRP_ARCH)
include $(INCLUDE_DIR)/package.mk
define Package/frpc-next
SECTION:=net
CATEGORY:=Network
SUBMENU:=Web Servers/Proxies
TITLE:=A fast reverse proxy (Client) - Binary
URL:=https://github.com/fatedier/frp
DEPENDS:=@(i386||x86_64||arm||aarch64||mipsel||mips)
PROVIDES:=frpc
CONFLICTS:=frpc
endef
define Package/frpc-next/description
frp is a fast reverse proxy to help you expose a local server behind a
NAT or firewall to the internet. This package contains the pre-built frpc client.
endef
define Build/Compile
endef
define Package/frpc-next/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/frpc $(1)/usr/bin/
endef
$(eval $(call BuildPackage,frpc-next))
+3
View File
@@ -0,0 +1,3 @@
#!/bin/sh
frpc --version | grep "$PKG_VERSION"
+45
View File
@@ -0,0 +1,45 @@
#!/bin/bash
# 自动更新 OpenWrt frpc-next 包的版本和 Hash
# 依赖: curl, grep, sed, sha256sum (或 shasum)
set -e
PKG_DIR=$(cd "$(dirname "$0")"; pwd)
MAKEFILE="$PKG_DIR/Makefile"
if [ ! -f "$MAKEFILE" ]; then
echo "错误: 找不到 Makefile 文件 ($MAKEFILE)"
exit 1
fi
# 1. 获取当前本地版本
CURRENT_VERSION=$(grep 'PKG_VERSION:=' "$MAKEFILE" | cut -d'=' -f2 | tr -d ' ')
echo "当前本地版本: $CURRENT_VERSION"
# 2. 获取 GitHub 上的最新版本号
LATEST_VERSION=$(curl -s https://api.github.com/repos/fatedier/frp/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | sed 's/^v//')
if [ -z "$LATEST_VERSION" ]; then
echo "错误: 无法从 GitHub 获取最新版本号。"
exit 1
fi
echo "GitHub 最新版本: $LATEST_VERSION"
# 3. 比较版本
if [ "$CURRENT_VERSION" == "$LATEST_VERSION" ]; then
echo "版本已经是最新,无需更新。"
exit 0
fi
echo "发现新版本! 正在准备更新..."
# 4. 更新 Makefile
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' "s/PKG_VERSION:=.*/PKG_VERSION:=$LATEST_VERSION/" "$MAKEFILE"
else
sed -i "s/PKG_VERSION:=.*/PKG_VERSION:=$LATEST_VERSION/" "$MAKEFILE"
fi
echo "Makefile 更新成功: $CURRENT_VERSION -> $LATEST_VERSION (Binary Mode)"
+70
View File
@@ -0,0 +1,70 @@
# SPDX-License-Identifier: Apache-2.0
#
# Copyright (C) 2026 Dante <dante@seckv.com>
#
# This is free software, licensed under the Apache License, Version 2.0 .
#
include $(TOPDIR)/rules.mk
PKG_NAME:=linkback
PKG_VERSION:=1.0.0
PKG_RELEASE:=1
PKG_MAINTAINER:=Dante
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)
SECTION:=net
CATEGORY:=Network
SUBMENU:=Routing and Redirection
TITLE:=LinkBack gateway switch daemon
DEPENDS:=+libuci +libubus +libubox +libblobmsg-json +ip-full
MAINTAINER:=Dante
endef
define Package/$(PKG_NAME)/description
LinkBack: A highly efficient and lightweight C-based Multi-WAN link health monitoring
and dynamic route metric failover/failback daemon. Supports Ping, DNS, and TCP probes.
endef
define Package/$(PKG_NAME)/conffiles
/etc/config/linkback
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) ./src/* $(PKG_BUILD_DIR)/
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
CC="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS)"
endef
define Package/$(PKG_NAME)/install
# Install C daemon binary
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/linkbackd $(1)/usr/sbin/linkbackd
# Install config and init files
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/linkback.config $(1)/etc/config/linkback
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/linkback.init $(1)/etc/init.d/linkback
endef
define Package/$(PKG_NAME)/postinst
#!/sh
[ -n "$${IPKG_INSTROOT}" ] || {
/etc/init.d/linkback enable
/etc/init.d/linkback restart
}
exit 0
endef
$(eval $(call BuildPackage,$(PKG_NAME)))
+9
View File
@@ -0,0 +1,9 @@
config global
option enabled '0'
option check_interval '5'
option check_timeout '3'
option recovery_delay '3'
option failover_delay '2'
+32
View File
@@ -0,0 +1,32 @@
#!/bin/sh /etc/rc.common
START=99
USE_PROCD=1
_get_global_enabled() {
config_get_bool _GLOBAL_ENABLED "$1" "enabled" 0
}
start_service() {
config_load "linkback"
local _GLOBAL_ENABLED=0
config_foreach _get_global_enabled "global"
[ "$_GLOBAL_ENABLED" -eq 1 ] || return 0
procd_open_instance "main"
procd_set_param command /usr/sbin/linkbackd
procd_set_param respawn
procd_set_param stdout 1
procd_set_param stderr 1
procd_close_instance
}
reload_service() {
stop
start
}
service_triggers() {
procd_add_reload_trigger "linkback"
}
+18
View File
@@ -0,0 +1,18 @@
TARGET := linkbackd
OBJS := linkbackd.o
CFLAGS += -Wall -O2
LIBS := -luci
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o $(TARGET) $(LDFLAGS) $(LIBS)
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -f *.o $(TARGET)
.PHONY: all clean
+849
View File
@@ -0,0 +1,849 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include <syslog.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/select.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <fcntl.h>
#include <errno.h>
#include <uci.h>
#include "linkbackd.h"
// DNS Header struct for raw check
struct dns_header {
unsigned short id;
unsigned short flags;
unsigned short qdcount;
unsigned short ancount;
unsigned short nscount;
unsigned short arcount;
};
// Global daemon state
static global_config_t global_cfg;
static link_t links[MAX_LINKS];
static int link_count = 0;
static volatile bool keep_running = true;
// Prototypes
static void restore_all_metrics(void);
static bool validate_loaded_config(void);
static void handle_signal(int sig) {
syslog(LOG_INFO, "Received signal %d, exiting...", sig);
keep_running = false;
}
// Ubus popen JSON parser
static bool get_interface_ubus_status(const char *ifname, char *device, int dev_len, char *gateway, int gw_len, bool *is_up) {
char cmd[256];
snprintf(cmd, sizeof(cmd), "ubus call network.interface.%s status 2>/dev/null", ifname);
FILE *fp = popen(cmd, "r");
if (!fp) return false;
char buf[4096] = {0};
int bytes_read = fread(buf, 1, sizeof(buf) - 1, fp);
pclose(fp);
if (bytes_read <= 0) return false;
// Check if interface is up
*is_up = false;
char *p_up = strstr(buf, "\"up\":");
if (p_up) {
char *p_true = strstr(p_up, "true");
// Ensure 'true' belongs to this property and isn't far away
if (p_true && p_true - p_up < 10) {
*is_up = true;
}
}
// Extract physical device
device[0] = '\0';
char *p_dev = strstr(buf, "\"l3_device\":");
int dev_key_len = 12;
if (!p_dev) {
p_dev = strstr(buf, "\"device\":");
dev_key_len = 9;
}
if (p_dev) {
char *p_start = strchr(p_dev + dev_key_len, '"');
if (p_start) {
char *p_end = strchr(p_start + 1, '"');
if (p_end) {
int len = p_end - p_start - 1;
if (len >= dev_len) len = dev_len - 1;
strncpy(device, p_start + 1, len);
device[len] = '\0';
}
}
}
// Extract gateway/nexthop from route list
gateway[0] = '\0';
char *p_route = strstr(buf, "\"route\":");
if (p_route) {
char *p_nexthop = strstr(p_route, "\"nexthop\":");
if (p_nexthop) {
char *p_start = strchr(p_nexthop + 10, '"');
if (p_start) {
char *p_end = strchr(p_start + 1, '"');
if (p_end) {
int len = p_end - p_start - 1;
if (len >= gw_len) len = gw_len - 1;
strncpy(gateway, p_start + 1, len);
gateway[len] = '\0';
}
}
}
}
return true;
}
// Ping check
static bool run_ping_check(const char *device, const char *target, int timeout, int *rtt_ms) {
if (device[0] == '\0' || target[0] == '\0') return false;
char cmd[256];
snprintf(cmd, sizeof(cmd), "ping -I %s -c 1 -W %d %s 2>/dev/null", device, timeout, target);
FILE *fp = popen(cmd, "r");
if (!fp) return false;
char line[128];
bool ok = false;
*rtt_ms = -1;
while (fgets(line, sizeof(line), fp)) {
char *p = strstr(line, "time=");
if (p) {
ok = true;
double rtt = atof(p + 5);
*rtt_ms = (int)rtt;
}
}
int status = pclose(fp);
return ok && (WIFEXITED(status) && WEXITSTATUS(status) == 0);
}
// DNS check
static bool run_dns_check(const char *device, const char *dns_server, const char *domain, int timeout, int *rtt_ms) {
if (device[0] == '\0' || dns_server[0] == '\0' || domain[0] == '\0') return false;
struct timeval start, end;
gettimeofday(&start, NULL);
int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
if (sockfd < 0) return false;
// Set non-blocking
int flags = fcntl(sockfd, F_GETFL, 0);
fcntl(sockfd, F_SETFL, flags | O_NONBLOCK);
// Bind to device
if (setsockopt(sockfd, SOL_SOCKET, SO_BINDTODEVICE, device, strlen(device)) < 0) {
close(sockfd);
return false;
}
struct sockaddr_in servaddr;
memset(&servaddr, 0, sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_port = htons(53);
if (inet_pton(AF_INET, dns_server, &servaddr.sin_addr) <= 0) {
close(sockfd);
return false;
}
// Format DNS packet
unsigned char packet[512];
memset(packet, 0, sizeof(packet));
struct dns_header *dns = (struct dns_header *)packet;
dns->id = (unsigned short)htons(getpid());
dns->flags = htons(0x0100);
dns->qdcount = htons(1);
unsigned char *qname = packet + sizeof(struct dns_header);
const char *src = domain;
unsigned char *dst = qname;
while (*src) {
const char *next = strchr(src, '.');
int len = next ? (next - src) : strlen(src);
*dst++ = len;
memcpy(dst, src, len);
dst += len;
src = next ? (next + 1) : (src + len);
}
*dst++ = 0;
unsigned short *qtype = (unsigned short *)dst;
*qtype = htons(1); // A Record
dst += 2;
unsigned short *qclass = (unsigned short *)dst;
*qclass = htons(1); // IN
dst += 2;
int packet_len = dst - packet;
if (sendto(sockfd, packet, packet_len, 0, (struct sockaddr *)&servaddr, sizeof(servaddr)) < 0) {
if (errno != EAGAIN && errno != EWOULDBLOCK) {
close(sockfd);
return false;
}
}
fd_set readfds;
FD_ZERO(&readfds);
FD_SET(sockfd, &readfds);
struct timeval tv;
tv.tv_sec = timeout;
tv.tv_usec = 0;
int sel = select(sockfd + 1, &readfds, NULL, NULL, &tv);
if (sel <= 0) {
close(sockfd);
return false;
}
unsigned char response[512];
struct sockaddr_in from;
socklen_t from_len = sizeof(from);
int resp_len = recvfrom(sockfd, response, sizeof(response), 0, (struct sockaddr *)&from, &from_len);
close(sockfd);
if (resp_len < 12) return false;
struct dns_header *resp_dns = (struct dns_header *)response;
if (ntohs(resp_dns->id) != getpid()) return false;
gettimeofday(&end, NULL);
*rtt_ms = (int)((end.tv_sec - start.tv_sec) * 1000 + (end.tv_usec - start.tv_usec) / 1000);
return true;
}
// TCP check
static bool run_tcp_check(const char *device, const char *tcp_target, int port, int timeout, int *rtt_ms) {
if (device[0] == '\0' || tcp_target[0] == '\0' || port <= 0) return false;
struct timeval start, end;
gettimeofday(&start, NULL);
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0) return false;
// Set non-blocking
int flags = fcntl(sockfd, F_GETFL, 0);
fcntl(sockfd, F_SETFL, flags | O_NONBLOCK);
// Bind to device
if (setsockopt(sockfd, SOL_SOCKET, SO_BINDTODEVICE, device, strlen(device)) < 0) {
close(sockfd);
return false;
}
struct sockaddr_in addr;
memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_port = htons(port);
if (inet_pton(AF_INET, tcp_target, &addr.sin_addr) <= 0) {
close(sockfd);
return false;
}
int rc = connect(sockfd, (struct sockaddr *)&addr, sizeof(addr));
if (rc < 0) {
if (errno != EINPROGRESS) {
close(sockfd);
return false;
}
} else {
gettimeofday(&end, NULL);
*rtt_ms = (int)((end.tv_sec - start.tv_sec) * 1000 + (end.tv_usec - start.tv_usec) / 1000);
close(sockfd);
return true;
}
fd_set writefds;
FD_ZERO(&writefds);
FD_SET(sockfd, &writefds);
struct timeval tv;
tv.tv_sec = timeout;
tv.tv_usec = 0;
int sel = select(sockfd + 1, NULL, &writefds, NULL, &tv);
if (sel <= 0) {
close(sockfd);
return false;
}
int optval;
socklen_t optlen = sizeof(optval);
if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval, &optlen) < 0 || optval != 0) {
close(sockfd);
return false;
}
gettimeofday(&end, NULL);
*rtt_ms = (int)((end.tv_sec - start.tv_sec) * 1000 + (end.tv_usec - start.tv_usec) / 1000);
close(sockfd);
return true;
}
// UCI parser helper
static bool load_config(void) {
struct uci_context *ctx = uci_alloc_context();
if (!ctx) return false;
struct uci_package *pkg = NULL;
if (uci_load(ctx, "linkback", &pkg) != UCI_OK) {
uci_free_context(ctx);
return false;
}
// Parse global config
global_cfg.enabled = false;
struct uci_section *global_sec = uci_lookup_section(ctx, pkg, "global");
if (!global_sec) {
struct uci_element *ge;
uci_foreach_element(&pkg->sections, ge) {
struct uci_section *s = uci_to_section(ge);
if (strcmp(s->type, "global") == 0) {
global_sec = s;
break;
}
}
}
if (global_sec) {
const char *enabled = uci_lookup_option_string(ctx, global_sec, "enabled");
global_cfg.enabled = (enabled && strcmp(enabled, "1") == 0);
}
// Parse links
link_count = 0;
struct uci_element *e;
uci_foreach_element(&pkg->sections, e) {
struct uci_section *s = uci_to_section(e);
if (strcmp(s->type, "link") != 0) continue;
const char *enabled = uci_lookup_option_string(ctx, s, "enabled");
if (enabled && strcmp(enabled, "0") == 0) continue;
link_t *link = &links[link_count];
memset(link, 0, sizeof(link_t));
const char *name = uci_lookup_option_string(ctx, s, "name");
if (!name) continue;
strncpy(link->name, name, MAX_NAME_LEN - 1);
link->enabled = true;
const char *priority = uci_lookup_option_string(ctx, s, "priority");
int prio_val = priority ? atoi(priority) : 1;
link->priority = (prio_val > 0) ? prio_val : 1;
link->metric = link->priority * 10;
link->current_metric = link->metric;
// Parse ping targets (split by comma or space)
const char *pings = uci_lookup_option_string(ctx, s, "ping_targets");
if (pings) {
char tmp[256];
strncpy(tmp, pings, sizeof(tmp) - 1);
tmp[sizeof(tmp) - 1] = '\0';
char *token = strtok(tmp, ", \t");
while (token && link->ping_target_count < MAX_TARGETS) {
// Trim leading whitespace
while (*token == ' ' || *token == '\t' || *token == '\r' || *token == '\n') {
token++;
}
// Trim trailing whitespace
char *end = token + strlen(token) - 1;
while (end > token && (*end == ' ' || *end == '\t' || *end == '\r' || *end == '\n')) {
*end = '\0';
end--;
}
if (*token != '\0') {
strncpy(link->ping_targets[link->ping_target_count], token, MAX_IP_LEN - 1);
link->ping_target_count++;
}
token = strtok(NULL, ",");
}
}
// Parse DNS targets
const char *dns_srv = uci_lookup_option_string(ctx, s, "dns_server");
if (dns_srv) strncpy(link->dns_server, dns_srv, MAX_IP_LEN - 1);
const char *dns_dom = uci_lookup_option_string(ctx, s, "dns_domain");
if (dns_dom) strncpy(link->dns_domain, dns_dom, MAX_DOMAIN_LEN - 1);
// Parse TCP targets
const char *tcp_tgt = uci_lookup_option_string(ctx, s, "tcp_target");
if (tcp_tgt) strncpy(link->tcp_target, tcp_tgt, MAX_IP_LEN - 1);
const char *tcp_p = uci_lookup_option_string(ctx, s, "tcp_port");
if (tcp_p) link->tcp_port = atoi(tcp_p);
const char *interval = uci_lookup_option_string(ctx, s, "check_interval");
link->check_interval = interval ? atoi(interval) : 5;
const char *timeout = uci_lookup_option_string(ctx, s, "check_timeout");
link->check_timeout = timeout ? atoi(timeout) : 3;
const char *recovery = uci_lookup_option_string(ctx, s, "recovery_delay");
link->recovery_delay = recovery ? atoi(recovery) : 3;
const char *failover = uci_lookup_option_string(ctx, s, "failover_delay");
link->failover_delay = failover ? atoi(failover) : 2;
// Default runtime states
link->healthy = true;
link->is_up = false;
link->last_checked = 0; // Force immediate check on startup
link_count++;
if (link_count >= MAX_LINKS) break;
}
uci_unload(ctx, pkg);
uci_free_context(ctx);
if (!validate_loaded_config()) {
return false;
}
return true;
}
// Startup-time defensive validation. LuCI-side checks can be bypassed by
// direct UCI edits, so daemon must refuse unsafe/incomplete configs.
static bool validate_loaded_config(void) {
if (!global_cfg.enabled) {
return true;
}
if (link_count < 2) {
syslog(LOG_ERR, "Invalid config: at least 2 enabled monitored links are required, got %d.", link_count);
return false;
}
for (int i = 0; i < link_count; i++) {
link_t *a = &links[i];
if (a->name[0] == '\0') {
syslog(LOG_ERR, "Invalid config: link[%d] has empty interface name.", i);
return false;
}
if (a->priority <= 0) {
syslog(LOG_ERR, "Invalid config: link %s has invalid priority %d (must be > 0).", a->name, a->priority);
return false;
}
if (a->metric <= 0) {
syslog(LOG_ERR, "Invalid config: link %s has invalid metric %d (must be > 0).", a->name, a->metric);
return false;
}
// No duplicate priorities
for (int j = i + 1; j < link_count; j++) {
link_t *b = &links[j];
if (a->priority == b->priority) {
syslog(LOG_ERR, "Invalid config: duplicate priority %d on links %s and %s.", a->priority, a->name, b->name);
return false;
}
}
bool has_ping = (a->ping_target_count > 0);
bool has_dns = (a->dns_server[0] != '\0' && a->dns_domain[0] != '\0');
bool has_tcp = (a->tcp_target[0] != '\0' && a->tcp_port > 0);
int check_count = 0;
if (has_ping) check_count++;
if (has_dns) check_count++;
if (has_tcp) check_count++;
if (check_count == 0) {
syslog(LOG_ERR, "Invalid config: link %s has no complete health-check probe configured.", a->name);
return false;
}
if (check_count > 1) {
syslog(LOG_ERR, "Invalid config: link %s has multiple health-check probes configured. Only one check type is allowed.", a->name);
return false;
}
if ((a->dns_server[0] != '\0') != (a->dns_domain[0] != '\0')) {
syslog(LOG_ERR, "Invalid config: link %s DNS probe is incomplete (dns_server + dns_domain required).", a->name);
return false;
}
if ((a->tcp_target[0] != '\0') != (a->tcp_port > 0)) {
syslog(LOG_ERR, "Invalid config: link %s TCP probe is incomplete (tcp_target + tcp_port required).", a->name);
return false;
}
if (a->check_interval <= 0 || a->check_timeout <= 0 ||
a->recovery_delay <= 0 || a->failover_delay <= 0) {
syslog(LOG_ERR, "Invalid config: link %s timing values must be > 0.", a->name);
return false;
}
}
return true;
}
// Retrieve the real default route metric for a device from /proc/net/route
static int get_system_route_metric(const char *device, int expected_metric) {
if (device[0] == '\0') return -1;
FILE *fp = fopen("/proc/net/route", "r");
if (!fp) return -1;
char line[256];
char iface[32];
unsigned long dest;
int metric = -1;
int first_found_metric = -1;
bool found_expected = false;
// Skip header line
if (fgets(line, sizeof(line), fp)) {
while (fgets(line, sizeof(line), fp)) {
// Destination is 2nd column, Metric is 7th column, dest is in hex.
// Use %*s for Gateway and Flags to safely skip non-numeric characters.
if (sscanf(line, "%31s %lx %*s %*s %*d %*d %d", iface, &dest, &metric) == 3) {
if (strcmp(iface, device) == 0 && dest == 0) {
if (first_found_metric == -1) {
first_found_metric = metric;
}
if (metric == expected_metric) {
found_expected = true;
break;
}
}
}
}
}
fclose(fp);
if (found_expected) {
return expected_metric;
}
return first_found_metric;
}
// Compare priority for sorting (lowest priority number is highest precedence)
static int compare_links(const void *a, const void *b) {
link_t *la = (link_t *)a;
link_t *lb = (link_t *)b;
return la->priority - lb->priority;
}
// Dynamic route update using ip route command
static void update_route_metric(link_t *link, int new_metric, int old_metric_to_delete) {
if (link->device[0] == '\0') return;
char cmd[512];
// 1. Delete the specified old metric to prevent duplicate routes
if (old_metric_to_delete != -1 && old_metric_to_delete != new_metric) {
if (link->gateway[0] != '\0') {
snprintf(cmd, sizeof(cmd), "ip route del default via %s dev %s metric %d 2>/dev/null",
link->gateway, link->device, old_metric_to_delete);
} else {
snprintf(cmd, sizeof(cmd), "ip route del default dev %s metric %d 2>/dev/null",
link->device, old_metric_to_delete);
}
system(cmd);
}
// 2. Delete the current_metric if it is different from new_metric and old_metric_to_delete
if (link->current_metric != new_metric && link->current_metric != old_metric_to_delete) {
if (link->gateway[0] != '\0') {
snprintf(cmd, sizeof(cmd), "ip route del default via %s dev %s metric %d 2>/dev/null",
link->gateway, link->device, link->current_metric);
} else {
snprintf(cmd, sizeof(cmd), "ip route del default dev %s metric %d 2>/dev/null",
link->device, link->current_metric);
}
system(cmd);
}
// 3. Add/replace with new_metric
if (link->gateway[0] != '\0') {
snprintf(cmd, sizeof(cmd), "ip route replace default via %s dev %s metric %d 2>/dev/null",
link->gateway, link->device, new_metric);
} else {
snprintf(cmd, sizeof(cmd), "ip route replace default dev %s metric %d 2>/dev/null",
link->device, new_metric);
}
syslog(LOG_INFO, "Applying route metric update on link %s (%s, priority %d): %d -> %d",
link->name, link->device, link->priority, link->current_metric, new_metric);
int rc = system(cmd);
if (rc == 0) {
link->current_metric = new_metric;
} else {
syslog(LOG_ERR, "Failed to apply route update for %s (priority %d) using cmd: %s", link->name, link->priority, cmd);
}
}
// Restore default metrics on exit
static void restore_all_metrics(void) {
syslog(LOG_INFO, "Restoring all interface metrics on exit...");
for (int i = 0; i < link_count; i++) {
link_t *link = &links[i];
if (link->enabled && link->is_up && link->device[0] != '\0') {
char cmd[512];
// Delete floated metric if it was in fault state
if (link->current_metric != link->metric) {
if (link->gateway[0] != '\0') {
snprintf(cmd, sizeof(cmd), "ip route del default via %s dev %s metric %d 2>/dev/null",
link->gateway, link->device, link->current_metric);
} else {
snprintf(cmd, sizeof(cmd), "ip route del default dev %s metric %d 2>/dev/null",
link->device, link->current_metric);
}
system(cmd);
}
if (link->gateway[0] != '\0') {
snprintf(cmd, sizeof(cmd), "ip route replace default via %s dev %s metric %d 2>/dev/null",
link->gateway, link->device, link->metric);
} else {
snprintf(cmd, sizeof(cmd), "ip route replace default dev %s metric %d 2>/dev/null",
link->device, link->metric);
}
int rc = system(cmd);
if (rc == 0) {
syslog(LOG_INFO, "Successfully restored default metric %d for interface %s (priority %d)", link->metric, link->name, link->priority);
}
}
}
}
// Write status file to /var/run/linkback.json
static void write_status_json(void) {
FILE *fp = fopen(STATUS_FILE, "w");
if (!fp) return;
fprintf(fp, "{\n");
fprintf(fp, " \"enabled\": %s,\n", global_cfg.enabled ? "true" : "false");
fprintf(fp, " \"check_interval\": 5,\n");
// Find current active gateway link (first healthy link ordered by priority)
char active_link[MAX_NAME_LEN] = "none";
for (int i = 0; i < link_count; i++) {
if (links[i].is_up && links[i].healthy) {
strncpy(active_link, links[i].name, MAX_NAME_LEN - 1);
break;
}
}
fprintf(fp, " \"active_link\": \"%s\",\n", active_link);
fprintf(fp, " \"links\": [\n");
for (int i = 0; i < link_count; i++) {
link_t *link = &links[i];
fprintf(fp, " {\n");
fprintf(fp, " \"name\": \"%s\",\n", link->name);
fprintf(fp, " \"priority\": %d,\n", link->priority);
fprintf(fp, " \"metric\": %d,\n", link->metric);
fprintf(fp, " \"current_metric\": %d,\n", link->current_metric);
fprintf(fp, " \"healthy\": %s,\n", link->healthy ? "true" : "false");
fprintf(fp, " \"is_up\": %s,\n", link->is_up ? "true" : "false");
fprintf(fp, " \"device\": \"%s\",\n", link->device);
fprintf(fp, " \"gateway\": \"%s\",\n", link->gateway);
fprintf(fp, " \"score\": %d,\n", link->current_score);
fprintf(fp, " \"threshold\": %d,\n", link->weight_threshold);
fprintf(fp, " \"check_interval\": %d,\n", link->check_interval);
fprintf(fp, " \"check_timeout\": %d,\n", link->check_timeout);
fprintf(fp, " \"recovery_delay\": %d,\n", link->recovery_delay);
fprintf(fp, " \"failover_delay\": %d,\n", link->failover_delay);
const char *type = "none";
if (link->ping_target_count > 0) type = "ping";
else if (link->dns_server[0] != '\0') type = "dns";
else if (link->tcp_target[0] != '\0') type = "tcp";
fprintf(fp, " \"check_type\": \"%s\",\n", type);
fprintf(fp, " \"ping\": {\"ok\": %s, \"rtt\": %d},\n", link->ping_ok ? "true" : "false", link->ping_rtt_ms);
fprintf(fp, " \"dns\": {\"ok\": %s, \"rtt\": %d},\n", link->dns_ok ? "true" : "false", link->dns_rtt_ms);
fprintf(fp, " \"tcp\": {\"ok\": %s, \"rtt\": %d}\n", link->tcp_ok ? "true" : "false", link->tcp_rtt_ms);
fprintf(fp, " }%s\n", (i == link_count - 1) ? "" : ",");
}
fprintf(fp, " ]\n");
fprintf(fp, "}\n");
fclose(fp);
}
int main(int argc, char **argv) {
// Setup syslog
openlog("linkbackd", LOG_PID | LOG_NDELAY, LOG_DAEMON);
syslog(LOG_INFO, "Starting LinkBack daemon...");
// Register signal handlers for clean exits and metric restoration
signal(SIGTERM, handle_signal);
signal(SIGINT, handle_signal);
// Load configuration
if (!load_config()) {
syslog(LOG_ERR, "Failed to load linkback config. Exiting.");
closelog();
return 1;
}
if (!global_cfg.enabled) {
syslog(LOG_WARNING, "LinkBack is disabled globally in configuration. Exiting.");
closelog();
return 0;
}
// Sort links by priority (lowest priority number first)
qsort(links, link_count, sizeof(link_t), compare_links);
syslog(LOG_INFO, "Loaded %d monitored interfaces. Starting health check scheduler.", link_count);
// Core check loop
while (keep_running) {
time_t now = time(NULL);
bool any_checked = false;
for (int i = 0; i < link_count; i++) {
link_t *link = &links[i];
// Check if this interface is due for checking
if (now - link->last_checked < link->check_interval) {
continue;
}
link->last_checked = now;
any_checked = true;
// 1. Fetch real-time netifd status
char dev[MAX_NAME_LEN] = {0};
char gw[MAX_IP_LEN] = {0};
bool is_up = false;
get_interface_ubus_status(link->name, dev, sizeof(dev), gw, sizeof(gw), &is_up);
link->is_up = is_up;
strncpy(link->device, dev, MAX_NAME_LEN - 1);
strncpy(link->gateway, gw, MAX_IP_LEN - 1);
if (!is_up || dev[0] == '\0') {
// Interface is down in netifd, mark unhealthy immediately
link->healthy = false;
link->current_score = 0;
link->ping_ok = false;
link->dns_ok = false;
link->tcp_ok = false;
link->consecutive_success = 0;
link->consecutive_failure = 0;
// If it still has low metric, float it
if (link->current_metric == link->metric) {
update_route_metric(link, 1000 + link->metric, -1);
}
continue;
}
// 2. Perform health checks
bool check_success = false;
if (link->ping_target_count > 0) {
link->ping_ok = false;
link->ping_rtt_ms = -1;
for (int p = 0; p < link->ping_target_count; p++) {
int rtt = -1;
if (run_ping_check(link->device, link->ping_targets[p], link->check_timeout, &rtt)) {
link->ping_ok = true;
link->ping_rtt_ms = rtt;
break;
}
}
check_success = link->ping_ok;
}
else if (link->dns_server[0] != '\0' && link->dns_domain[0] != '\0') {
link->dns_ok = false;
link->dns_rtt_ms = -1;
int rtt = -1;
if (run_dns_check(link->device, link->dns_server, link->dns_domain, link->check_timeout, &rtt)) {
link->dns_ok = true;
link->dns_rtt_ms = rtt;
}
check_success = link->dns_ok;
}
else if (link->tcp_target[0] != '\0' && link->tcp_port > 0) {
link->tcp_ok = false;
link->tcp_rtt_ms = -1;
int rtt = -1;
if (run_tcp_check(link->device, link->tcp_target, link->tcp_port, link->check_timeout, &rtt)) {
link->tcp_ok = true;
link->tcp_rtt_ms = rtt;
}
check_success = link->tcp_ok;
}
link->current_score = check_success ? 1 : 0;
// 3. Evaluate health state changes (filtering and delay)
if (check_success) {
link->consecutive_success++;
link->consecutive_failure = 0;
if (!link->healthy && link->consecutive_success >= link->recovery_delay) {
// Recovered! Failback!
link->healthy = true;
syslog(LOG_NOTICE, "Link %s (%s, priority %d) recovered to healthy after %d successes.",
link->name, link->device, link->priority, link->consecutive_success);
// Restore original metric
update_route_metric(link, link->metric, -1);
}
} else {
link->consecutive_failure++;
link->consecutive_success = 0;
if (link->healthy && link->consecutive_failure >= link->failover_delay) {
// Failed! Failover!
link->healthy = false;
syslog(LOG_WARNING, "Link %s (%s, priority %d) went down after %d failures.",
link->name, link->device, link->priority, link->consecutive_failure);
// Push metric out of choice range
update_route_metric(link, 1000 + link->metric, -1);
}
}
// 4. Active routing metric self-healing to prevent external/netifd interference
if (link->device[0] != '\0') {
int expected_metric = (link->is_up && link->healthy) ? link->metric : (1000 + link->metric);
int real_metric = get_system_route_metric(link->device, expected_metric);
if (real_metric != -1 && real_metric != expected_metric) {
syslog(LOG_WARNING, "Route metric mismatch detected on %s (%s, priority %d): expected %d, got %d. Correcting...",
link->name, link->device, link->priority, expected_metric, real_metric);
update_route_metric(link, expected_metric, real_metric);
}
}
}
if (any_checked) {
// Write states to shared JSON file
write_status_json();
}
// High-responsiveness scheduler ticks every second
sleep(1);
}
// Terminating: clean up routes before exit
restore_all_metrics();
unlink(STATUS_FILE);
syslog(LOG_INFO, "LinkBack daemon terminated successfully.");
closelog();
return 0;
}
+67
View File
@@ -0,0 +1,67 @@
#ifndef LINKBACKD_H
#define LINKBACKD_H
#include <stdbool.h>
#include <time.h>
#define MAX_LINKS 16
#define MAX_NAME_LEN 32
#define MAX_TARGETS 8
#define MAX_IP_LEN 64
#define MAX_DOMAIN_LEN 128
#define STATUS_FILE "/var/run/linkback.json"
typedef struct {
char name[MAX_NAME_LEN];
bool enabled;
int priority;
int metric;
// Ping config
char ping_targets[MAX_TARGETS][MAX_IP_LEN];
int ping_target_count;
int ping_weight;
// DNS config
char dns_server[MAX_IP_LEN];
char dns_domain[MAX_DOMAIN_LEN];
int dns_weight;
// TCP config
char tcp_target[MAX_IP_LEN];
int tcp_port;
int tcp_weight;
// Thresholds
int weight_threshold;
int check_interval;
int check_timeout;
int recovery_delay;
int failover_delay;
// Runtime state
char device[MAX_NAME_LEN]; // physical interface name e.g., pppoe-wan, eth1
char gateway[MAX_IP_LEN]; // gateway IP address
bool is_up; // whether interface is reported up by netifd
bool healthy; // daemon link health state
int consecutive_success;
int consecutive_failure;
time_t last_checked; // Last health check timestamp
// Detailed health checks status
bool ping_ok;
int ping_rtt_ms;
bool dns_ok;
int dns_rtt_ms;
bool tcp_ok;
int tcp_rtt_ms;
int current_score;
int current_metric; // actual system metric applied
} link_t;
typedef struct {
bool enabled;
} global_config_t;
#endif // LINKBACKD_H
+15
View File
@@ -0,0 +1,15 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-ap-switch
PKG_VERSION:=1.0.0
PKG_RELEASE:=1
PKG_LICENSE:=Apache-2.0
PKG_MAINTAINER:=Dante
LUCI_TITLE:=LuCI support for one-click AP mode switching
LUCI_DEPENDS:=+luci-base +ucode +ucode-mod-fs +ucode-mod-uci +ucode-mod-ubus
LUCI_PKGARCH:=all
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature
@@ -0,0 +1,201 @@
'use strict';
'require view';
'require rpc';
'require ui';
'require uci';
var callGetStatus = rpc.declare({
object: 'luci.ap-switch',
method: 'get_status'
});
var callSetMode = rpc.declare({
object: 'luci.ap-switch',
method: 'set_mode',
params: ['mode']
});
var callProbeIP = rpc.declare({
object: 'luci.ap-switch',
method: 'probe_ip'
});
return L.view.extend({
i18n: 'ap-switch',
handleSaveApply: null,
handleSave: null,
handleReset: null,
load: function() {
return Promise.all([
callGetStatus(),
uci.load('ap-switch')
]);
},
render: function(data) {
var self = this;
var status = data[0];
var mode = status.mode || 'router';
var lan_ip = status.lan_ip || 'N/A';
var lan_proto = status.lan_proto || 'static';
var lan_mac = status.lan_mac || 'N/A';
var changeModeRows = [
E('tr', { 'class': 'tr' }, [
E('td', { 'class': 'td left', 'width': '33%' }, _('Switch to %s').format(mode === 'ap' ? _('Router Mode') : _('AP Mode'))),
E('td', { 'class': 'td left' }, [
E('button', {
'class': 'cbi-button cbi-button-apply',
'click': ui.createHandlerFn(self, function() {
return self.handleSwitch(mode === 'ap' ? 'router' : 'ap', status);
})
}, [ (mode === 'ap' ? _('Switch to Router Mode') : _('Switch to AP Mode')) ])
])
])
];
var body = E('div', { 'class': 'cbi-map' }, [
E('h2', {}, _('AP Switch Title') + ' - ' + _('Switch Mode')),
E('div', { 'class': 'cbi-map-descr' }, _('Switch your system runtime configuration smoothly between standard Router and Access Point (AP) modes. Network interfaces and bridge rules will be adjusted automatically.')),
E('fieldset', { 'class': 'cbi-section' }, [
E('legend', {}, _('Current Status')),
E('div', { 'class': 'cbi-section-node' }, [
E('table', { 'class': 'table cbi-section-table' }, [
E('tr', { 'class': 'tr' }, [
E('td', { 'class': 'td left', 'width': '33%' }, _('Operation Mode')),
E('td', { 'class': 'td left' }, E('strong', {}, (mode === 'ap' ? _('Access Point (AP)') : _('Router'))))
]),
E('tr', { 'class': 'tr' }, [
E('td', { 'class': 'td left' }, _('Login URL')),
E('td', { 'class': 'td left' }, lan_ip ? E('a', {
'href': 'http://' + lan_ip,
'target': '_blank',
'style': 'text-decoration: underline; font-weight: bold; color: blue;'
}, 'http://' + lan_ip) : _('N/A'))
]),
E('tr', { 'class': 'tr' }, [
E('td', { 'class': 'td left' }, _('LAN IP Address')),
E('td', { 'class': 'td left' }, [
E('strong', { 'style': 'color: #2196F3;' }, lan_ip || _('Pending...')),
E('span', { 'style': 'margin-left: 10px; color: #666;' }, '(' + lan_proto + ')')
])
]),
E('tr', { 'class': 'tr' }, [
E('td', { 'class': 'td left' }, _('LAN MAC Address')),
E('td', { 'class': 'td left', 'id': 'lan-mac' }, lan_mac)
])
])
])
]),
E('fieldset', { 'class': 'cbi-section' }, [
E('legend', {}, _('Change Mode')),
E('div', { 'class': 'cbi-section-node' }, [
E('table', { 'class': 'table cbi-section-table' }, changeModeRows)
])
])
]);
return body;
},
handleSwitch: function(target_mode, status) {
var self = this;
var executeSwitch = function() {
ui.showModal(null, [
E('p', { 'class': 'spinning' }, _('Applying changes and restarting network...')),
E('p', {}, _('The page will redirect or you may need to manually reconnect to the new IP address in a few moments.'))
]);
return callSetMode(target_mode).then(function(res) {
if (res && res.result === 'success') {
setTimeout(function() {
ui.hideModal();
ui.addNotification(null, E('p', _('Mode switched successfully. Please check your network connection.')), 'info');
}, 5000);
} else {
ui.hideModal();
ui.addNotification(null, E('p', _('Failed to switch mode: %s').format(res.error || 'Unknown error')), 'error');
}
}).catch(function(err) {
ui.hideModal();
ui.addNotification(null, E('p', _('Error calling RPC: %s').format(err.message)), 'error');
});
};
var showConfirmModal = function(title, messages, onConfirm) {
var content = [];
messages.forEach(function(msg) {
content.push(E('p', { 'style': 'margin-bottom: 10px; line-height: 1.5;' }, msg));
});
content.push(E('div', { 'class': 'right', 'style': 'margin-top: 20px;' }, [
E('button', {
'class': 'cbi-button cbi-button-reset',
'click': ui.hideModal
}, _('Cancel')),
E('button', {
'class': 'cbi-button cbi-button-action cbi-button-apply',
'style': 'margin-left: 10px;',
'click': function() {
ui.hideModal();
onConfirm();
}
}, _('Confirm'))
]));
ui.showModal(title, content);
};
if (target_mode === 'ap') {
ui.showModal(null, [
E('p', { 'class': 'spinning' }, _('Auto-probing for future AP IP via DHCP on br-lan...')),
E('p', {}, _('This ensures you can find your way back to the management panel after the switch.'))
]);
return callProbeIP().then(function(res) {
ui.hideModal();
var title = _('Confirm AP Mode Switch');
var messages = [];
if (res && res.ip) {
messages.push(E('span', {}, [
_('Successfully pre-fetched future management IP: '),
E('a', {
'href': 'http://' + res.ip,
'target': '_blank',
'style': 'color: #2196F3; font-weight: bold; text-decoration: underline; word-break: break-all;'
}, 'http://' + res.ip)
]));
messages.push(_('You can use this URL to access this dashboard after the switch.'));
messages.push(_('Are you sure you want to switch to AP mode and restart network?'));
} else {
messages.push(_('WARNING: Failed to pre-fetch IP address via DHCP probe!'));
messages.push(_('This may be because your LAN port is not connected to the main router.'));
messages.push(_('If you proceed, you must find the new IP from your main router client list using MAC: %s').format(status.lan_mac || 'N/A'));
messages.push(_('Do you still want to force the switch anyway?'));
}
showConfirmModal(title, messages, executeSwitch);
}).catch(function(err) {
ui.hideModal();
var title = _('Confirm AP Mode Switch');
var messages = [
_('WARNING: DHCP probe RPC error: %s').format(err.message),
_('If you proceed, you must find the new IP from your main router client list using MAC: %s').format(status.lan_mac || 'N/A'),
_('Do you still want to force the switch anyway?')
];
showConfirmModal(title, messages, executeSwitch);
});
} else {
var title = _('Confirm Router Mode Switch');
var messages = [
_('Switching to Router mode will restore the WAN port and local DHCP server. Your device will use the previous static IP address. Are you sure?')
];
showConfirmModal(title, messages, executeSwitch);
}
}
});
@@ -0,0 +1,116 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
msgid "AP Switch"
msgstr ""
msgid "Switch between Router and Access Point (AP) mode."
msgstr ""
msgid "Current Status"
msgstr ""
msgid "Operation Mode"
msgstr ""
msgid "Access Point (AP)"
msgstr ""
msgid "Router"
msgstr ""
msgid "LAN IP Address"
msgstr ""
msgid "Change Mode"
msgstr ""
msgid "Switch to %s"
msgstr ""
msgid "Router Mode"
msgstr ""
msgid "AP Mode"
msgstr ""
msgid "Switch to Router Mode"
msgstr ""
msgid "Switch to AP Mode"
msgstr ""
msgid "LAN MAC Address"
msgstr ""
msgid "Switching to AP mode will bridge the WAN port into \"br-lan\". The \"br-lan\" interface will become a DHCP client to your main router."
msgstr ""
msgid "Pre-fetch AP IP"
msgstr ""
msgid "Probing for DHCP IP on br-lan..."
msgstr ""
msgid "Successfully fetched IP: %s"
msgstr ""
msgid "Failed to fetch IP. Ensure a LAN port is connected to your main router."
msgstr ""
msgid "Probe IP"
msgstr ""
msgid "Not probed"
msgstr ""
msgid "A valid IP was pre-fetched: %s. You can use this address to log in after the switch."
msgstr ""
msgid "Are you sure you want to proceed?"
msgstr ""
msgid "WARNING: No IP address was pre-fetched via DHCP probe!"
msgstr ""
msgid "We strongly recommend connecting your LAN port to the main router and using \"Probe IP\" first."
msgstr ""
msgid "If you proceed now, you must find the new IP from your main router using MAC: %s"
msgstr ""
msgid "Do you want to proceed anyway or cancel to plug in the cable and try again?"
msgstr ""
msgid "Pending..."
msgstr ""
msgid "Login URL"
msgstr ""
msgid "N/A"
msgstr ""
msgid "None"
msgstr ""
msgid "Are you sure?"
msgstr ""
msgid "Switching to Router mode will restore the WAN port and local DHCP server. Your device will use the previous static IP address. Are you sure?"
msgstr ""
msgid "Applying changes and restarting network..."
msgstr ""
msgid "The page will redirect or you may need to manually reconnect to the new IP address in a few moments."
msgstr ""
msgid "Mode switched successfully. Please check your network connection."
msgstr ""
msgid "Failed to switch mode: %s"
msgstr ""
msgid "Error calling RPC: %s"
msgstr ""
+169
View File
@@ -0,0 +1,169 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
msgid "AP Switch"
msgstr "AP模式切换"
msgid "Switch between Router and Access Point (AP) mode."
msgstr "在路由器模式和访问点 (AP) 模式之间切换。"
msgid "Current Status"
msgstr "当前状态"
msgid "Operation Mode"
msgstr "运行模式"
msgid "Access Point (AP)"
msgstr "访问点 (AP)"
msgid "Router"
msgstr "路由器"
msgid "LAN IP Address"
msgstr "LAN IP 地址"
msgid "Change Mode"
msgstr "更改模式"
msgid "Switch to %s"
msgstr "切换到 %s"
msgid "Router Mode"
msgstr "路由器模式"
msgid "AP Mode"
msgstr "AP 模式"
msgid "Switch to Router Mode"
msgstr "切换到路由器模式"
msgid "Switch to AP Mode"
msgstr "切换到 AP 模式"
msgid "LAN MAC Address"
msgstr "LAN MAC 地址"
msgid "Switching to AP mode will bridge the WAN port into \"br-lan\". The \"br-lan\" interface will become a DHCP client to your main router."
msgstr "切换到 AP 模式会将 WAN 口桥接到 \"br-lan\"。\"br-lan\" 接口将成为主路由器的 DHCP 客户端。"
msgid "Pre-fetch AP IP"
msgstr "预获取 AP IP"
msgid "Probing for DHCP IP on br-lan..."
msgstr "正在 br-lan 接口探测 DHCP IP..."
msgid "Successfully fetched IP: %s"
msgstr "成功获取到 IP%s"
msgid "Failed to fetch IP. Ensure a LAN port is connected to your main router."
msgstr "获取 IP 失败。请确保 LAN 口已连接到主路由器。"
msgid "Probe IP"
msgstr "开始探测"
msgid "Not probed"
msgstr "未探测"
msgid "A valid IP was pre-fetched: %s. You can use this address to log in after the switch."
msgstr "已预获取到有效的 IP:%s。切换后,您可以使用此地址登录。"
msgid "Are you sure you want to proceed?"
msgstr "确定要继续吗?"
msgid "WARNING: No IP address was pre-fetched via DHCP probe!"
msgstr "警告:未通过 DHCP 探测预获取到 IP 地址!"
msgid "We strongly recommend connecting your LAN port to the main router and using \"Probe IP\" first."
msgstr "强烈建议先将 LAN 口连接到主路由器,并使用“预获取 AP IP”功能。"
msgid "If you proceed now, you must find the new IP from your main router using MAC: %s"
msgstr "如果您现在继续,切换后必须通过 MAC 地址在主路由中查找新 IP:%s"
msgid "Do you want to proceed anyway or cancel to plug in the cable and try again?"
msgstr "您是坚持继续,还是取消操作并在插上网线后重新尝试?"
msgid "Pending..."
msgstr "等待中..."
msgid "Login URL"
msgstr "登录地址"
msgid "N/A"
msgstr "不适用"
msgid "None"
msgstr "无"
msgid "Are you sure?"
msgstr "确定要继续吗?"
msgid "Switching to Router mode will restore the WAN port and local DHCP server. Your device will use the previous static IP address. Are you sure?"
msgstr "切换到路由器模式将恢复 WAN 口和本地 DHCP 服务。您的设备将使用之前的静态 IP 地址。确定要继续吗?"
msgid "Applying changes and restarting network..."
msgstr "正在应用更改并重启网络..."
msgid "The page will redirect or you may need to manually reconnect to the new IP address in a few moments."
msgstr "页面将会重定向,或者您可能需要在片刻后手动连接到新的 IP 地址。"
msgid "Mode switched successfully. Please check your network connection."
msgstr "模式切换成功。请检查您的网络连接。"
msgid "Failed to switch mode: %s"
msgstr "切换模式失败:%s"
msgid "Error calling RPC: %s"
msgstr "调用 RPC 错误:%s"
msgid "Switch Mode"
msgstr "模式切换"
msgid "Switch your system runtime configuration smoothly between standard Router and Access Point (AP) modes. Network interfaces and bridge rules will be adjusted automatically."
msgstr "在标准路由器模式与 AP 桥接访问点模式之间平滑切换系统运行配置。切换后,网口物理桥接规则以及接口 DHCP 客户端行为将自动智能调整。"
msgid "AP Switch Title"
msgstr "AP 模式切换"
msgid "Auto-probing for future AP IP via DHCP on br-lan..."
msgstr "正在通过 br-lan 接口的 DHCP 自动探测未来的 AP 管理 IP 地址..."
msgid "This ensures you can find your way back to the management panel after the switch."
msgstr "这可以确保您在切换模式后,能够顺利找到并登录新的设备管理后台。"
msgid "Successfully pre-fetched future management IP: "
msgstr "成功预先获取到未来的管理 IP:"
msgid "You can use this URL to access this dashboard after the switch."
msgstr "您可以使用此 URL 地址在切换后访问本控制台。"
msgid "Are you sure you want to switch to AP mode and restart network?"
msgstr "您确定要切换到 AP 模式并重启网络吗?"
msgid "WARNING: Failed to pre-fetch IP address via DHCP probe!"
msgstr "警告:通过 DHCP 探测预获取 IP 地址失败!"
msgid "This may be because your LAN port is not connected to the main router."
msgstr "这可能是由于您设备的 LAN 物理端口尚未连接到上层主路由器。"
msgid "If you proceed, you must find the new IP from your main router client list using MAC: %s"
msgstr "如果您继续,切换后必须通过 MAC 地址在上级主路由的客户端列表中查找新 IP:%s"
msgid "Do you still want to force the switch anyway?"
msgstr "您是否仍要强制执行切换?"
msgid "WARNING: DHCP probe RPC error: %s"
msgstr "警告:DHCP 探测 RPC 请求发生错误:%s"
msgid "Confirm AP Mode Switch"
msgstr "确认切换至 AP 模式"
msgid "Confirm Router Mode Switch"
msgstr "确认切换至路由器模式"
msgid "Cancel"
msgstr "取消"
msgid "Confirm"
msgstr "确认"
@@ -0,0 +1,15 @@
config global 'settings'
option mode 'router'
config backup 'router_state'
option lan_proto 'static'
option lan_ipaddr '192.168.1.1'
option lan_netmask '255.255.255.0'
option lan_gateway ''
list lan_dns ''
option dhcp_ignore '0'
option wan_device ''
option wan_disabled '0'
option wan6_disabled '0'
@@ -0,0 +1,5 @@
#!/bin/sh
[ "$1" = "bound" ] || exit 0
echo "$ip" > /tmp/ap_switch_probed_ip
@@ -0,0 +1,13 @@
{
"admin/services/ap_switch": {
"title": "AP Switch",
"action": {
"type": "view",
"path": "ap-switch/ap-switch"
},
"order": 90,
"depends": {
"acl": [ "luci-app-ap-switch" ]
}
}
}
@@ -0,0 +1,19 @@
{
"luci-app-ap-switch": {
"description": "ACL for AP Switch",
"read": {
"uci": [ "ap-switch", "network", "dhcp" ],
"ubus": {
"luci.ap-switch": [ "get_status", "probe_ip" ],
"network.interface": [ "dump" ],
"network.device": [ "status" ]
}
},
"write": {
"uci": [ "ap-switch", "network", "dhcp" ],
"ubus": {
"luci.ap-switch": [ "set_mode" ]
}
}
}
}
@@ -0,0 +1,226 @@
'use strict';
import { cursor } from 'uci';
import { connect } from 'ubus';
import { readfile, unlink } from 'fs';
const UCI_CONFIG = 'ap-switch';
const PROBE_FILE = '/tmp/ap_switch_probed_ip';
const methods = {
get_status: {
call: function() {
let uci_cursor = cursor();
let mode = uci_cursor.get(UCI_CONFIG, 'settings', 'mode') || 'router';
let lan_proto = uci_cursor.get('network', 'lan', 'proto') || 'static';
let lan_ip = ''; // We will get the real-time IP
let ubus_conn = connect();
let lan_mac = '';
let wan_mac = '';
let wan_ip = '';
if (ubus_conn) {
// 1. Get real-time LAN IP and MAC
let lan_status = ubus_conn.call('network.interface.lan', 'status');
if (lan_status && type(lan_status['ipv4-address']) === 'array' && length(lan_status['ipv4-address']) > 0) {
lan_ip = lan_status['ipv4-address'][0].address;
}
let lan_dev = ubus_conn.call('network.device', 'status', { name: 'br-lan' });
lan_mac = lan_dev?.macaddr || '';
// 2. Get current WAN interface status and its physical device MAC
let wan_status = ubus_conn.call('network.interface.wan', 'status');
let wan_device_name = wan_status?.device || '';
if (wan_device_name) {
let wan_dev = ubus_conn.call('network.device', 'status', { name: wan_device_name });
wan_mac = wan_dev?.macaddr || '';
}
// 3. Get current WAN IP
if (wan_status && type(wan_status['ipv4-address']) === 'array' && length(wan_status['ipv4-address']) > 0) {
wan_ip = wan_status['ipv4-address'][0].address;
}
ubus_conn.disconnect();
}
let probed_ip = rtrim(readfile(PROBE_FILE) || '');
return {
mode: mode,
lan_proto: lan_proto,
lan_ip: lan_ip,
lan_mac: lan_mac,
wan_mac: wan_mac,
wan_ip: wan_ip,
probed_ip: probed_ip
};
}
},
probe_ip: {
call: function() {
unlink(PROBE_FILE);
// Run udhcpc on br-lan with a short timeout and our probe script
// -n: exit if no lease
// -q: quit after obtaining lease
// -t 3: send 3 discover packets
// -T 2: pause 2 seconds between packets
let rc = system('udhcpc -i br-lan -n -q -t 3 -T 2 -s /usr/share/luci-app-ap-switch/dhcp-probe.sh >/dev/null 2>&1');
let ip = rtrim(readfile(PROBE_FILE) || '');
return { success: (rc === 0), ip: ip };
}
},
set_mode: {
args: { mode: 'string' },
call: function(request) {
let target_mode = request.args?.mode;
if (target_mode !== 'router' && target_mode !== 'ap') {
return { error: 'Invalid mode' };
}
let uci_cursor = cursor();
let current_mode = uci_cursor.get(UCI_CONFIG, 'settings', 'mode') || 'router';
if (target_mode === current_mode) {
return { result: 'Already in target mode' };
}
if (target_mode === 'ap') {
// --- Switch to AP Mode (Full Lossless Snapshot) ---
// 1. Identify WAN device
let wan_device = uci_cursor.get('network', 'wan', 'device');
if (!wan_device) {
wan_device = uci_cursor.get('network', 'wan', 'ifname');
}
// 2. Full Snapshot Backup of Router Mode state
let lan_proto = uci_cursor.get('network', 'lan', 'proto') || 'static';
let lan_ipaddr = uci_cursor.get('network', 'lan', 'ipaddr') || '';
let lan_netmask = uci_cursor.get('network', 'lan', 'netmask') || '';
let lan_gateway = uci_cursor.get('network', 'lan', 'gateway') || '';
let lan_dns = uci_cursor.get('network', 'lan', 'dns') || [];
let dhcp_ignore = uci_cursor.get('dhcp', 'lan', 'ignore') || '0';
let wan_disabled = uci_cursor.get('network', 'wan', 'disabled') || '0';
let wan6_disabled = uci_cursor.get('network', 'wan6', 'disabled') || '0';
uci_cursor.set(UCI_CONFIG, 'router_state', 'lan_proto', lan_proto);
uci_cursor.set(UCI_CONFIG, 'router_state', 'lan_ipaddr', lan_ipaddr);
uci_cursor.set(UCI_CONFIG, 'router_state', 'lan_netmask', lan_netmask);
uci_cursor.set(UCI_CONFIG, 'router_state', 'lan_gateway', lan_gateway);
uci_cursor.set(UCI_CONFIG, 'router_state', 'lan_dns', lan_dns);
uci_cursor.set(UCI_CONFIG, 'router_state', 'dhcp_ignore', dhcp_ignore);
uci_cursor.set(UCI_CONFIG, 'router_state', 'wan_device', wan_device || '');
uci_cursor.set(UCI_CONFIG, 'router_state', 'wan_disabled', wan_disabled);
uci_cursor.set(UCI_CONFIG, 'router_state', 'wan6_disabled', wan6_disabled);
uci_cursor.set(UCI_CONFIG, 'settings', 'mode', 'ap');
// 3. Bridge WAN device to LAN bridge
if (wan_device) {
uci_cursor.foreach('network', 'device', (s) => {
if (s.name === 'br-lan') {
let ports = s.ports || [];
if (type(ports) === 'string') ports = [ports];
let exists = false;
for (let p in ports) if (p === wan_device) exists = true;
if (!exists) {
push(ports, wan_device);
uci_cursor.set('network', s['.name'], 'ports', ports);
}
}
});
}
// 4. Set LAN to DHCP client
uci_cursor.set('network', 'lan', 'proto', 'dhcp');
uci_cursor.delete('network', 'lan', 'ipaddr');
uci_cursor.delete('network', 'lan', 'netmask');
uci_cursor.delete('network', 'lan', 'gateway');
uci_cursor.delete('network', 'lan', 'dns');
// 5. Disable WAN interface
uci_cursor.set('network', 'wan', 'disabled', '1');
uci_cursor.set('network', 'wan6', 'disabled', '1');
// 6. Disable DHCP Server
uci_cursor.set('dhcp', 'lan', 'ignore', '1');
} else {
// --- Switch to Router Mode (Lossless State Restoration) ---
// 1. Read Snapshot
let wan_device = uci_cursor.get(UCI_CONFIG, 'router_state', 'wan_device');
let lan_proto = uci_cursor.get(UCI_CONFIG, 'router_state', 'lan_proto') || 'static';
let lan_ipaddr = uci_cursor.get(UCI_CONFIG, 'router_state', 'lan_ipaddr') || '192.168.1.1';
let lan_netmask = uci_cursor.get(UCI_CONFIG, 'router_state', 'lan_netmask') || '';
let lan_gateway = uci_cursor.get(UCI_CONFIG, 'router_state', 'lan_gateway') || '';
let lan_dns = uci_cursor.get(UCI_CONFIG, 'router_state', 'lan_dns') || [];
let dhcp_ignore = uci_cursor.get(UCI_CONFIG, 'router_state', 'dhcp_ignore') || '0';
let wan_disabled = uci_cursor.get(UCI_CONFIG, 'router_state', 'wan_disabled') || '0';
let wan6_disabled = uci_cursor.get(UCI_CONFIG, 'router_state', 'wan6_disabled') || '0';
uci_cursor.set(UCI_CONFIG, 'settings', 'mode', 'router');
// 2. Remove WAN device from LAN bridge
if (wan_device) {
uci_cursor.foreach('network', 'device', (s) => {
if (s.name === 'br-lan') {
let ports = s.ports || [];
if (type(ports) === 'string') ports = [ports];
let new_ports = [];
for (let p in ports) if (p !== wan_device) push(new_ports, p);
uci_cursor.set('network', s['.name'], 'ports', new_ports);
}
});
}
// 3. Restore LAN settings accurately without hardcoding
uci_cursor.set('network', 'lan', 'proto', lan_proto);
if (lan_ipaddr) uci_cursor.set('network', 'lan', 'ipaddr', lan_ipaddr);
if (lan_netmask) uci_cursor.set('network', 'lan', 'netmask', lan_netmask);
if (lan_gateway) uci_cursor.set('network', 'lan', 'gateway', lan_gateway);
if (type(lan_dns) === 'array' && length(lan_dns) > 0) {
uci_cursor.set('network', 'lan', 'dns', lan_dns);
} else if (type(lan_dns) === 'string' && lan_dns !== '') {
uci_cursor.set('network', 'lan', 'dns', lan_dns);
}
// 4. Restore WAN / WAN6 states
if (wan_disabled === '1') {
uci_cursor.set('network', 'wan', 'disabled', '1');
} else {
uci_cursor.delete('network', 'wan', 'disabled');
}
if (wan6_disabled === '1') {
uci_cursor.set('network', 'wan6', 'disabled', '1');
} else {
uci_cursor.delete('network', 'wan6', 'disabled');
}
// 5. Restore DHCP Server state
if (dhcp_ignore === '1') {
uci_cursor.set('dhcp', 'lan', 'ignore', '1');
} else {
uci_cursor.delete('dhcp', 'lan', 'ignore');
}
}
uci_cursor.commit('ap-switch');
uci_cursor.commit('network');
uci_cursor.commit('dhcp');
// Apply changes in background
system('/etc/init.d/network restart &');
system('/etc/init.d/dnsmasq restart &');
return { success: true, result: 'success' };
}
}
};
return { 'luci.ap-switch': methods };
-674
View File
@@ -1,674 +0,0 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
@@ -1,570 +0,0 @@
/* Theme tokens: follow LuCI bootstrap vars, Argon, or JS-set data-aw-theme */
.l7-view-container,
.display-view-container {
--aw-card-bg: var(--background-color-medium, var(--background-color, #f9f9f9));
--aw-card-border: var(--border-color-medium, #e0e0e0);
--aw-chart-bg: var(--background-color-high, #ffffff);
--aw-text: var(--text-color-highest, var(--text-color-high, #333333));
--aw-text-muted: var(--text-color-medium, #666666);
--aw-accent: var(--primary-color-high, var(--primary, #3771c8));
--aw-hover: var(--background-color-low, #f0f0f0);
--aw-error-bg: #ffefef;
--aw-error-fg: #c62828;
--aw-dl: #28a745;
--aw-ul: #007bff;
--aw-vol-dl: #17a2b8;
--aw-vol-ul: #6610f2;
--aw-pkt: #6c757d;
}
@media (prefers-color-scheme: dark) {
.l7-view-container:not([data-aw-theme="light"]),
.display-view-container:not([data-aw-theme="light"]) {
--aw-card-bg: #2a2a2a;
--aw-card-border: #3c3c3c;
--aw-chart-bg: #252526;
--aw-text: #cccccc;
--aw-text-muted: #adb5bd;
--aw-accent: #a5b2ff;
--aw-hover: #333333;
--aw-error-bg: #3a1f1f;
--aw-error-fg: #ff8a80;
--aw-dl: #5dd879;
--aw-ul: #6eb6ff;
--aw-vol-dl: #4ecbd8;
--aw-vol-ul: #b794f6;
--aw-pkt: #adb5bd;
}
}
[data-darkmode="true"] .l7-view-container,
[data-darkmode="true"] .display-view-container,
.l7-view-container[data-aw-theme="dark"],
.display-view-container[data-aw-theme="dark"] {
--aw-card-bg: #2a2a2a;
--aw-card-border: #3c3c3c;
--aw-chart-bg: #252526;
--aw-text: #cccccc;
--aw-text-muted: #adb5bd;
--aw-accent: #a5b2ff;
--aw-hover: #333333;
--aw-error-bg: #3a1f1f;
--aw-error-fg: #ff8a80;
--aw-dl: #5dd879;
--aw-ul: #6eb6ff;
--aw-vol-dl: #4ecbd8;
--aw-vol-ul: #b794f6;
--aw-pkt: #adb5bd;
}
[data-darkmode="false"] .l7-view-container,
[data-darkmode="false"] .display-view-container,
.l7-view-container[data-aw-theme="light"],
.display-view-container[data-aw-theme="light"] {
--aw-card-bg: #f9f9f9;
--aw-card-border: #e0e0e0;
--aw-chart-bg: #ffffff;
--aw-text: #333333;
--aw-text-muted: #666666;
--aw-accent: #3771c8;
--aw-hover: #f0f0f0;
--aw-error-bg: #ffefef;
--aw-error-fg: #c62828;
--aw-dl: #28a745;
--aw-ul: #007bff;
--aw-vol-dl: #17a2b8;
--aw-vol-ul: #6610f2;
--aw-pkt: #6c757d;
}
.aw-inner-tabs {
margin-top: 4px;
}
.aw-inner-tabs > .cbi-tabmenu {
margin-bottom: 12px;
}
.pie label {
font-weight: bold;
font-size: 14px;
display: block;
margin-bottom: 10px;
text-align: center;
}
.kpi ul {
list-style: none;
}
.kpi li {
margin: 10px;
display: none;
}
.kpi big {
font-weight: bold;
}
.head {
text-align: center;
position: relative;
display: flex;
flex-wrap: wrap;
white-space: normal;
}
.head .pie {
/* min-width: 200px; */
padding: 5px;
flex: 1 1 30%;
}
.cbi-tooltip .head .pie {
min-width: 100px;
}
.head .kpi {
padding: 5px;
font-size: smaller;
text-align: left;
align-self: center;
flex: 1 0 33%;
min-width: 150px;
display: flex;
justify-content: center;
}
.head .kpi ul {
margin: 0;
}
.td.double > span {
display: block;
}
.cbi-tooltip {
box-shadow: 0 0 5px #000;
}
@media screen and (max-width: 992px) {
.td.hide-xs {
display: none;
}
.td.double:not(.hide-xs) > span {
white-space: nowrap;
text-align: left;
}
.td.double:not(.hide-xs) > span:first-child::before {
content: "IPv4: ";
font-weight: bold;
}
.td.double:not(.hide-xs) > span:last-child::before {
content: "IPv6: ";
font-weight: bold;
}
}
.form-group {
display: flex;
align-items: center; /* 垂直居中 */
margin-bottom: 15px; /* 项间距 */
gap: 10px; /* Label 和 Input 间距 */
}
/* 标签固定最小宽度 + 右对齐 */
.form-label {
flex: 0 0 120px; /* 不伸缩、不收缩、基础宽度120px */
text-align: right;
font-weight: bold;
color: var(--aw-text, #333);
}
.th-sort-asc::after {
content: " ▲";
}
.th-sort-desc::after {
content: " ▼";
}
.table .th {
cursor: pointer;
}
.table .th:hover {
background-color: var(--aw-hover, #f0f0f0);
}
/* L7 View Specific Styles */
.l7-view-container #l7-error-message { color: var(--aw-error-fg, red); background-color: var(--aw-error-bg, #ffefef); border: 1px solid var(--aw-error-fg, red); padding: 10px; margin-bottom: 10px; display: none; }
.l7-view-container .dashboard-container { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.l7-view-container .line-chart-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; }
.l7-view-container .kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.l7-view-container .kpi-card { background-color: var(--aw-card-bg, #f9f9f9); border-radius: 8px; padding: 15px; text-align: center; border: 1px solid var(--aw-card-border, #e0e0e0); }
.l7-view-container .kpi-card big { display: block; font-size: 1.8em; font-weight: bold; color: var(--aw-accent, #3771c8); }
.l7-view-container .kpi-card-label { font-size: 0.9em; color: var(--aw-text-muted, #666); }
.l7-view-container .chart-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.l7-view-container .chart-card { background-color: var(--aw-chart-bg, #ffffff); border-radius: 8px; padding: 20px; border: 1px solid var(--aw-card-border, #e0e0e0); }
.l7-view-container .chart-card h4 { margin-top: 0; margin-bottom: 15px; text-align: center; font-size: 1.1em; color: var(--aw-text, inherit); }
.l7-view-container .l7-controls {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
padding: 15px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
color: white;
}
.l7-view-container .l7-controls-left, .l7-view-container .l7-controls-right {
display: flex;
align-items: center;
gap: 15px;
}
/* Display View Specific Styles */
.display-view-container .dashboard-container { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.display-view-container .kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.display-view-container .kpi-card { background-color: var(--aw-card-bg, #f9f9f9); border-radius: 8px; padding: 15px; text-align: center; border: 1px solid var(--aw-card-border, #e0e0e0); }
.display-view-container .kpi-card big { display: block; font-size: 1.8em; font-weight: bold; color: var(--aw-accent, #3771c8); }
.display-view-container .kpi-card-label { font-size: 0.9em; color: var(--aw-text-muted, #666); }
.display-view-container .chart-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.display-view-container .chart-card { background-color: var(--aw-chart-bg, #ffffff); border-radius: 8px; padding: 20px; border: 1px solid var(--aw-card-border, #e0e0e0); }
.display-view-container .chart-card h4 { margin-top: 0; margin-bottom: 15px; text-align: center; font-size: 1.1em; color: var(--aw-text, inherit); }
.display-view-container .display-controls {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
margin-top: 20px;
}
/* Control Groups */
.control-group {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
background-color: rgba(255, 255, 255, 0.15);
border-radius: 6px;
backdrop-filter: blur(10px);
}
.control-icon {
font-size: 1.2em;
display: inline-block;
}
.control-label {
font-weight: 500;
color: white;
margin: 0;
white-space: nowrap;
}
.control-input {
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.3);
background-color: rgba(255, 255, 255, 0.9);
padding: 6px 12px;
transition: all 0.3s ease;
}
.control-input:focus {
background-color: white;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
outline: none;
}
.control-buttons {
display: flex;
align-items: center;
gap: 10px;
}
.status-group {
background-color: rgba(255, 255, 255, 0.2);
}
.last-updated-text {
color: rgba(255, 255, 255, 0.95);
font-size: 0.9em;
font-weight: 500;
}
/* Enhanced Select Styling */
.cbi-input-select {
padding: 6px 30px 6px 12px;
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.3);
background-color: rgba(255, 255, 255, 0.9);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 8px center;
background-size: 12px;
appearance: none;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
}
.cbi-input-select:hover {
background-color: white;
border-color: #667eea;
}
.cbi-input-select:focus {
background-color: white;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
outline: none;
}
/* Button Enhancements for Controls */
.l7-controls .cbi-button,
.display-controls .cbi-button {
padding: 8px 16px;
border-radius: 6px;
font-weight: 500;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.cbi-button-action {
background: rgba(255, 193, 7, 0.9);
color: #333;
border-color: rgba(255, 193, 7, 0.3);
}
.cbi-button-action:hover {
background: #ffc107;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(255, 193, 7, 0.4);
}
.cbi-button-positive {
background: rgba(40, 167, 69, 0.9);
color: white;
border-color: rgba(40, 167, 69, 0.3);
}
.cbi-button-positive:hover {
background: #28a745;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(40, 167, 69, 0.4);
}
/* Responsive Controls */
@media screen and (max-width: 768px) {
.l7-controls,
.display-controls {
flex-direction: column;
gap: 15px;
}
.l7-controls-left,
.l7-controls-right,
.control-buttons {
width: 100%;
justify-content: center;
}
.control-group {
justify-content: center;
}
}
/* Table Cell Icon Styles */
.activity-indicator {
font-size: 12px;
display: inline-block;
margin-right: 2px;
}
.icon, .btn-icon, .th-icon {
display: inline-block;
font-style: normal;
margin-right: 4px;
}
.th-icon {
opacity: 0.7;
}
/* Cell Specific Styles */
.sid-cell, .id-cell, .host-cell, .hostname-cell, .protocol-cell {
display: inline-flex;
align-items: center;
gap: 4px;
}
.speed-cell {
display: inline-flex;
align-items: center;
justify-content: flex-end;
gap: 4px;
font-weight: 500;
min-width: 100px;
}
.speed-cell.download {
color: var(--aw-dl, #28a745);
}
.speed-cell.upload {
color: var(--aw-ul, #007bff);
}
.volume-cell {
display: inline-flex;
align-items: center;
justify-content: flex-end;
gap: 4px;
min-width: 90px;
}
.volume-cell.download {
color: var(--aw-vol-dl, #17a2b8);
}
.volume-cell.upload {
color: var(--aw-vol-ul, #6610f2);
}
.packet-cell {
display: inline-flex;
align-items: center;
justify-content: flex-end;
gap: 4px;
color: var(--aw-pkt, #6c757d);
min-width: 80px;
}
/* Data value with monospace font for better alignment */
.data-value {
font-family: 'Courier New', Consolas, monospace;
font-size: 0.95em;
letter-spacing: 0.5px;
}
/* Table header enhancements */
.table .th {
font-weight: 600;
padding: 10px 8px;
white-space: nowrap;
}
.table .td {
padding: 8px;
vertical-align: middle;
}
.protocol-icon.l7::before {
content: '';
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #5470c6;
margin-right: 4px;
}
.protocol-icon.domain::before {
content: '';
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #91cc75;
margin-right: 4px;
}
/* Button Enhancements */
.cbi-button {
display: inline-flex;
align-items: center;
gap: 4px;
transition: all 0.2s ease;
}
.cbi-button:hover {
transform: translateY(-1px);
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.cbi-button-edit {
background-color: #ffc107;
border-color: #ffc107;
}
.cbi-button-edit:hover {
background-color: #e0a800;
border-color: #e0a800;
}
.cbi-button-remove {
background-color: #dc3545;
border-color: #dc3545;
color: white;
}
.cbi-button-remove:hover {
background-color: #c82333;
border-color: #bd2130;
}
.cbi-button-add {
background-color: #28a745;
border-color: #28a745;
color: white;
}
.cbi-button-add:hover:not(:disabled) {
background-color: #218838;
border-color: #1e7e34;
}
.cbi-button-add:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* Table Row Hover Effects */
.table .tr:not(.table-titles):not(.placeholder):hover {
background-color: var(--aw-hover, #f8f9fa);
transition: background-color 0.2s ease;
}
/* Active/Inactive Status Styles */
.activity-indicator[title*="Active"] {
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
/* Responsive Icon Handling */
@media screen and (max-width: 768px) {
.icon, .btn-icon {
margin-right: 2px;
}
.btn-icon + span {
display: none;
}
.th-icon {
margin-right: 0;
}
}
@@ -1,787 +0,0 @@
'use strict';
'require view';
'require fs';
'require ui';
'require poll';
'require rpc';
'require dom';
'require uci';
// Global variables from original display.js
var chartRegistry = {};
var hostNames = {}; // mac => hostname
var hostInfo = {}; // ip => mac
var hostNameMacSectionId = "";
var isPaused = false;
var lastUpdated = null;
// Line chart variables (from l7.js)
var downloadLineChart = {}, uploadLineChart = {};
var lineCategories = { ipv4: [], ipv6: [], mac: [] };
var downloadSeriesData = { ipv4: {}, ipv6: {}, mac: {} };
var uploadSeriesData = { ipv4: {}, ipv6: {}, mac: {} };
// Color palette for chart series
var colorPalette = ['#5470c6', '#91cc75', '#fac858', '#ee6666', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'];
var resizeListenerAdded = false;
// Pre-fill with 60 empty points for a smooth start
['ipv4', 'ipv6', 'mac'].forEach(function(type) {
for (var i = 0; i < 60; i++) {
lineCategories[type].push('');
}
});
// Helper to convert hex to rgba (from l7.js)
function hexToRgba(hex, opacity) {
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
return result ?
'rgba(' + parseInt(result[1], 16) + ', ' + parseInt(result[2], 16) + ', ' + parseInt(result[3], 16) + ', ' + opacity + ')' :
null;
};
function isDarkMode() {
var attr = document.documentElement.getAttribute('data-darkmode');
if (attr === 'true')
return true;
if (attr === 'false')
return false;
var bg = getComputedStyle(document.body).backgroundColor;
var m = bg && bg.match(/rgba?\((\d+),\s*(\d+),\s*(\d+)/);
if (m) {
var lum = (0.299 * m[1] + 0.587 * m[2] + 0.114 * m[3]) / 255;
return lum < 0.5;
}
return window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
}
function getChartColors() {
var dark = isDarkMode();
return {
background: 'transparent',
text: dark ? '#cccccc' : '#333333',
muted: dark ? '#adb5bd' : '#666666',
axis: dark ? 'rgba(255,255,255,0.28)' : 'rgba(0,0,0,0.25)',
split: dark ? 'rgba(255,255,255,0.08)' : 'rgba(0,0,0,0.08)',
pieBorder: dark ? '#252526' : '#ffffff',
tooltipBg: dark ? 'rgba(32,32,32,0.94)' : 'rgba(255,255,255,0.95)',
tooltipBorder: dark ? '#555555' : '#cccccc',
tooltipText: dark ? '#eeeeee' : '#333333'
};
}
function applyViewTheme() {
var theme = isDarkMode() ? 'dark' : 'light';
document.querySelectorAll('.l7-view-container, .display-view-container').forEach(function(el) {
el.setAttribute('data-aw-theme', theme);
});
return theme;
}
function observeChartEl(chart, el) {
if (!chart || !el || !window.ResizeObserver || el._awRo)
return;
el._awRo = new ResizeObserver(function() {
chart.resize();
});
el._awRo.observe(el);
}
function chartAxisTheme(colors) {
return {
backgroundColor: colors.background,
textStyle: { color: colors.text },
legend: { textStyle: { color: colors.text } },
tooltip: {
backgroundColor: colors.tooltipBg,
borderColor: colors.tooltipBorder,
textStyle: { color: colors.tooltipText }
},
xAxis: {
axisLine: { lineStyle: { color: colors.axis } },
axisLabel: { color: colors.muted },
splitLine: { show: false }
},
yAxis: {
axisLine: { lineStyle: { color: colors.axis } },
axisLabel: { color: colors.muted },
splitLine: { lineStyle: { color: colors.split } }
}
};
}
return view.extend({
// --- Core Data Logic from display.js ---
loadHostNames: async function() {
try {
await uci.sections('hostnames', "hostname", function (params) {
hostNameMacSectionId = params['.name'];
for (var key in params) {
if (key.startsWith('.')) continue;
var macAddr = key.split('_').join(':');
hostNames[macAddr] = params[key];
}
});
const dhcpLeases = await fs.exec_direct('/usr/bin/awk', ['-F', ' ', '{print $2, $3, $4}', '/tmp/dhcp.leases'], 'text');
dhcpLeases.split('\n').forEach(function(line) {
if (line === '') return;
const [mac, ip, hostname] = line.split(' ');
if (!hostNames.hasOwnProperty(mac)) {
hostNames[mac] = hostname;
}
});
const arp = await fs.exec_direct('/usr/bin/awk', ['-F', ' ', '{print $1, $4}', '/proc/net/arp'], 'text');
arp.split('\n').forEach(function(line, i) {
if (i === 0 || line === '') return;
const [ip, mac] = line.split(' ');
hostInfo[ip] = mac;
});
} catch (e) {
console.error('Error getting host names:', e);
}
},
loadHostSpeedData: async function() {
var self = this;
try {
const results = await Promise.all([
fs.exec_direct('/usr/bin/aw-bpfctl', ['ipv4', 'json'], 'json'),
fs.exec_direct('/usr/bin/aw-bpfctl', ['ipv6', 'json'], 'json'),
fs.exec_direct('/usr/bin/aw-bpfctl', ['mac', 'json'], 'json')
]);
const defaultData = {status: "success", data: []};
const ipv4Data = results[0] || defaultData;
const ipv6Data = results[1] || defaultData;
const macData = results[2] || defaultData;
ipv4Data.data.forEach(function(item) {
const mac = hostInfo[item.ip];
if (mac) {
item.mac = mac;
item.hostname = hostNames[mac];
}
});
macData.data.forEach(function(item) {
const mac = item.mac;
if (mac) {
item.hostname = hostNames[mac];
}
});
self.renderHostSpeed(ipv4Data, "ipv4");
self.renderHostSpeed(ipv6Data, "ipv6");
self.renderHostSpeed(macData, "mac");
lastUpdated = new Date();
var timestampEl = document.getElementById('display-last-updated');
if (timestampEl) {
timestampEl.textContent = _('Last updated: %s').format(lastUpdated.toLocaleTimeString());
}
} catch (e) {
console.error('Error polling data:', e);
}
},
pollData: function() {
poll.add(L.bind(async function() {
if (isPaused) return;
await this.loadHostNames();
await this.loadHostSpeedData();
}, this), 5);
},
resizeAllCharts: function() {
['ipv4', 'ipv6', 'mac'].forEach(function(type) {
if (downloadLineChart[type])
downloadLineChart[type].resize();
if (uploadLineChart[type])
uploadLineChart[type].resize();
});
Object.keys(chartRegistry).forEach(function(chartId) {
if (chartRegistry[chartId])
chartRegistry[chartId].resize();
});
},
bindTabChartResize: function(root) {
var self = this;
if (!root)
return;
var host = root.parentNode || root;
if (host._awTabResizeBound)
return;
host._awTabResizeBound = true;
var schedule = function() {
setTimeout(function() { self.resizeAllCharts(); }, 80);
};
host.addEventListener('click', function(ev) {
if (ev.target.closest && ev.target.closest('ul.cbi-tabmenu'))
schedule();
});
root.querySelectorAll('[data-tab]').forEach(function(pane) {
pane.addEventListener('cbi-tab-active', schedule);
});
},
// --- UI Rendering and Interaction (New structure based on l7.js) ---
pie: function(id, data, valueFormatter) {
var total = data.reduce(function(n, d) { return n + d.value; }, 0);
data.sort(function(a, b) { return b.value - a.value; });
if (total === 0) {
data = [{ value: 1, color: '#cccccc', name: _('no traffic') }];
}
data.forEach(function(d, i) {
if (!d.color) {
var hue = (i * 137.508) % 360;
d.color = 'hsl(' + hue + ', 75%, 55%)';
}
});
var colors = getChartColors();
var option = {
backgroundColor: colors.background,
textStyle: { color: colors.text },
tooltip: {
trigger: 'item',
backgroundColor: colors.tooltipBg,
borderColor: colors.tooltipBorder,
textStyle: { color: colors.tooltipText },
formatter: function(params) {
if (valueFormatter) {
// 将 ECharts params 对象转换为自定义格式
return valueFormatter({
name: params.name,
value: params.value,
percent: params.percent.toFixed(2)
});
}
return params.name + ': ' + params.value + ' (' + params.percent.toFixed(2) + '%)';
}
},
series: [{
type: 'pie',
radius: ['25%', '80%'],
avoidLabelOverlap: false,
padAngle: 10,
itemStyle: { borderRadius: 10, borderColor: colors.pieBorder, borderWidth: 2 },
label: { show: false, position: 'center', color: colors.text },
emphasis: { label: { show: true, fontSize: 14, fontWeight: 'bold', color: colors.text } },
labelLine: { show: false },
data: data.map(function(d) {
return { value: d.value, name: d.label || d.name, itemStyle: { color: d.color } };
})
}]
};
var dom = typeof id === 'string' ? document.getElementById(id) : id;
if (!chartRegistry[id]) {
chartRegistry[id] = echarts.init(dom);
observeChartEl(chartRegistry[id], dom);
}
chartRegistry[id].setOption(option, true);
return chartRegistry[id];
},
updateStackedLineCharts: function(type, perHostDownload, perHostUpload) {
var now = new Date().toLocaleTimeString();
lineCategories[type].push(now);
lineCategories[type].shift();
var processChartData = function(seriesData, perHostData) {
var allHosts = Object.keys(seriesData);
Object.keys(perHostData).forEach(function(host) {
if (allHosts.indexOf(host) === -1) {
allHosts.push(host);
}
});
allHosts.forEach(function(host) {
if (!seriesData[host]) {
seriesData[host] = Array(59).fill(0);
}
var rate = perHostData[host] || 0;
seriesData[host].push(rate);
seriesData[host].shift();
});
return Object.keys(seriesData).map(function(host, index) {
var color = colorPalette[index % colorPalette.length];
return {
name: host,
type: 'line',
stack: 'Total',
smooth: true,
lineStyle: { width: 1, color: color },
showSymbol: false,
itemStyle: { color: color },
areaStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: hexToRgba(color, 0.5) },
{ offset: 1, color: hexToRgba(color, 0) }
])
},
data: seriesData[host]
};
});
};
var downloadChartSeries = processChartData(downloadSeriesData[type], perHostDownload);
var uploadChartSeries = processChartData(uploadSeriesData[type], perHostUpload);
var legendData = downloadChartSeries.map(function(s) { return s.name; });
var colors = getChartColors();
if (downloadLineChart[type]) {
downloadLineChart[type].setOption({
legend: { data: legendData, type: 'scroll', top: 0, left: 'center', textStyle: { color: colors.text } },
series: downloadChartSeries,
xAxis: { data: lineCategories[type] }
});
}
if (uploadLineChart[type]) {
uploadLineChart[type].setOption({
legend: { data: legendData, type: 'scroll', top: 0, left: 'center', textStyle: { color: colors.text } },
series: uploadChartSeries,
xAxis: { data: lineCategories[type] }
});
}
},
renderHostSpeed: function(data, type) {
if (!data || data.status !== "success" || !Array.isArray(data.data)) return;
var rows = [];
var txRateData = [], rxRateData = [];
var txVolumeData = [], rxVolumeData = [];
var tx_rate_total = 0, rx_rate_total = 0;
var tx_bytes_total = 0, rx_bytes_total = 0;
var perHostTxRate = {};
var perHostRxRate = {};
data.data.forEach(item => {
if (!item || !item.incoming || !item.outgoing) return;
var host = item.ip || item.mac || '';
var hostname = item.hostname || hostNames[item.mac] || '';
var displayName = hostname || host;
// 判断连接是否活跃
var isActive = item.incoming.rate > 0 || item.outgoing.rate > 0;
var activityIcon = isActive ? '🟢' : '⚪';
rows.push([
E('span', { 'class': 'host-cell' }, [
E('span', { 'class': 'activity-indicator', 'title': isActive ? _('Active') : _('Inactive') }, activityIcon),
E('span', {}, ' ' + host)
]),
E('span', { 'class': 'hostname-cell' }, [
E('span', { 'class': 'icon' }, hostname ? '👤' : '❓'),
E('span', {}, ' ' + (hostname || _('Unknown')))
]),
E('span', { 'class': 'speed-cell download' }, [
E('span', { 'class': 'data-value' }, '%1024.2mBps'.format(item.incoming.rate))
]),
E('span', { 'class': 'volume-cell download' }, [
E('span', { 'class': 'data-value' }, '%1024.2mB'.format(item.incoming.total_bytes))
]),
E('span', { 'class': 'packet-cell download' }, [
E('span', { 'class': 'data-value' }, '%1000.2mP'.format(item.incoming.total_packets))
]),
E('span', { 'class': 'speed-cell upload' }, [
E('span', { 'class': 'data-value' }, '%1024.2mBps'.format(item.outgoing.rate))
]),
E('span', { 'class': 'volume-cell upload' }, [
E('span', { 'class': 'data-value' }, '%1024.2mB'.format(item.outgoing.total_bytes))
]),
E('span', { 'class': 'packet-cell upload' }, [
E('span', { 'class': 'data-value' }, '%1000.2mP'.format(item.outgoing.total_packets))
]),
E('div', { 'class': 'button-container' }, [
E('button', {
'class': 'btn cbi-button cbi-button-edit',
'style': 'margin-right: 5px;',
'click': ui.createHandlerFn(this, () => this.handleEditSpeed(host, item.mac, hostname, type))
}, [
E('span', { 'class': 'btn-icon' }, '✏️'),
E('span', {}, ' ' + _('Edit'))
]),
E('button', {
'class': 'btn cbi-button cbi-button-remove',
'click': ui.createHandlerFn(this, () => this.handleDeleteHost(host, type))
}, [
E('span', { 'class': 'btn-icon' }, '🗑️'),
E('span', {}, ' ' + _('Delete'))
])
])
]);
rx_rate_total += item.outgoing.rate;
tx_rate_total += item.incoming.rate;
rx_bytes_total += item.outgoing.total_bytes;
tx_bytes_total += item.incoming.total_bytes;
rxRateData.push({ value: item.outgoing.rate, label: displayName });
txRateData.push({ value: item.incoming.rate, label: displayName });
rxVolumeData.push({ value: item.outgoing.total_bytes, label: displayName });
txVolumeData.push({ value: item.incoming.total_bytes, label: displayName });
perHostTxRate[displayName] = (perHostTxRate[displayName] || 0) + item.incoming.rate;
perHostRxRate[displayName] = (perHostRxRate[displayName] || 0) + item.outgoing.rate;
});
this.updateStackedLineCharts(type, perHostTxRate, perHostRxRate);
var table = document.getElementById(type + '-speed-data');
cbi_update_table(table, rows, E('em', _('No data recorded yet.')));
this.pie(type + '-tx-rate-pie', txRateData, (p) => `${p.name}: ${'%1024.2mBps'.format(p.value)} (${p.percent}%)`);
this.pie(type + '-rx-rate-pie', rxRateData, (p) => `${p.name}: ${'%1024.2mBps'.format(p.value)} (${p.percent}%)`);
this.pie(type + '-tx-volume-pie', txVolumeData, (p) => `${p.name}: ${'%1024.2mB'.format(p.value)} (${p.percent}%)`);
this.pie(type + '-rx-volume-pie', rxVolumeData, (p) => `${p.name}: ${'%1024.2mB'.format(p.value)} (${p.percent}%)`);
var hostEl = document.getElementById(type + '-host-val');
if (hostEl) hostEl.textContent = data.data.length;
var txRateEl = document.getElementById(type + '-tx-rate-val');
if (txRateEl) txRateEl.textContent = '%1024.2mBps'.format(tx_rate_total);
var rxRateEl = document.getElementById(type + '-rx-rate-val');
if (rxRateEl) rxRateEl.textContent = '%1024.2mBps'.format(rx_rate_total);
var txVolEl = document.getElementById(type + '-tx-volume-val');
if (txVolEl) txVolEl.textContent = '%1024.2mB'.format(tx_bytes_total);
var rxVolEl = document.getElementById(type + '-rx-volume-val');
if (rxVolEl) rxVolEl.textContent = '%1024.2mB'.format(rx_bytes_total);
},
// --- Interaction Handlers from display.js ---
handleDeleteHost: function(host, type) {
ui.showModal(_('Delete Host'), [
E('p', _('Are you sure you want to delete this host?')),
E('div', { 'class': 'right' }, [
E('button', { 'class': 'btn', 'click': ui.hideModal }, _('Cancel')),
E('button', { 'class': 'btn cbi-button-negative', 'click': ui.createHandlerFn(this, async () => {
try {
await fs.exec_direct('/usr/bin/aw-bpfctl', [type, 'del', host], 'text');
this.loadHostSpeedData();
ui.hideModal();
} catch (e) {
ui.addNotification(null, E('p', _('Error: ') + e.message));
ui.hideModal();
}
})}, _('Delete'))
])
]);
},
handleEditSpeed: function(host, mac, hostname, type) {
fs.exec_direct('/usr/bin/aw-bpfctl', [type, 'json'], 'json').then(L.bind(res => {
let rate_limit_dl = 0, rate_limit_ul = 0;
if (res && res.status === 'success' && Array.isArray(res.data)) {
const item = res.data.find(d => (d.ip === host || d.mac === host));
if (item) {
rate_limit_dl = (item.incoming.incoming_rate_limit || 0) / 1024 / 1024;
rate_limit_ul = (item.outgoing.outgoing_rate_limit || 0) / 1024 / 1024;
}
}
this.displaySpeedLimitDialog(host, mac, hostname, type, rate_limit_dl, rate_limit_ul);
}, this)).catch(e => {
console.error('Error getting speed limit:', e);
this.displaySpeedLimitDialog(host, mac, hostname, type, 0, 0);
});
},
displaySpeedLimitDialog: function(host, mac, hostname, type, dl, ul) {
const inputDom = E('input', { type: 'text', id: 'host-name', class: 'cbi-input-text', value: hostname, disabled: !mac });
ui.showModal(_('Edit Speed Limit'), [
E('div', { 'class': 'form-group' }, [ E('label', { 'class': 'form-label' }, _('Host')), E('span',{}, host) ]),
E('div', { 'class': 'form-group' }, [ E('label', { 'class': 'form-label' }, _('Hostname')), inputDom ]),
E('div', { 'class': 'form-group' }, [
E('label', { 'class': 'form-label' }, _('Download Limit')),
E('input', { type: 'number', id: 'dl-rate', class: 'cbi-input-number', min: '0', value: dl }),
E('span',{}, " Mbps")
]),
E('div', { 'class': 'form-group' }, [
E('label', { 'class': 'form-label' }, _('Upload Limit')),
E('input', { type: 'number', id: 'ul-rate', class: 'cbi-input-number', min: '0', value: ul }),
E('span',{}, " Mbps")
]),
E('div', { 'class': 'cbi-page-actions right' }, [
E('button', { 'class': 'btn cbi-button cbi-button-neutral', 'click': ui.hideModal }, _('Cancel')),
E('button', { 'class': 'btn cbi-button cbi-button-positive', 'click': ui.createHandlerFn(this, async ev => {
const dl_val = document.getElementById('dl-rate').value;
const ul_val = document.getElementById('ul-rate').value;
const newName = document.getElementById('host-name').value;
try {
if (mac && newName !== hostname) {
hostNames[mac] = newName;
await uci.set('hostnames', hostNameMacSectionId, mac.split(':').join('_'), newName);
await uci.save('hostnames');
await uci.apply('hostnames');
}
await fs.exec_direct('/usr/bin/aw-bpfctl', [type, 'update', host, "downrate", dl_val*1024*1024 || '0', "uprate", ul_val*1024*1024 || '0']);
this.loadHostSpeedData();
ui.addNotification(null, E('p',_('Speed limit updated')));
ui.hideModal();
} catch (e) {
ui.addNotification(null, E('p', _('Error: ') + e.message));
}
})}, _('Save'))
])
]);
},
validateData: function(value, type) {
if (typeof value !== 'string') return false;
const ipv4Regex = /^((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)\.){3}(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)$/;
const ipv6Regex = /^([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$|^(([0-9a-fA-F]{1,4}:){0,6}::([0-9a-fA-F]{1,4}:){0,6}[0-9a-fA-F]{1,4})$/i;
const macRegex = /^([0-9A-Fa-f]{2}([-:]))([0-9A-Fa-f]{2}\2){4}[0-9A-Fa-f]{2}$|^([0-9A-Fa-f]{12})$/i;
return (type === 'ipv4') ? ipv4Regex.test(value) : (type === 'ipv6') ? ipv6Regex.test(value) : macRegex.test(value);
},
createAddControls: function(type, placeholder) {
const input = E('input', {
type: 'text',
class: 'cbi-input-text control-input',
style: (type === 'ipv6') ? 'width:320px' : 'width:180px',
placeholder: _(placeholder)
});
const addBtn = E('button', {
class: 'btn cbi-button cbi-button-add',
disabled: true
}, [
E('span', { 'class': 'btn-icon' }, ''),
E('span', {}, ' ' + _('Add'))
]);
const refreshBtn = E('button', {
class: 'btn cbi-button cbi-button-action',
click: () => this.loadHostSpeedData()
}, [
E('span', { 'class': 'btn-icon' }, '🔄'),
E('span', {}, ' ' + _('Refresh'))
]);
input.addEventListener('input', () => { addBtn.disabled = (input.value.trim() === ''); });
addBtn.addEventListener('click', ui.createHandlerFn(this, async () => {
const value = input.value.trim();
if (!this.validateData(value, type)) {
return ui.addNotification(null, E('p', _('Data format error')));
}
try {
await fs.exec_direct('/usr/bin/aw-bpfctl', [type, 'add', value]);
this.loadHostSpeedData();
ui.addNotification(null, E('p',_('Updated successfully!')));
input.value = '';
addBtn.disabled = true;
} catch (e) {
ui.addNotification(null, E('p', _('Error: ') + e.message));
}
}));
return E('div', { 'class': 'display-controls' }, [
E('div', { 'class': 'control-group' }, [
E('span', { 'class': 'control-icon' }, '🖥️'),
E('label', { 'class': 'control-label' }, _('Add Host:')),
input
]),
E('div', { 'class': 'control-buttons' }, [
addBtn,
refreshBtn,
E('div', { 'class': 'control-group status-group' }, [
E('span', { 'class': 'control-icon' }, '🕐'),
E('span', { 'id': 'display-last-updated', 'class': 'last-updated-text' }, _('Ready'))
])
])
]);
},
initializeUI: function() {
applyViewTheme();
if (window.echarts) {
var self = this;
var colors = getChartColors();
var axisTheme = chartAxisTheme(colors);
['ipv4', 'ipv6', 'mac'].forEach(function(type) {
var dlChartEl = document.getElementById(type + '-download-speed-line-chart');
var ulChartEl = document.getElementById(type + '-upload-speed-line-chart');
if (!dlChartEl || !ulChartEl) return;
var baseChartOption = {
backgroundColor: axisTheme.backgroundColor,
textStyle: axisTheme.textStyle,
legend: axisTheme.legend,
tooltip: Object.assign({
trigger: 'axis',
formatter: function (params) {
if (!params || params.length === 0) {
return null;
}
var tooltipContent = params[0].axisValueLabel + '<br/>';
params.sort(function(a, b) { return b.value - a.value; });
params.forEach(function(item) {
if (item.value > 0) {
tooltipContent += item.marker + ' ' + item.seriesName + ': ' + '%1024.2mBps'.format(item.value) + '<br/>';
}
});
return tooltipContent;
}
}, axisTheme.tooltip),
grid: { left: '3%', right: '4%', bottom: '10%', top: '50px', containLabel: true },
xAxis: {
type: 'category',
boundaryGap: false,
data: lineCategories[type],
axisLine: axisTheme.xAxis.axisLine,
axisLabel: axisTheme.xAxis.axisLabel,
splitLine: axisTheme.xAxis.splitLine
},
yAxis: {
type: 'value',
axisLine: axisTheme.yAxis.axisLine,
splitLine: axisTheme.yAxis.splitLine,
axisLabel: { formatter: function(val) { return '%1024.2mBps'.format(val); }, color: colors.muted }
},
series: []
};
downloadLineChart[type] = echarts.init(dlChartEl);
downloadLineChart[type].setOption(baseChartOption);
observeChartEl(downloadLineChart[type], dlChartEl);
uploadLineChart[type] = echarts.init(ulChartEl);
uploadLineChart[type].setOption(baseChartOption);
observeChartEl(uploadLineChart[type], ulChartEl);
});
// 添加窗口大小变化监听器,使图表能够响应式调整
if (!resizeListenerAdded) {
var resizeTimer = null;
var resizeHandler = function() {
// 使用防抖,避免频繁触发 resize
if (resizeTimer) {
clearTimeout(resizeTimer);
}
resizeTimer = setTimeout(function() {
self.resizeAllCharts();
}, 200);
};
window.addEventListener('resize', resizeHandler);
resizeListenerAdded = true;
}
this.pollData();
} else {
setTimeout(this.initializeUI.bind(this), 50);
}
},
// --- Main Render Function (New) ---
render: function() {
var self = this;
const createTab = (type, title, placeholder) => {
var innerTabs = E('div', { 'class': 'aw-inner-tabs' }, [
E('div', { 'class': 'cbi-section', 'data-tab': type + '-trend', 'data-tab-title': _('Speed Trend') }, [
E('div', { 'class': 'dashboard-container' }, [
E('div', { 'class': 'kpi-row' }, [
E('div', { 'class': 'kpi-card' }, [ E('big', { id: type + '-host-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('Hosts')) ]),
E('div', { 'class': 'kpi-card' }, [ E('big', { id: type + '-tx-rate-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('Download Speed')) ]),
E('div', { 'class': 'kpi-card' }, [ E('big', { id: type + '-rx-rate-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('Upload Speed')) ]),
E('div', { 'class': 'kpi-card' }, [ E('big', { id: type + '-tx-volume-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('Download Total')) ]),
E('div', { 'class': 'kpi-card' }, [ E('big', { id: type + '-rx-volume-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('Upload Total')) ])
]),
E('div', { 'class': 'line-chart-row' }, [
E('div', { 'class': 'chart-card' }, [
E('h4', [_('Real-time Download Speed')]),
E('div', { id: type + '-download-speed-line-chart', style: 'width: 100%; height: 350px;' })
]),
E('div', { 'class': 'chart-card' }, [
E('h4', [_('Real-time Upload Speed')]),
E('div', { id: type + '-upload-speed-line-chart', style: 'width: 100%; height: 350px;' })
])
])
])
]),
E('div', { 'class': 'cbi-section', 'data-tab': type + '-share', 'data-tab-title': _('Traffic Share') }, [
E('div', { 'class': 'dashboard-container' }, [
E('div', { 'class': 'chart-grid' }, [
E('div', { 'class': 'chart-card' }, [ E('h4', [_('Download Speed / Host')]), E('div', { id: type + '-tx-rate-pie', style: 'width:100%; height:300px;' }) ]),
E('div', { 'class': 'chart-card' }, [ E('h4', [_('Upload Speed / Host')]), E('div', { id: type + '-rx-rate-pie', style: 'width:100%; height:300px;' }) ]),
E('div', { 'class': 'chart-card' }, [ E('h4', [_('Download Total')]), E('div', { id: type + '-tx-volume-pie', style: 'width:100%; height:300px;' }) ]),
E('div', { 'class': 'chart-card' }, [ E('h4', [_('Upload Total')]), E('div', { id: type + '-rx-volume-pie', style: 'width:100%; height:300px;' }) ])
])
])
]),
E('div', { 'class': 'cbi-section', 'data-tab': type + '-hosts', 'data-tab-title': _('Host List') }, [
E('table', { 'class': 'table', 'id': type + '-speed-data' }, [
E('tr', { 'class': 'tr table-titles' }, [
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '🖥️'), ' ', _('Host') ]),
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '👤'), ' ', _('Hostname') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '⬇️'), ' ', _('Download Speed') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '📦'), ' ', _('Download Total') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '📨'), ' ', _('Download Packets') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '⬆️'), ' ', _('Upload Speed') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '📦'), ' ', _('Upload Total') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '📨'), ' ', _('Upload Packets') ]),
E('th', { 'class': 'th center' }, [ E('span', { 'class': 'th-icon' }, '⚙️'), ' ', _('Actions') ])
]),
E('tr', { 'class': 'tr placeholder' }, [ E('td', { 'class': 'td', 'colspan': '9' }, [ E('em', { 'class': 'spinning' }, [ _('Collecting data...') ]) ]) ])
]),
self.createAddControls(type, placeholder)
])
]);
return E('div', { 'class': 'cbi-section', 'data-tab': type, 'data-tab-title': _(title) }, [
innerTabs
]);
};
var tabContainer = E('div', {}, [
createTab('ipv4', 'IPv4', 'Please enter a valid IPv4 address'),
createTab('ipv6', 'IPv6', 'Please enter a valid IPv6 address'),
createTab('mac', 'MAC', 'Please enter a valid MAC address')
]);
var node = E([], [
E('link', { 'rel': 'stylesheet', 'href': L.resource('view/aw-bpf.css') }),
E('script', { 'type': 'text/javascript', 'src': L.resource('echarts.min.js') }),
E('div', { 'class': 'l7-view-container', 'data-aw-theme': isDarkMode() ? 'dark' : 'light' }, [
E('h2', [ _('Host Speed Monitor') ]),
tabContainer
])
]);
tabContainer.querySelectorAll('.aw-inner-tabs').forEach(function(inner) {
ui.tabs.initTabGroup(inner.childNodes);
});
ui.tabs.initTabGroup(tabContainer.childNodes);
this.bindTabChartResize(tabContainer);
setTimeout(() => this.initializeUI(), 0);
return node;
},
handleSave: null,
handleSaveApply: null,
handleReset: null
});
@@ -1,996 +0,0 @@
'use strict';
'require view';
'require fs';
'require ui';
'require poll';
'require rpc';
'require dom';
var chartRegistry = {};
var downloadLineChart, uploadLineChart;
// Data structures for stacked line charts
var lineCategories = [];
var downloadSeriesData = {};
var uploadSeriesData = {};
// Color palette for chart series
var colorPalette = ['#5470c6', '#91cc75', '#fac858', '#ee6666', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'];
var currentSortInfo = {
table: null,
column: null,
reverse: false
};
var sidLookupTable = {};
var isPaused = false;
var lastUpdated = null;
var pollActive = false;
var lastSIDData = null;
var lastL7ProtoData = null;
var resizeListenerAdded = false;
var resizeTimer = null;
// Pre-fill with 60 empty points for a smooth start
for (var i = 0; i < 60; i++) {
lineCategories.push('');
}
// Helper to convert hex to rgba
function hexToRgba(hex, opacity) {
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
return result ?
'rgba(' + parseInt(result[1], 16) + ', ' + parseInt(result[2], 16) + ', ' + parseInt(result[3], 16) + ', ' + opacity + ')' :
null;
};
function isDarkMode() {
var attr = document.documentElement.getAttribute('data-darkmode');
if (attr === 'true')
return true;
if (attr === 'false')
return false;
var bg = getComputedStyle(document.body).backgroundColor;
var m = bg && bg.match(/rgba?\((\d+),\s*(\d+),\s*(\d+)/);
if (m) {
var lum = (0.299 * m[1] + 0.587 * m[2] + 0.114 * m[3]) / 255;
return lum < 0.5;
}
return window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
}
function getChartColors() {
var dark = isDarkMode();
return {
background: 'transparent',
text: dark ? '#cccccc' : '#333333',
muted: dark ? '#adb5bd' : '#666666',
axis: dark ? 'rgba(255,255,255,0.28)' : 'rgba(0,0,0,0.25)',
split: dark ? 'rgba(255,255,255,0.08)' : 'rgba(0,0,0,0.08)',
pieBorder: dark ? '#252526' : '#ffffff',
tooltipBg: dark ? 'rgba(32,32,32,0.94)' : 'rgba(255,255,255,0.95)',
tooltipBorder: dark ? '#555555' : '#cccccc',
tooltipText: dark ? '#eeeeee' : '#333333'
};
}
function applyViewTheme() {
var theme = isDarkMode() ? 'dark' : 'light';
document.querySelectorAll('.l7-view-container, .display-view-container').forEach(function(el) {
el.setAttribute('data-aw-theme', theme);
});
return theme;
}
function observeChartEl(chart, el) {
if (!chart || !el || !window.ResizeObserver || el._awRo)
return;
el._awRo = new ResizeObserver(function() {
chart.resize();
});
el._awRo.observe(el);
}
function chartAxisTheme(colors) {
return {
backgroundColor: colors.background,
textStyle: { color: colors.text },
legend: { textStyle: { color: colors.text } },
tooltip: {
backgroundColor: colors.tooltipBg,
borderColor: colors.tooltipBorder,
textStyle: { color: colors.tooltipText }
},
xAxis: {
axisLine: { lineStyle: { color: colors.axis } },
axisLabel: { color: colors.muted },
splitLine: { show: false }
},
yAxis: {
axisLine: { lineStyle: { color: colors.axis } },
axisLabel: { color: colors.muted },
splitLine: { lineStyle: { color: colors.split } }
}
};
}
return view.extend({
hasXdns: false,
xdnsDomains: {},
load: function() {
return Promise.all([
this.loadSIDData(),
this.loadL7ProtoData(),
this.checkXdnsStatus()
]);
},
checkXdnsStatus: function() {
var self = this;
return fs.stat('/usr/bin/xdns-ctl').then(function(stat) {
if (stat && stat.type === 'file') {
self.hasXdns = true;
return fs.read_direct('/etc/xdns/whitelist.txt').then(function(content) {
var domains = {};
if (content) {
content.split('\n').forEach(function(line) {
line = line.trim();
if (!line || line.charAt(0) === '#') return;
if (line.indexOf('*.') === 0) line = line.substring(2);
if (line.charAt(0) === '.') line = line.substring(1);
domains[line.toLowerCase()] = true;
});
}
self.xdnsDomains = domains;
return true;
}).catch(function() {
self.xdnsDomains = {};
return true;
});
} else {
self.hasXdns = false;
return false;
}
}).catch(function() {
self.hasXdns = false;
return false;
});
},
isDomainProxied: function(dName) {
if (!dName || !this.xdnsDomains) return false;
dName = dName.toLowerCase();
if (this.xdnsDomains[dName]) return true;
var parts = dName.split('.');
for (var i = 1; i < parts.length - 1; i++) {
var parent = parts.slice(i).join('.');
if (this.xdnsDomains[parent]) return true;
}
return false;
},
handleAddXdnsDomain: function(domain, btn) {
var self = this;
if (!domain) return;
btn.disabled = true;
var origText = btn.textContent;
btn.textContent = _('添加中...');
fs.exec_direct('/usr/bin/xdns-ctl', ['add-domain', domain]).then(function() {
self.xdnsDomains[domain.toLowerCase()] = true;
ui.addNotification(null, E('p', _('域名「%s」已成功加入 xdns-bpf 代理名单并即刻生效!').format(domain)), 'info');
if (lastL7ProtoData) {
self.renderL7ProtoData(lastL7ProtoData);
}
}).catch(function(err) {
btn.disabled = false;
btn.textContent = origText;
ui.addNotification(null, E('p', _('加入代理名单失败: %s').format(err.message || err)), 'error');
});
},
showError: function(message) {
var errorEl = document.getElementById('l7-error-message');
if (errorEl) {
errorEl.textContent = message;
errorEl.style.display = 'block';
}
},
hideError: function() {
var errorEl = document.getElementById('l7-error-message');
if (errorEl) {
errorEl.style.display = 'none';
}
},
loadSIDData: function() {
var self = this;
return fs.exec_direct('/usr/bin/aw-bpfctl', ['sid', 'json'], 'json').then(function(result) {
self.hideError();
lastSIDData = result;
return result;
}).catch(function(error) {
console.error('Error loading SID data:', error);
self.showError(_('Error loading SID data: %s').format(error.message));
return { status: 'error', data: [] };
});
},
loadL7ProtoData: function() {
var self = this;
return fs.exec_direct('/usr/bin/aw-bpfctl', ['l7', 'json'], 'json').then(function(result) {
self.hideError();
return result;
}).catch(function(error) {
console.error('Error loading L7 protocol data:', error);
self.showError(_('Error loading L7 protocol data: %s').format(error.message));
return { status: 'error', data: [] };
});
},
updateStackedLineCharts: function(perServiceDownload, perServiceUpload) {
var now = new Date().toLocaleTimeString();
lineCategories.push(now);
lineCategories.shift();
var processChartData = function(seriesData, perServiceData) {
var allServices = Object.keys(seriesData);
Object.keys(perServiceData).forEach(function(service) {
if (allServices.indexOf(service) === -1) {
allServices.push(service);
}
});
allServices.forEach(function(service) {
if (!seriesData[service]) {
seriesData[service] = Array(59).fill(0);
}
var rate = perServiceData[service] || 0;
seriesData[service].push(rate);
seriesData[service].shift();
});
return Object.keys(seriesData).map(function(service, index) {
var color = colorPalette[index % colorPalette.length];
return {
name: service,
type: 'line',
stack: 'Total',
smooth: true,
lineStyle: { width: 1, color: color },
showSymbol: false,
itemStyle: { color: color },
areaStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: hexToRgba(color, 0.5) },
{ offset: 1, color: hexToRgba(color, 0) }
])
},
data: seriesData[service]
};
});
};
var downloadChartSeries = processChartData(downloadSeriesData, perServiceDownload);
var uploadChartSeries = processChartData(uploadSeriesData, perServiceUpload);
var legendData = downloadChartSeries.map(function(s) { return s.name; });
var colors = getChartColors();
if (downloadLineChart) {
downloadLineChart.setOption({
legend: { data: legendData, type: 'scroll', top: 0, left: 'center', textStyle: { color: colors.text } },
series: downloadChartSeries,
xAxis: { data: lineCategories }
});
}
if (uploadLineChart) {
uploadLineChart.setOption({
legend: { data: legendData, type: 'scroll', top: 0, left: 'center', textStyle: { color: colors.text } },
series: uploadChartSeries,
xAxis: { data: lineCategories }
});
}
},
pie: function(id, data, valueFormatter) {
var total = data.reduce(function(n, d) { return n + d.value; }, 0);
data.sort(function(a, b) { return b.value - a.value; });
if (total === 0) {
data = [{ value: 1, color: '#cccccc', name: _('no traffic') }];
}
data.forEach(function(d, i) {
if (!d.color) {
var hue = (i * 137.508) % 360;
d.color = 'hsl(' + hue + ', 75%, 55%)';
}
});
var colors = getChartColors();
var option = {
backgroundColor: colors.background,
textStyle: { color: colors.text },
tooltip: {
trigger: 'item',
backgroundColor: colors.tooltipBg,
borderColor: colors.tooltipBorder,
textStyle: { color: colors.tooltipText },
formatter: function(params) {
if (valueFormatter) {
// 将 ECharts params 对象转换为自定义格式
return valueFormatter({
name: params.name,
value: params.value,
percent: params.percent.toFixed(2)
});
}
return params.name + ': ' + params.value + ' (' + params.percent.toFixed(2) + '%)';
}
},
series: [{
type: 'pie',
radius: ['25%', '80%'],
avoidLabelOverlap: false,
padAngle: 10,
itemStyle: { borderRadius: 10, borderColor: colors.pieBorder, borderWidth: 2 },
label: { show: false, position: 'center', color: colors.text },
emphasis: { label: { show: true, fontSize: 14, fontWeight: 'bold', color: colors.text } },
labelLine: { show: false },
data: data.map(function(d) {
return { value: d.value, name: d.label || d.name, itemStyle: { color: d.color } };
})
}]
};
var dom = typeof id === 'string' ? document.getElementById(id) : id;
if (!chartRegistry[id]) {
chartRegistry[id] = echarts.init(dom);
observeChartEl(chartRegistry[id], dom);
}
chartRegistry[id].setOption(option, true);
return chartRegistry[id];
},
sortTable: function(table, column) {
var tbody = table.querySelector('tbody');
if (!tbody) return;
var rows = Array.from(tbody.querySelectorAll('tr:not(.table-titles):not(.placeholder)'));
var reverse = (currentSortInfo.table === table && currentSortInfo.column === column) ? !currentSortInfo.reverse : false;
table.querySelectorAll('th').forEach(function(th) {
th.classList.remove('th-sort-asc', 'th-sort-desc');
});
var th = table.querySelector('th:nth-child(' + (column + 1) + ')');
th.classList.add(reverse ? 'th-sort-desc' : 'th-sort-asc');
rows.sort(function(row1, row2) {
var a = row1.cells[column].getAttribute('data-value') || row1.cells[column].textContent;
var b = row2.cells[column].getAttribute('data-value') || row2.cells[column].textContent;
if (!isNaN(a) && !isNaN(b)) { a = Number(a); b = Number(b); }
if (a < b) return reverse ? 1 : -1;
if (a > b) return reverse ? -1 : 1;
return 0;
});
currentSortInfo.table = table;
currentSortInfo.column = column;
currentSortInfo.reverse = reverse;
rows.forEach(function(row) { tbody.removeChild(row); });
rows.forEach(function(row) { tbody.appendChild(row); });
},
formatMbps: function(bits) {
if (typeof bits !== 'number') return '0.00 Mbps';
return (bits / 1024 / 1024).toFixed(2) + ' Mbps';
},
formatMB: function(bytes) {
if (typeof bytes !== 'number') return '0.00 MB';
return (bytes / 1024 / 1024).toFixed(2) + ' MB';
},
renderSIDData: function(data) {
var rows = [];
var txRateData = [], rxRateData = [];
var txVolumeData = [], rxVolumeData = [];
var tx_rate_total = 0, rx_rate_total = 0;
var tx_bytes_total = 0, rx_bytes_total = 0;
var perServiceTxRate = {};
var perServiceRxRate = {};
var self = this;
var allItems = [];
if (data && data.status === 'success' && Array.isArray(data.data)) {
allItems = data.data;
var listSizeEl = document.getElementById('sid-size-select');
var listSize = listSizeEl ? parseInt(listSizeEl.value, 10) : 10;
var activeConnections = allItems.filter(function(item) { return item.incoming.rate > 0 || item.outgoing.rate > 0; });
var inactiveConnections = allItems.filter(function(item) { return item.incoming.rate === 0 && item.outgoing.rate === 0; });
activeConnections.sort(function(a, b) { return (b.incoming.rate + b.outgoing.rate) - (a.incoming.rate + a.outgoing.rate); });
inactiveConnections.sort(function(a, b) { return b.incoming.total_bytes - a.incoming.total_bytes; });
var displayData = activeConnections;
if (displayData.length < listSize) {
displayData = displayData.concat(inactiveConnections.slice(0, listSize - displayData.length));
}
if (displayData.length > listSize) {
displayData = displayData.slice(0, listSize);
}
displayData.forEach(function(item) {
var domainOrL7Proto = 'unknown';
var lookupInfo = sidLookupTable[item.sid];
if (lookupInfo) {
domainOrL7Proto = lookupInfo.name;
} else if (item.sid_type === 'Domain' && item.domain && item.domain !== 'unknown') {
domainOrL7Proto = item.domain;
} else if (item.sid_type === 'L7' && item.l7_proto_desc && item.l7_proto_desc !== 'unknown') {
domainOrL7Proto = item.l7_proto_desc;
}
// 判断连接是否活跃
var isActive = item.incoming.rate > 0 || item.outgoing.rate > 0;
var activityIcon = isActive ? '🟢' : '⚪';
rows.push([
E('span', { 'class': 'sid-cell' }, [
E('span', { 'class': 'activity-indicator', 'title': isActive ? _('Active') : _('Inactive') }, activityIcon),
E('span', {}, ' ' + item.sid)
]),
E('span', { 'class': 'protocol-cell' }, [
E('span', { 'class': 'protocol-icon' }, '🌐'),
E('span', {}, ' ' + domainOrL7Proto)
]),
[ item.incoming.rate, E('span', { 'class': 'speed-cell download' }, [
E('span', { 'class': 'data-value' }, '%1024.2mbps'.format(item.incoming.rate))
])],
[ item.incoming.total_bytes, E('span', { 'class': 'volume-cell download' }, [
E('span', { 'class': 'data-value' }, '%1024.2mB'.format(item.incoming.total_bytes))
])],
[ item.incoming.total_packets, E('span', { 'class': 'packet-cell download' }, [
E('span', { 'class': 'data-value' }, '%1000.2mP'.format(item.incoming.total_packets))
])],
[ item.outgoing.rate, E('span', { 'class': 'speed-cell upload' }, [
E('span', { 'class': 'data-value' }, '%1024.2mbps'.format(item.outgoing.rate))
])],
[ item.outgoing.total_bytes, E('span', { 'class': 'volume-cell upload' }, [
E('span', { 'class': 'data-value' }, '%1024.2mB'.format(item.outgoing.total_bytes))
])],
[ item.outgoing.total_packets, E('span', { 'class': 'packet-cell upload' }, [
E('span', { 'class': 'data-value' }, '%1000.2mP'.format(item.outgoing.total_packets))
])]
]);
txRateData.push({ value: item.incoming.rate, label: domainOrL7Proto });
rxRateData.push({ value: item.outgoing.rate, label: domainOrL7Proto });
txVolumeData.push({ value: item.incoming.total_bytes, label: domainOrL7Proto });
rxVolumeData.push({ value: item.outgoing.total_bytes, label: domainOrL7Proto });
perServiceTxRate[domainOrL7Proto] = (perServiceTxRate[domainOrL7Proto] || 0) + item.incoming.rate;
perServiceRxRate[domainOrL7Proto] = (perServiceRxRate[domainOrL7Proto] || 0) + item.outgoing.rate;
});
allItems.forEach(function(item) {
tx_rate_total += item.incoming.rate;
rx_rate_total += item.outgoing.rate;
tx_bytes_total += item.incoming.total_bytes;
rx_bytes_total += item.outgoing.total_bytes;
});
}
this.updateStackedLineCharts(perServiceTxRate, perServiceRxRate);
var table = document.getElementById('sid-data');
cbi_update_table(table, rows, E('em', _('No data recorded yet.')));
var headers = table.querySelectorAll('th');
if (!table.hasAttribute('data-sort-initialized')) {
headers.forEach(function(header, index) {
header.style.cursor = 'pointer';
header.addEventListener('click', function() { self.sortTable(table, index); });
});
table.setAttribute('data-sort-initialized', 'true');
}
table.querySelectorAll('tr:not(.table-titles):not(.placeholder)').forEach(function(row, rowIndex) {
if (!rows[rowIndex]) return;
Array.from(row.cells).forEach(function(cell, cellIndex) {
if (Array.isArray(rows[rowIndex][cellIndex])) {
cell.setAttribute('data-value', rows[rowIndex][cellIndex][0]);
}
});
});
this.pie('sid-tx-rate-pie', txRateData, function(p) { return p.name + ': ' + self.formatMbps(p.value) + ' (' + p.percent + '%)'; });
this.pie('sid-rx-rate-pie', rxRateData, function(p) { return p.name + ': ' + self.formatMbps(p.value) + ' (' + p.percent + '%)'; });
this.pie('sid-tx-volume-pie', txVolumeData, function(p) { return p.name + ': ' + self.formatMB(p.value) + ' (' + p.percent + '%)'; });
this.pie('sid-rx-volume-pie', rxVolumeData, function(p) { return p.name + ': ' + self.formatMB(p.value) + ' (' + p.percent + '%)'; });
var sidTotalEl = document.getElementById('sid-total-val');
if(sidTotalEl) sidTotalEl.textContent = allItems.length;
var txRateEl = document.getElementById('sid-tx-rate-val');
if(txRateEl) txRateEl.textContent = '%1024.2mbps'.format(tx_rate_total);
var rxRateEl = document.getElementById('sid-rx-rate-val');
if(rxRateEl) rxRateEl.textContent = '%1024.2mbps'.format(rx_rate_total);
var txVolEl = document.getElementById('sid-tx-volume-val');
if(txVolEl) txVolEl.textContent = '%1024.2mB'.format(tx_bytes_total);
var rxVolEl = document.getElementById('sid-rx-volume-val');
if(rxVolEl) rxVolEl.textContent = '%1024.2mB'.format(rx_bytes_total);
lastUpdated = new Date();
var timestampEl = document.getElementById('last-updated');
if (timestampEl) {
timestampEl.textContent = _('Last updated: %s').format(lastUpdated.toLocaleTimeString());
}
},
fillSortableTable: function(tableId, rows) {
var table = document.getElementById(tableId);
var self = this;
if (!table)
return;
if (!table.hasAttribute('data-sort-initialized')) {
table.querySelectorAll('th').forEach(function(header, index) {
header.style.cursor = 'pointer';
header.addEventListener('click', function() { self.sortTable(table, index); });
});
table.setAttribute('data-sort-initialized', 'true');
}
cbi_update_table(table, rows, E('em', _('No data recorded yet.')));
table.querySelectorAll('tr:not(.table-titles):not(.placeholder)').forEach(function(row, rowIndex) {
if (!rows[rowIndex])
return;
Array.from(row.cells).forEach(function(cell, cellIndex) {
if (Array.isArray(rows[rowIndex][cellIndex]))
cell.setAttribute('data-value', rows[rowIndex][cellIndex][0]);
});
});
},
renderL7ProtoData: function(data) {
var self = this;
var protoRows = [];
var domainRows = [];
lastL7ProtoData = data;
sidLookupTable = {};
if (data && data.status === 'success' && data.data) {
if (Array.isArray(data.data.protocols)) {
data.data.protocols.forEach(function(item) {
sidLookupTable[item.sid] = { type: 'protocol', name: item.protocol };
protoRows.push([
[ item.id, E('span', { 'class': 'id-cell' }, item.id) ],
E('span', { 'class': 'protocol-cell' }, [
E('span', { 'class': 'protocol-icon l7' }, '🔌'),
E('span', {}, ' ' + item.protocol)
]),
[ item.sid, E('span', { 'class': 'sid-cell' }, item.sid) ]
]);
});
}
if (Array.isArray(data.data.domains)) {
var domains = data.data.domains.slice().sort(function(a, b) {
var ac = (b.access_count || 0) - (a.access_count || 0);
if (ac !== 0)
return ac;
return (b.last_access || 0) - (a.last_access || 0);
});
domains.forEach(function(item) {
sidLookupTable[item.sid] = { type: 'domain', name: item.domain };
var row = [
[ item.id, E('span', { 'class': 'id-cell' }, item.id) ],
E('span', { 'class': 'protocol-cell' }, [
E('span', { 'class': 'protocol-icon domain' }, '🌍'),
E('span', {}, ' ' + item.domain)
]),
[ item.sid, E('span', { 'class': 'sid-cell' }, item.sid) ],
[ item.access_count || 0, E('span', { 'class': 'data-value' }, item.access_count || 0) ],
item.first_seen_str || '-',
item.last_access_str || '-'
];
if (self.hasXdns) {
var isProxied = self.isDomainProxied(item.domain);
if (isProxied) {
row.push(E('span', {
'class': 'badge success',
'style': 'color: #2ecc71; background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.3); padding: 2px 8px; border-radius: 4px; font-size: 85%; white-space: nowrap;'
}, [ '✔ ', _('已代理') ]));
} else {
row.push(E('button', {
'class': 'btn cbi-button cbi-button-action',
'style': 'padding: 2px 8px; font-size: 85%; white-space: nowrap;',
'click': function(ev) {
var b = ev.target.closest('button');
self.handleAddXdnsDomain(item.domain, b);
}
}, [ ' ', _('加入代理') ]));
}
}
domainRows.push(row);
});
}
}
this.fillSortableTable('l7-protocol-data', protoRows);
this.fillSortableTable('l7-domain-data', domainRows);
var protoCountEl = document.getElementById('l7-protocol-count');
if (protoCountEl)
protoCountEl.textContent = protoRows.length;
var domainCountEl = document.getElementById('l7-domain-count');
if (domainCountEl)
domainCountEl.textContent = domainRows.length;
},
pollL7Data: function() {
if (pollActive) return;
var self = this;
pollActive = true;
self.loadL7ProtoData().then(function(l7data) {
self.renderL7ProtoData(l7data);
return self.loadSIDData();
}).then(function(sidData){
self.renderSIDData(sidData);
});
poll.add(function() {
if (isPaused) return Promise.resolve();
return self.loadL7ProtoData().then(function(data) {
self.renderL7ProtoData(data);
}).then(function() {
return self.loadSIDData().then(function(data) {
self.renderSIDData(data);
});
});
}, 5);
},
initializeUI: function() {
applyViewTheme();
if (window.echarts) {
var self = this;
var dlChartEl = document.getElementById('download-speed-line-chart');
var ulChartEl = document.getElementById('upload-speed-line-chart');
if (!dlChartEl || !ulChartEl) return;
var colors = getChartColors();
var axisTheme = chartAxisTheme(colors);
var baseChartOption = {
backgroundColor: axisTheme.backgroundColor,
textStyle: axisTheme.textStyle,
legend: axisTheme.legend,
tooltip: Object.assign({
trigger: 'axis',
formatter: function (params) {
if (!params || params.length === 0) {
return null;
}
var tooltipContent = params[0].axisValueLabel + '<br/>';
params.sort(function(a, b) { return b.value - a.value; });
params.forEach(function(item) {
if (item.value > 0) {
tooltipContent += item.marker + ' ' + item.seriesName + ': ' + '%1024.2mbps'.format(item.value) + '<br/>';
}
});
return tooltipContent;
}
}, axisTheme.tooltip),
grid: { left: '3%', right: '4%', bottom: '10%', top: '50px', containLabel: true },
xAxis: {
type: 'category',
boundaryGap: false,
data: lineCategories,
axisLine: axisTheme.xAxis.axisLine,
axisLabel: axisTheme.xAxis.axisLabel,
splitLine: axisTheme.xAxis.splitLine
},
yAxis: {
type: 'value',
axisLine: axisTheme.yAxis.axisLine,
splitLine: axisTheme.yAxis.splitLine,
axisLabel: { formatter: function(val) { return '%1024.2mbps'.format(val); }, color: colors.muted }
},
series: []
};
downloadLineChart = echarts.init(dlChartEl);
downloadLineChart.setOption(baseChartOption);
observeChartEl(downloadLineChart, dlChartEl);
uploadLineChart = echarts.init(ulChartEl);
uploadLineChart.setOption(baseChartOption);
observeChartEl(uploadLineChart, ulChartEl);
// 添加窗口大小变化监听器,使图表能够响应式调整
if (!resizeListenerAdded) {
var resizeTimer = null;
var resizeHandler = function() {
// 使用防抖,避免频繁触发 resize
if (resizeTimer) {
clearTimeout(resizeTimer);
}
resizeTimer = setTimeout(function() {
self.resizeAllCharts();
}, 200);
};
window.addEventListener('resize', resizeHandler);
resizeListenerAdded = true;
}
this.pollL7Data();
} else {
setTimeout(this.initializeUI.bind(this), 50);
}
},
resizeAllCharts: function() {
if (downloadLineChart)
downloadLineChart.resize();
if (uploadLineChart)
uploadLineChart.resize();
Object.keys(chartRegistry).forEach(function(chartId) {
if (chartRegistry[chartId])
chartRegistry[chartId].resize();
});
},
bindTabChartResize: function(root) {
var self = this;
if (!root)
return;
var host = root.parentNode || root;
if (host._awTabResizeBound)
return;
host._awTabResizeBound = true;
var schedule = function() {
setTimeout(function() { self.resizeAllCharts(); }, 80);
};
host.addEventListener('click', function(ev) {
if (ev.target.closest && ev.target.closest('ul.cbi-tabmenu'))
schedule();
});
root.querySelectorAll('[data-tab]').forEach(function(pane) {
pane.addEventListener('cbi-tab-active', schedule);
});
},
render: function() {
var self = this;
var controls = E('div', { 'class': 'l7-controls' }, [
E('div', { 'class': 'l7-controls-left' }, [
E('div', { 'class': 'control-group' }, [
E('span', { 'class': 'control-icon' }, '📊'),
E('label', { 'for': 'sid-size-select', 'class': 'control-label' }, _('Show entries:')),
E('select', {
'id': 'sid-size-select',
'class': 'cbi-input-select',
'change': ui.createHandlerFn(this, function() {
if (lastSIDData) {
self.renderSIDData(lastSIDData);
}
})
}, [
E('option', { 'value': '10' }, '10'),
E('option', { 'value': '15' }, '15'),
E('option', { 'value': '20' }, '20'),
E('option', { 'value': '25' }, '25'),
E('option', { 'value': '50' }, '50')
])
])
]),
E('div', { 'class': 'l7-controls-right' }, [
E('div', { 'class': 'control-group' }, [
E('span', { 'class': 'control-icon' }, '🕐'),
E('span', { 'id': 'last-updated', 'class': 'last-updated-text' }, _('Last updated: never'))
]),
E('button', {
'class': 'cbi-button cbi-button-action',
'id': 'pause-resume-btn',
'click': function(ev) {
isPaused = !isPaused;
var btn = ev.target;
if (isPaused) {
btn.innerHTML = '<span class="btn-icon">▶️</span> ' + _('Resume');
btn.classList.remove('cbi-button-action');
btn.classList.add('cbi-button-positive');
} else {
btn.innerHTML = '<span class="btn-icon">⏸️</span> ' + _('Pause');
btn.classList.remove('cbi-button-positive');
btn.classList.add('cbi-button-action');
}
}
}, [
E('span', { 'class': 'btn-icon' }, '⏸️'),
E('span', {}, ' ' + _('Pause'))
])
])
]);
var sidInnerTabs = E('div', { 'class': 'aw-inner-tabs' }, [
E('div', { 'class': 'cbi-section', 'data-tab': 'sid-trend', 'data-tab-title': _('Speed Trend') }, [
E('div', { 'class': 'dashboard-container' }, [
E('div', { 'class': 'kpi-row' }, [
E('div', { 'class': 'kpi-card' }, [ E('big', { id: 'sid-total-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('L7 Protocol Data')) ]),
E('div', { 'class': 'kpi-card' }, [ E('big', { id: 'sid-tx-rate-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('Download Speed')) ]),
E('div', { 'class': 'kpi-card' }, [ E('big', { id: 'sid-rx-rate-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('Upload Speed')) ]),
E('div', { 'class': 'kpi-card' }, [ E('big', { id: 'sid-tx-volume-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('Download Total')) ]),
E('div', { 'class': 'kpi-card' }, [ E('big', { id: 'sid-rx-volume-val' }, '0'), E('span', { 'class': 'kpi-card-label' }, _('Upload Total')) ])
]),
E('div', { 'class': 'line-chart-row' }, [
E('div', { 'class': 'chart-card' }, [
E('h4', [_('Real-time Download Speed')]),
E('div', { id: 'download-speed-line-chart', style: 'width: 100%; height: 350px;' })
]),
E('div', { 'class': 'chart-card' }, [
E('h4', [_('Real-time Upload Speed')]),
E('div', { id: 'upload-speed-line-chart', style: 'width: 100%; height: 350px;' })
])
])
])
]),
E('div', { 'class': 'cbi-section', 'data-tab': 'sid-share', 'data-tab-title': _('Traffic Share') }, [
E('div', { 'class': 'dashboard-container' }, [
E('div', { 'class': 'chart-grid' }, [
E('div', { 'class': 'chart-card' }, [
E('h4', [_('Download Speed / SID')]),
E('div', { id: 'sid-tx-rate-pie', style: 'width: 100%; height: 300px;' })
]),
E('div', { 'class': 'chart-card' }, [
E('h4', [_('Upload Speed / SID')]),
E('div', { id: 'sid-rx-rate-pie', style: 'width: 100%; height: 300px;' })
]),
E('div', { 'class': 'chart-card' }, [
E('h4', [_('Download Total')]),
E('div', { id: 'sid-tx-volume-pie', style: 'width: 100%; height: 300px;' })
]),
E('div', { 'class': 'chart-card' }, [
E('h4', [_('Upload Total')]),
E('div', { id: 'sid-rx-volume-pie', style: 'width: 100%; height: 300px;' })
])
])
])
]),
E('div', { 'class': 'cbi-section', 'data-tab': 'sid-list', 'data-tab-title': _('SID List') }, [
E('table', { 'class': 'table', 'id': 'sid-data' }, [
E('tr', { 'class': 'tr table-titles' }, [
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '🆔'), ' ', _('SID') ]),
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '🌐'), ' ', _('Domain&L7Protocol') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '⬇️'), ' ', _('Download Speed (Bit/s)') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '📦'), ' ', _('Download (Bytes)') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '📨'), ' ', _('Download (Packets)') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '⬆️'), ' ', _('Upload Speed (Bit/s)') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '📦'), ' ', _('Upload (Bytes)') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '📨'), ' ', _('Upload (Packets)') ])
]),
E('tr', { 'class': 'tr placeholder' }, [
E('td', { 'class': 'td', 'colspan': '8' }, [
E('em', { 'class': 'spinning' }, [ _('Collecting data...') ])
])
])
]),
controls
])
]);
var tabContainer = E('div', {}, [
E('div', { 'class': 'cbi-section', 'data-tab': 'sid', 'data-tab-title': _('L7 SID Data') }, [
sidInnerTabs
]),
E('div', { 'class': 'cbi-section', 'data-tab': 'l7proto', 'data-tab-title': _('L7 Protocol Data') }, [
E('div', { 'class': 'aw-inner-tabs' }, [
E('div', { 'class': 'cbi-section', 'data-tab': 'l7-protocols', 'data-tab-title': _('Protocol Library') }, [
E('p', { 'class': 'cbi-section-descr' }, [
_('Built-in L7 protocol signatures from aw-bpf.'),
' ',
_('Entries:'),
' ',
E('strong', { 'id': 'l7-protocol-count' }, '0')
]),
E('table', { 'class': 'table', 'id': 'l7-protocol-data' }, [
E('tr', { 'class': 'tr table-titles' }, [
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '#️⃣'), ' ', _('ID') ]),
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '🔌'), ' ', _('Protocol') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '🔑'), ' ', _('SID') ])
]),
E('tr', { 'class': 'tr placeholder' }, [
E('td', { 'class': 'td', 'colspan': '3' }, [
E('em', { 'class': 'spinning' }, [ _('Collecting data...') ])
])
])
])
]),
E('div', { 'class': 'cbi-section', 'data-tab': 'l7-domains', 'data-tab-title': _('常用域名') }, [
E('p', { 'class': 'cbi-section-descr' }, [
_('Frequently accessed domains discovered by xDPI, sorted by access count.'),
' ',
_('Entries:'),
' ',
E('strong', { 'id': 'l7-domain-count' }, '0')
]),
E('table', { 'class': 'table', 'id': 'l7-domain-data' }, [
E('tr', { 'class': 'tr table-titles' }, [
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '#️⃣'), ' ', _('ID') ]),
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '🌍'), ' ', _('Domain') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '🔑'), ' ', _('SID') ]),
E('th', { 'class': 'th right' }, [ E('span', { 'class': 'th-icon' }, '📊'), ' ', _('Access Count') ]),
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '🕒'), ' ', _('First Seen') ]),
E('th', { 'class': 'th left' }, [ E('span', { 'class': 'th-icon' }, '🕒'), ' ', _('Last Access') ]),
this.hasXdns ? E('th', { 'class': 'th center' }, [ E('span', { 'class': 'th-icon' }, '⚡'), ' ', _('xdns代理') ]) : null
].filter(Boolean)),
E('tr', { 'class': 'tr placeholder' }, [
E('td', { 'class': 'td', 'colspan': this.hasXdns ? '7' : '6' }, [
E('em', { 'class': 'spinning' }, [ _('Collecting data...') ])
])
])
])
])
])
])
]);
var node = E([], [
E('link', { 'rel': 'stylesheet', 'href': L.resource('view/aw-bpf.css') }),
E('script', { 'type': 'text/javascript', 'src': L.resource('echarts.min.js') }),
E('div', { 'class': 'l7-view-container', 'data-aw-theme': isDarkMode() ? 'dark' : 'light' }, [
E('h2', [ _('L7 Data Monitor') ]),
E('div', { 'id': 'l7-error-message' }),
tabContainer
])
]);
tabContainer.querySelectorAll('.aw-inner-tabs').forEach(function(inner) {
ui.tabs.initTabGroup(inner.childNodes);
});
ui.tabs.initTabGroup(tabContainer.childNodes);
this.bindTabChartResize(tabContainer);
setTimeout(this.initializeUI.bind(this), 0);
return node;
},
handleSave: null,
handleSaveApply: null,
handleReset: null
});
@@ -1,28 +0,0 @@
'use strict';
'require view';
'require form';
'require uci';
return view.extend({
load: function() {
return uci.load('aw-bpf');
},
render: function() {
var m, s, o;
m = new form.Map('aw-bpf', _('eBPF Traffic Control & DPI'),
_('eBPF kernel-level bandwidth control, session audit logging and xDPI L7 application/domain recognition.'));
s = m.section(form.TypedSection, 'aw-bpf', _('General Settings'));
s.anonymous = true;
s.addremove = false;
o = s.option(form.Flag, 'enable_event_log', _('Enable Session Event Logging'),
_('Record TCP/UDP session connection events as structured JSON to system log / syslog. (DNS learning and xDPI protocol recognition are always active in background).'));
o.rmempty = false;
o.default = '0';
return m.render();
}
});
File diff suppressed because it is too large Load Diff
@@ -1,6 +0,0 @@
#!/bin/sh
[ -f "/etc/config/hostnames" ] || {
echo 'config hostname' > /etc/config/hostnames
}
exit 0
@@ -1,46 +0,0 @@
{
"admin/qos": {
"title": "QoS",
"order": 60,
"action": {
"type": "firstchild",
"recurse": true
},
"depends": {
"acl": [ "luci-app-aw-bpf" ]
}
},
"admin/qos/hosts": {
"title": "Hosts",
"order": 10,
"action": {
"type": "view",
"path": "aw-bpf/display"
},
"depends": {
"acl": [ "luci-app-aw-bpf" ]
}
},
"admin/qos/l7": {
"title": "L7 application",
"order": 20,
"action": {
"type": "view",
"path": "aw-bpf/l7"
},
"depends": {
"acl": [ "luci-app-aw-bpf" ]
}
},
"admin/qos/settings": {
"title": "Settings",
"order": 30,
"action": {
"type": "view",
"path": "aw-bpf/settings"
},
"depends": {
"acl": [ "luci-app-aw-bpf" ]
}
}
}
@@ -1,19 +0,0 @@
{
"luci-app-aw-bpf": {
"description": "Grant access to LuCI app aw-bpf",
"read": {
"file": {
"/usr/bin/aw-bpfctl": [ "exec" ],
"/usr/bin/xdns-ctl": [ "exec" ],
"/usr/bin/awk": [ "exec" ],
"/tmp/dhcp.leases": [ "read" ],
"/proc/net/arp": [ "read" ],
"/etc/xdns/whitelist.txt": [ "read" ]
},
"uci": [ "hostnames", "network", "aw-bpf" ]
},
"write": {
"uci": [ "hostnames", "aw-bpf" ]
}
}
}
+20
View File
@@ -0,0 +1,20 @@
# This is free software, licensed under the Apache License, Version 2.0
#
# Copyright (C) 2024 Hilman Maulana <hilman0.0maulana@gmail.com>
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-cloudflared-next
LUCI_TITLE:=LuCI for Cloudflared
LUCI_DEPENDS:=+cloudflared-next
LUCI_DESCRIPTION:=LuCI support for Cloudflare Zero Trust Tunnels
PKG_MAINTAINER:=Hilman Maulana <hilman0.0maulana@gmail.com>, Sergey Ponomarev <stokito@gmail.com>
PKG_VERSION:=1.2
PKG_RELEASE:=1
PKG_LICENSE:=Apache-2.0
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature
@@ -0,0 +1,102 @@
/* This is free software, licensed under the Apache License, Version 2.0
*
* Copyright (C) 2024 Hilman Maulana <hilman0.0maulana@gmail.com>
*/
'use strict';
'require form';
'require rpc';
'require view';
const callServiceList = rpc.declare({
object: 'service',
method: 'list',
params: ['name'],
expect: { '': {} }
});
function getServiceStatus() {
return L.resolveDefault(callServiceList('cloudflared'), {}).then(function (res) {
var isRunning = false;
try {
isRunning = res['cloudflared']['instances']['cloudflared']['running'];
} catch (ignored) {}
return isRunning;
});
}
return view.extend({
load: function () {
return Promise.all([
getServiceStatus()
]);
},
render: function (data) {
let isRunning = data[0];
let m, s, o;
m = new form.Map('cloudflared', _('Cloudflare Zero Trust Tunnel'),
_('Cloudflare Zero Trust Security services help you get maximum security both from outside and within the network.') + '<br />' +
_('Create and manage your network on the <a %s>Cloudflare Zero Trust</a> dashboard.')
.format('href="https://one.dash.cloudflare.com" target="_blank"') + '<br />' +
_('See <a %s>documentation</a>.')
.format('href="https://openwrt.org/docs/guide-user/services/vpn/cloudfare_tunnel" target="_blank"')
);
s = m.section(form.NamedSection, 'config', 'cloudflared');
o = s.option(form.DummyValue, '_status', _('Status'));
o.rawhtml = true;
o.cfgvalue = function(section_id) {
var span = '<b><span style="color:%s">%s</span></b>';
var renderHTML = isRunning ?
String.format(span, 'green', _('Running')) :
String.format(span, 'red', _('Not Running'));
return renderHTML;
};
o = s.option(form.Flag, 'enabled', _('Enable'));
o.rmempty = false;
o = s.option(form.TextValue, 'token', _('Token'),
_('The tunnel token is shown in the dashboard once you create a tunnel.')
);
o.optional = true;
o.rmempty = false;
o.monospace = true;
o = s.option(form.FileUpload, 'config', _('Config file path'),
_('See <a %s>documentation</a>.')
.format('href="https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/configure-tunnels/local-management/configuration-file/" target="_blank"')
);
o.default = '/etc/cloudflared/config.yml';
o.root_directory = '/etc/cloudflared/';
o.optional = true;
o = s.option(form.FileUpload, 'origincert', _('Certificate of Origin'),
_('The account certificate for your zones authorizing the client to serve as an Origin for that zone') + '<br />' +
_('Obtain a certificate <a %s>here</a>.')
.format('href="https://dash.cloudflare.com/argotunnel" target="_blank"')
);
o.default = '/etc/cloudflared/cert.pem';
o.root_directory = '/etc/cloudflared/';
o.optional = true;
o = s.option(form.ListValue, 'region', _('Region'),
_('The region to which connections are established.')
);
o.value('us', _('United States'));
o.optional = true;
o = s.option(form.ListValue, 'loglevel', _('Logging level'));
o.value('fatal', _('Fatal'));
o.value('error', _('Error'));
o.value('warn', _('Warning'));
o.value('info', _('Info'));
o.value('debug', _('Debug'));
o.default = 'info';
return m.render();
}
});
@@ -0,0 +1,125 @@
/* This is free software, licensed under the Apache License, Version 2.0
*
* Copyright (C) 2024 Hilman Maulana <hilman0.0maulana@gmail.com>
*/
'use strict';
'require fs';
'require ui';
'require view';
'require poll';
function formatLogEntry(logObj) {
var formattedTime = new Date(logObj.time).toISOString().replace('T', ' ').split('.')[0];
var tunnelIDMessage = logObj.tunnelID ? ', ID: ' + logObj.tunnelID : '';
var errorMessage = logObj.error ? ', Error: ' + logObj.error : '';
var ipMessage = logObj.ip ? ', IP: ' + logObj.ip : '';
var configMessage = logObj.config ? ', Config: ' + JSON.stringify(logObj.config) : '';
var connectionMessage = logObj.connection ? ', Connection: ' + JSON.stringify(logObj.connection) : '';
var locationMessage = logObj.location ? ', Location: ' + logObj.location : '';
var protocolMessage = logObj.protocol ? ', Protocol: ' + logObj.protocol : '';
return '[' + formattedTime + '] [' + logObj.level + '] : ' + logObj.message + ipMessage + tunnelIDMessage + errorMessage + configMessage + connectionMessage + locationMessage + protocolMessage;
}
return view.extend({
handleSaveApply: null,
handleSave: null,
handleReset: null,
load: function() {
poll.add(function () {
return fs.read('/var/log/cloudflared.log').then(function(res) {
if (!res || res.trim() === '') {
ui.addNotification(null, E('p', {}, _('Unable to read the interface info from /var/log/cloudflared.log.')));
return '';
}
var logs = res.trim().split('\n').map(function(entry) {
try {
var logObj = JSON.parse(entry);
return logObj.time && logObj.message && logObj.level
? formatLogEntry(logObj)
: '';
} catch (error) {
console.error('Error parsing log entry:', error);
return '';
}
});
logs = logs.filter(function(entry) {
return entry.trim() !== '';
});
var info = logs.join('\n');
var view = document.getElementById('syslog');
var filterLevel = document.getElementById('filter-level').value;
var logDirection = document.getElementById('log-direction').value;
if (view) {
var filteredLogs;
if (filterLevel !== 'all') {
filteredLogs = logs.filter(function(entry) {
var logLevel = entry.match(/\[.*\] \[(.*)\]/)[1].toLowerCase();
return logLevel.includes(filterLevel.toLowerCase());
});
} else {
filteredLogs = logs;
}
if (logDirection === 'up') {
filteredLogs = filteredLogs.reverse();
}
info = filteredLogs.join('\n');
view.innerHTML = info;
}
return info;
});
});
return Promise.resolve('');
},
render: function(info) {
return E([], [
E('h2', { 'class': 'section-title' }, _('Log')),
E('div', { 'id': 'logs' }, [
E('label', { 'for': 'filter-level', 'style': 'margin-right: 8px;' }, _('Filter Level:')),
E('select', { 'id': 'filter-level', 'style': 'margin-right: 8px;' }, [
E('option', { 'value': 'all', 'selected': 'selected' }, _('All')),
E('option', { 'value': 'info' }, _('Info')),
E('option', { 'value': 'warn' }, _('Warn')),
E('option', { 'value': 'error' }, _('Error')),
]),
E('label', { 'for': 'log-direction', 'style': 'margin-right: 8px;' }, _('Log Direction:')),
E('select', { 'id': 'log-direction', 'style': 'margin-right: 8px;' }, [
E('option', { 'value': 'down', 'selected': 'selected' }, _('Down')),
E('option', { 'value': 'up' }, _('Up')),
]),
E('button', {
'id': 'download-log',
'class': 'cbi-button cbi-button-save',
'click': L.bind(this.handleDownloadLog, this),
'style': 'margin-bottom: 8px;'
}, _('Download Log')),
E('textarea', {
'id': 'syslog',
'class': 'cbi-input-textarea',
'style': 'height: 500px; overflow-y: scroll;',
'readonly': 'readonly',
'wrap': 'off',
'rows': 1
}, [ info ])
])
]);
},
handleDownloadLog: function() {
var logs = document.getElementById('syslog').value;
var blob = new Blob([logs], { type: 'text/plain' });
var link = document.createElement('a');
link.href = window.URL.createObjectURL(blob);
link.download = 'cloudflared.log';
link.click();
}
});
@@ -0,0 +1,101 @@
/* This is free software, licensed under the Apache License, Version 2.0
*
* Copyright (C) 2024 Sergey Ponomarev <stokito@gmail.com>
*/
'use strict';
'require view';
'require fs';
function listTunnels() {
let command = '/usr/bin/cloudflared';
let commandArgs = ['tunnel', 'list', '-o', 'json'];
return fs.exec(command, commandArgs).then(function (res) {
if (res.code === 0) {
return JSON.parse(res.stdout);
} else {
throw new Error(res.stdout + ' ' + res.stderr);
}
});
}
return view.extend({
handleSaveApply: null,
handleSave: null,
handleReset: null,
load: function () {
return Promise.all([
listTunnels()
]);
},
render: function (data) {
var tunnels = data[0];
var tunnelRows = tunnels.map(function (tunnel, index) {
var rowClass = index % 2 === 0 ? 'cbi-rowstyle-1' : 'cbi-rowstyle-2';
var tunneldate = new Date(tunnel.created_at).toLocaleString();
return E('tr', { 'class': 'tr ' + rowClass }, [
E('td', {'class': 'td'}, tunnel.name),
E('td', {'class': 'td'}, tunnel.id),
E('td', {'class': 'td'}, tunneldate),
E('td', {'class': 'td'}, tunnel.connections.length)
]);
});
var tunnelTable = [
E('h3', _('Tunnels Information')),
E('table', { 'class': 'table cbi-section-table' }, [
E('tr', { 'class': 'tr table-titles' }, [
E('th', {'class': 'th'}, _('Name')),
E('th', {'class': 'th'}, _('ID')),
E('th', {'class': 'th'}, _('Created At')),
E('th', {'class': 'th'}, _('Connections'))
]),
E(tunnelRows)
])
];
var connectionsTables = tunnels.map(function (tunnel) {
var connectionsTable;
if (tunnel.connections.length > 0) {
var connectionRows = tunnel.connections.map(function (connection, index) {
var rowClass = index % 2 === 0 ? 'cbi-rowstyle-1' : 'cbi-rowstyle-2';
var connectiondate = new Date(connection.opened_at).toLocaleString();
return E('tr', { 'class': 'tr ' + rowClass }, [
E('td', {'class': 'td'}, connection.id),
E('td', {'class': 'td'}, connection.origin_ip),
E('td', {'class': 'td'}, connectiondate),
E('td', {'class': 'td'}, connection.colo_name)
]);
});
connectionsTable = E('table', { 'class': 'table cbi-section-table' }, [
E('tr', { 'class': 'tr table-titles' }, [
E('th', {'class': 'th'}, _('Connection ID')),
E('th', {'class': 'th'}, _('Origin IP')),
E('th', {'class': 'th'}, _('Opened At')),
E('th', {'class': 'th'}, _('Data Center'))
]),
E(connectionRows)
]);
} else {
connectionsTable = E('div', {'class':'cbi-value center'}, [
E('em', _('No connections'))
]);
}
return E('div', {'class': 'cbi-section'}, [
E('h3', _('Connections') + ' ' + tunnel.name),
E(connectionsTable)
]);
});
return E([], [
E('h2', { 'class': 'section-title' }, _('Tunnels')),
E('div', {'class': 'cbi-section'}, tunnelTable),
E(connectionsTables)
]);
}
});
@@ -0,0 +1,207 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-07-16 16:41+0000\n"
"Last-Translator: Rex_sa <rex.sa@pm.me>\n"
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 5.7-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "التكوين"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "خطأ"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "السجل"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "حذر"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "تحذير"
@@ -0,0 +1,202 @@
msgid ""
msgstr ""
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: be\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-03-15 08:27+0000\n"
"Last-Translator: Daniel Konstantinov <bgshadow2010@gmail.com>\n"
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.17-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Всички"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Сертификат за произход"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Настройки"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Активиране"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Грешка"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Инфо"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Име"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-04-15 20:45+0000\n"
"Last-Translator: Random Github User <shahariarrabby1@gmail.com>\n"
"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationscloudflared/bn_BD/>\n"
"Language: bn_BD\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.11-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "সক্রিয় করুন"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-12-02 19:00+0000\n"
"Last-Translator: Alfonso Montero López <amontero@tinet.org>\n"
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.15-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Configuració"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Connexions"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Centre de dades"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Activa"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Nom"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Cap connexió"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "IP origen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Regió"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Vegeu <a %s>la documentació</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Estat"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Estats Units"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,212 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-03-08 17:33+0000\n"
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
"X-Generator: Weblate 5.17-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Vše"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Certifikát původu"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Cloudflare Zero Trust bezpečnostní služby pomáhají získat maximální "
"bezpečnost zvenčí a zevnitř sítě."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Tunel Cloudflare Zero Trust"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Popis umístění souboru s nastaveními"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Nastavení"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "Identif. spojení"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Spojení"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Svou síť vytvoříte a spravujete na přehledu u <a %s>Cloudflare Zero Trust</"
"a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Vytvořeno v"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Datacentrum"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Ladění"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Dole"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Stáhnout si záznam událostí"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Povolit"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Chyba"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Zásadní"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Úroveň filtru:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Udělit přístup do nastavování Cloudflared"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "Identifikátor"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Info"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Záznam událostí"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Směr záznamu událostí:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Stupeň podrobnosti zaznamenávání událostí"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Název"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Žádná spojení"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Nespuštěné"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Certifikát získejte <a %s>zde</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Otevřít v"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "IP adresa původu"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Oblast"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Spuštěné"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Viz <a %s>dokumentace</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Stav"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"Certifikát účtu pro vaše pověřování zón ke které klient slouží jako původ "
"pro takovou zónu"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "Oblast do které jsou spojení navázány."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr "Token tunelu je zobrazen v přehledu poté co vytvoříte tunel."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Token"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Tunely"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Informace o tunelech"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "Nepodařilo se načíst informace o rozhraní z /var/log/cloudflared.log."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Spojené státy"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Nahoře"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Varov."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Varování"
@@ -0,0 +1,203 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,214 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-03-02 15:14+0000\n"
"Last-Translator: Werner Schleifer <werner.schleifer@gmail.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.16.1-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Alle"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Ursprungsbescheinigung"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Cloudflare Zero Trust Security Services helfen Ihnen, maximale Sicherheit "
"sowohl von außerhalb als auch innerhalb des Netzwerks zu erhalten."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Cloudflare Zero Trust- Tunnel"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Konfig-Dateipfad"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Konfiguration"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "Verbindungs-ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Verbindungen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Erstellen und verwalten Sie Ihr Netzwerk auf dem <a %s>Cloudflare Zero "
"Trust</a>-Dashboard."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Erstellt am"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Rechenzentrum"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Debug"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Runter"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Log herunterladen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Aktivieren"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Fehler"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Schwerwiegend"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Filterebene:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Zugriff auf Cloudflared-Konfiguration gewähren"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Info"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Log"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Log-Richtung:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Protokollierungsebene"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Name"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Keine Verbindungen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Angehalten"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Ein Zertifikat <a %s>hier</a> erhalten."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Geöffnet Am"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "Ursprungs-IP"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Region"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Läuft"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Siehe <a %s>Dokumentation</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Status"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"Das Konto-Zertifikat für Ihre Zonen, das den Client berechtigt, als Origin "
"für diese Zone zu dienen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "Der Bereich, zu dem Verbindungen aufgebaut werden."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
"Der Tunnel-Token wird im Dashboard angezeigt, sobald Sie einen Tunnel "
"erstellen."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Token"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Tunnels"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Tunnel-Informationen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "Kann die Interface-Info nicht von /var/log/cloudflared.log lesen."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Vereinigte Staaten"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Oben"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Warn"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Warnung"
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-05-03 17:07+0000\n"
"Last-Translator: george kitsoukakis <norhorn@gmail.com>\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/el/>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Κάτω"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,201 @@
msgid ""
msgstr ""
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: eo\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,211 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-03-05 21:05+0000\n"
"Last-Translator: Francisco Serrador <fserrador@gmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.17-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Todo"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Certificado de origen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Los servicios de seguridad Cloudflare Zero Trust le ayudan a obtener la "
"máxima seguridad tanto desde el exterior como dentro de la red."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Tunel Cloudflare Zero Trust"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Ruta del archivo de configuración"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Configuración"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "ID de conexión"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Conexiones"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr "Cree y gestione su red en el panel <a %s>Cloudflare Zero Trust</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Creado en"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Centro de datos"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Depuración"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Bajar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Descargar registro"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Activar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Error"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Fatal"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Nivel de filtro:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Permitir acceso a la configuración de Cloudflared"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Informe"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Registro"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Dirección de registro:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Nivel de depuración"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Nombre"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Sin conexiones"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "No se está ejecutando"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Obtenga un certificado <a %s>aquí</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Abierto el"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "IP de origen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Región"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Ejecutando"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Ver <a %s>documentación</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Estado"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"El certificado de cuenta para sus zonas que autoriza al cliente a actuar "
"como Origen para esa zona"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "La región con la que se establecen las conexiones."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr "El token del túnel se muestra en el panel una vez que crea un túnel."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Token"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Túneles"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Información de túneles"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
"No se puede leer la información de la interfaz de /var/log/cloudflared.log."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Estados Unidos"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Subir"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Advertir"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Aviso"
@@ -0,0 +1,201 @@
msgid ""
msgstr ""
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: et\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,207 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-07-13 14:02+0000\n"
"Last-Translator: reza <rezad1393@protonmail.ch>\n"
"Language-Team: Persian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/fa/>\n"
"Language: fa\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.13-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "همه"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "گواهی مبدا"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"سرویس‌های امنیتی اعتماد صفر کلودفلر به شما کمک می‌کنند تا حداکثر امنیت را هم "
"از بیرون و هم از داخل شبکه داشته باشید."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "تونل اعتماد صفر کلودفلر"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "مسیر فایل پیکربندی"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "پیکربندی"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "شناسه اتصال"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "اتصالات"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"شبکه خود را در داشبورد <a %s>اعتماد صفر کلودفلر</a> ایجاد و مدیریت کنید."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "ایجاد شده در"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "مرکز داده"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "اشکال‌زدایی"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "فعال‌"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "خطا"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "اسم"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "وضعیت"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-07-22 08:17+0000\n"
"Last-Translator: Ricky Tigg <ricky.tigg@gmail.com>\n"
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/fi/>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.13-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Kokoonpano"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Viankorjaus"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Ota käyttöön"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Virhe"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Tiedot"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Loki"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Nimi"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Varoita"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,208 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-11-28 05:06+0000\n"
"Last-Translator: Martin Devolder <martin.devolder2@gmail.com>\n"
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/fr/>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.15-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Tous"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Certificat d'origine"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Les service de Zéro Trust de Cloudflare vous aident à avoir une sécurité "
"maximale à partir de l'intérieur et de l'extérieur de votre réseau."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Tunnel Zéro Trust de Cloudflare"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Débug"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Activer"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,212 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2026-03-09 19:10+0000\n"
"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n"
"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/ga/>\n"
"Language: ga\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(n>"
"6 && n<11) ? 3 : 4;\n"
"X-Generator: Weblate 5.17-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Gach"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Deimhniú Tionscnaimh"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Cabhraíonn seirbhísí slándála Cloudflare Zero Trust leat an t-uasmhéid "
"slándála a fháil ón taobh amuigh agus laistigh den líonra."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Tollán Iontaobhas Zero Cloudflare"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Cosán comhaid cumraíochta"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Cumraíocht"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "ID ceangail"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Naisc"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Cruthaigh agus bainistigh do líonra ar an deais <a%s>Cloudflare Zero Trust</"
"a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Cruthaithe Ag"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Lárionad Sonraí"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Dífhabhtú"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "an Dúin"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Íoslódáil an logáil isteach"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Cumasaigh"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Earráid"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Marfach"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Leibhéal Scagaire:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Deonaigh rochtain ar chumraíocht Cloudflared"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Eolas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Loga"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Treo Loga:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Leibhéal logáil"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Ainm"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Gan naisc"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Gan Rith"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Faigh teastas <a %s>anseo</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Osclaíodh Ag"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "IP tionscnaimh"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Réigiún"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Ag rith"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Féach ar <a %s>doiciméadúchán</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Stádas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"An teastas cuntais le do chriosanna a údaraíonn don chliant feidhmiú mar "
"Bhunús don chrios sin"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "An réigiún lena mbunaítear naisc."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
"Taispeántar comhartha an tolláin ar an deais nuair a chruthaíonn tú tollán."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Comhartha"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Tolláin"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Eolas Tolláin"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "Ní féidir faisnéis an chomhéadain ó /var/log/cloudflared.log a léamh."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Stáit Aontaithe Mheiriceá"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Suas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Rabhadh"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Aire"
@@ -0,0 +1,203 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-07-06 11:32+0000\n"
"Last-Translator: Sathvic <sathvic.p@gmail.com>\n"
"Language-Team: Hindi <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/hi/>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.7-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "स्थिति"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-03-08 17:32+0000\n"
"Last-Translator: hmzs <hmzs@1szer1.hu>\n"
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/hu/>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.17-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Minden"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Engedélyezés"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Hozzáférés engedélyezése az <em>Cloudflared</em> beállításaihoz"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Infó"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Napló"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Név"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Figyelmeztetés"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,210 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-11-25 16:35+0000\n"
"Last-Translator: Alex Caserini <alex.caserini@gmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.15-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Tutti"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Certificato d'origine"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"I servizi di sicurezza Cloudflare Zero Trust ti aiutano a ottenere la "
"massima sicurezza sia dall'esterno che all'interno della rete."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Tunnel Cloudflare Zero Trust"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Path file di configurazione"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Configurazione"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "ID di connessione"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Connessioni"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Crea e gestisci la tua rete nella dashboard di <a %s>Cloudflare Zero Trust</"
"a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Debug"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Registro Download"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Abilitare"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Errore"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Fatale"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Livello Filtro:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Concedere l'accesso alla configurazione Cloudflarizzata"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Info"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Registro"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Nome"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Non in esecuzione"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "In esecuzione"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Stato"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Avvisa"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Avviso"
@@ -0,0 +1,207 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-12-07 21:54+0000\n"
"Last-Translator: Monarch <monarch.scrap-0p@users.noreply.hosted.weblate.org>"
"\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.15-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "すべて"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "オリジン証明書"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Cloudflare Zero Trust Tunnel"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "構成ファイルのパス"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "設定"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "接続 ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "接続"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "データ センター"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "デバッグ"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "停止中"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "ログをダウンロード"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "有効化"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "エラー"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "情報"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "ログ"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "ログ レベル"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "名前"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "接続がありません"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "停止中"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "オリジン IP"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "地域"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "実行中"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "状態"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "トークン"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "トンネル"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "トンネル情報"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "/var/log/cloudflared.log からインターフェース情報を読み込めません。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "アメリカ合衆国"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "起動中"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "警告"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "警告"
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-02-07 16:33+0000\n"
"Last-Translator: Hyeonjeong Lee <h9101654@gmail.com>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/ko/>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.16-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "전체"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Cloudflare Zero Trust 터널"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "설정 파일 경로"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "설정"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "데이터 센터"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "디버그"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "로그 다운로드"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "활성화"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "오류(Error)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "심각(Fatal)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "필터 수준:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Cloudflared 설정에 접근 권한 부여"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "정보(Info)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "로그"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "로그 기록 수준"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "이름"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "연결된 내역이 없습니다"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "중지됨"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "지역"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "실행 중"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "상태"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "토큰"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "터널"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "터널 정보"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "미국"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "경고(Warn)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "경고(Warning)"
@@ -0,0 +1,218 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-03-10 17:04+0000\n"
"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/lt/>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.17-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Visi"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Kilmės sertifikatas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"„Cloudflare; Nulinio pasitikėjimo“ apsaugos tarnybos padeda Jums gauti "
"maksimalią apsaugą nuo išorės ir vidaus tinklo."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "„Cloudflare; Nulinio pasitikėjimo tunelis“"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Konfigūracijos failo kelias"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Konfigūracija"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "Prisijungimo ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Prisijungimai"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Sukurti ir valdyti savo tinklą per <a %s>„Cloudflare; Nulinis "
"pasitikėjimas“</a> ataskaitų skydelį."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Sukurta "
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Duomenų centras"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Derinimas/Trukdžių šalinimas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Žemyn"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Atsisiuntimo žurnalas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Įjungti/Įgalinti"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Klaida"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Kritinė"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Filtro lygis:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Duoti prieigą prie „Cloudflared“ konfigūracijos"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID Identifikatorius"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Informacija"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Žurnalas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Žurnalo kryptis:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Žurnalinimo lygis"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Pavadinimas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Nėra prisijungimų"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Neveikia"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Gauti sertifikatą <a %s>čia</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Atidaryta "
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "Kilmės IP"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Regionas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Veikia"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Peržiūrėti <a %s>dokumentaciją</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Būklė/Būsena"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"Paskyros sertifikatas Jūsų zonoms, autorizuojant klientą, kad tarnautu kaip "
"kilmė(?) („Origin“) tai zonai"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "Regionas, kuriame prisijungimai yra įtvirtinti."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
"„Tunelio“ Tinklo protokolo, skirto šifruoti/pereiti į kitą tinklą žetonas "
"yra rodomas ataskaitų skydelyje, kai Jūs sukuriate „tunelį“ tinklo "
"protokolą, skirta šifruoti/pereiti į kitą tinklą."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Žetonas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "„Tuneliai“ Tinklo protokolai"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
"„Tunelių“ Tinklo protokolas, skirtas šifruoti/pereiti į kitus tinklus "
"informacija"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "Nepavyko skaityti sąsajos informacijos iš „/var/log/cloudflared.log“."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Jungtinės Amerikos Valstijos"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Viršun/Aukštyn"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Įspėti"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Įspėjimas"
@@ -0,0 +1,202 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: mr\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,202 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-03-14 09:11+0000\n"
"Last-Translator: Lasse Skogland <lasse.skogland@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/nb_NO/>\n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.11-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Advar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-01-10 04:39+0000\n"
"Last-Translator: Marco Otto <marco.otto@tuta.com>\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/nl/>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.15.1\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Alle"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Configuratie"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Inschakelen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Naam"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Status"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,214 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-01-18 00:24+0000\n"
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/pl/>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.15.2\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Wszystko"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Certyfikat pochodzenia"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Usługi Cloudflare Zero Trust Security pomagają uzyskać maksymalne "
"bezpieczeństwo zarówno z zewnątrz, jak i wewnątrz sieci."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Tunel Cloudflare Zero Trust"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Ścieżka pliku konfiguracyjnego"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Konfiguracja"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "Identyfikator połączenia"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Połączenia"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Twórz swoją sieć i zarządzaj nią na pulpicie nawigacyjnym <a %s>Cloudflare "
"Zero Trust</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Utworzono"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Centrum danych"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Debugowanie"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "W dół"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Pobierz dziennik"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Włącz"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Błąd"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Krytyczne"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Poziom filtra:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Udziel dostępu do konfiguracji Cloudflared"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "Identyfikator"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Info"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Dziennik"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Kierunek dziennika:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Poziom rejestrowania"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Nazwa"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Brak połączeń"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Nieuruchomione"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Uzyskaj certyfikat <a %s>tutaj</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Otworzono"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "Pochodzenie IP"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Region"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Uruchomione"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Zobacz <a %s>dokumentację</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Status"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"Certyfikat konta dla Twoich stref, upoważniający klienta do pełnienia "
"funkcji Origin dla tej strefy"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "Region, z którym nawiązywane są połączenia."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr "Po utworzeniu tunelu token tunelu pojawi się na pulpicie nawigacyjnym."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Token"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Tunele"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Informacje o tunelach"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
"Nie można odczytać informacji o interfejsie z pliku /var/log/cloudflared.log."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Stany Zjednoczone"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "W górę"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Uwaga"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Ostrzeżenie"
@@ -0,0 +1,214 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-06-06 21:59+0000\n"
"Last-Translator: \"Filipe Mota (BlackSpirits)\" <blackspirits@gmail.com>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/pt/>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Todos"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Certificado de origem"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Os serviços de segurança Cloudflare Zero Trust proporcionam uma proteção "
"máxima, tanto contra ameaças externas como internas à rede."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Túnel Cloudflare Zero Trust"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Caminho do ficheiro de configuração"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Configuração"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "ID de ligação"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Ligações"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Crie e administre a sua rede no painel de controlo <a %s>Cloudflare Zero "
"Trust</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Criado em"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Centro de dados"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Depuração"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Em baixo"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Descarregar registo"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Ativar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Erro"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Fatal"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Nível de filtro:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Conceder acesso à configuração do Cloudflared"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Informações"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Registo"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Direção do registo:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Nível de registo"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Nome"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Sem ligações"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Não em execução"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Obter um certificado <a %s>aqui</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Aberto em"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "IP de origem"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Região"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "A executar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Ver a <a %s>documentação</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Estado"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"O certificado de conta associado às suas zonas que autoriza o cliente a "
"atuar como Origem para essas zonas"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "A região à qual as ligações são estabelecidas."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
"O token do túnel é apresentado no painel de controlo assim que criar um "
"túnel."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Token"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Túneis"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Informação de túneis"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "Incapaz de ler as informações da interface de /var/log/cloudflared.log."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Estados Unidos"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Para cima"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Aviso"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Alerta"
@@ -0,0 +1,208 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-03-09 19:10+0000\n"
"Last-Translator: Volenski <volenski@users.noreply.hosted.weblate.org>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationscloudflared/pt_BR/>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.17-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Todos"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Certificado de Origem"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Os serviços de segurança Zero Trust da Cloudflare ajudam você a obter "
"segurança máxima tanto de fora quanto de dentro da rede."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Tunel do Cloudflare Zero Trust"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Desativar saída de cores do log"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Configuração"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "ID da conexão (Connection ID)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Depuração (Debug)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Habilitar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Erro"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Informação (Info)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Registro"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Nome"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Região"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Status"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Aviso"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,209 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-11-24 10:29+0000\n"
"Last-Translator: CRISTIAN ANDREI <cristianvdr@gmail.com>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/ro/>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : "
"(n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n"
"X-Generator: Weblate 5.15-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Toate"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Certificat de Origine"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Serviciile Cloudflare Zero Trust Security te ajută să obții securitate "
"maximă atât din exterior, cât și din interiorul rețelei."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Tunelul Cloudflare Zero Trust"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Calea fișierului de configurare"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Configurație"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "ID-ul conexiunii"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Conexiuni"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Depanare"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Nefuncțional"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Descărcare Jurnal"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Activați"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Eroare"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Jurnal"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Atenție"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Atenționare"
@@ -0,0 +1,215 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-02-20 11:50+0000\n"
"Last-Translator: SnIPeRSnIPeR <snipersniper@users.noreply.hosted.weblate.org>"
"\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/ru/>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.16.1-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Все"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Сертификат Origin"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Сервисы Cloudflare Безопасность Нулевого Доверия (Zero Trust Security) "
"помогают вам получить максимальную безопасность как извне, так и внутри сети."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Cloudflare Безопасность Нулевого Доверия"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Путь к файлу конфигурации"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Конфигурация"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "Идентификатор соединения"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Соединения"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Создайте и управляйте своей сетью на панели <a%s>Cloudflare Zero Trust</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Создано в"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Дата-центр"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Отладка"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Вниз"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Скачать журнал"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Включить"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Ошибка"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Фатальный"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Фильтровать по уровню:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Доступ к конфигурации Cloudflared"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "Идентификатор"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Информация"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Журнал"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Направление в журнале:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Уровень журналирования"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Название"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Нет соединений"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Не запущенно"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Получить сертификат <a%s>здесь</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Открыто в"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "Исходный IP-адрес"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Регион"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Запущено"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Смотрите <a%s>документацию</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Статус"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"Сертификат учётной записи для ваших зон, уполномочивающих клиента служить "
"Происхождением (Origin) для этой зоны"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "Регион к которому устанавливать соединение."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
"Токен туннеля будет показан в панели управления после создания туннеля."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Токен"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Туннели"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Информация о туннелях"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
"Невозможно прочитать информацию об интерфейсе из /var/log/cloudflared.log."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Соединенные Штаты"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Вверх"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Предупреждение"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Предупреждение"
@@ -0,0 +1,203 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-01-25 20:29+0000\n"
"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n"
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/sv/>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.16-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Alla"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Originalcertifikat"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Genväg för konfig-fil"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Konfiguration"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "ID för anslutningen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Anslutningar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Felsök"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Ner"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Aktivera"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Fel"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Dödligt"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Info"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Logg"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Namn"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Status"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Upp"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Varna"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Varning"
@@ -0,0 +1,212 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-25 02:34+0000\n"
"Last-Translator: தமிழ்நேரம் <anishprabu.t@gmail.com>\n"
"Language-Team: Tamil <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/ta/>\n"
"Language: ta\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "அனைத்தும்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "தோற்றம் சான்றிதழ்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"கிளவுட்ஃப்ளேர் சீரோ அறக்கட்டளை பாதுகாப்பு சேவைகள் வெளியில் இருந்து மற்றும் பிணையத்திற்குள் "
"அதிகபட்ச பாதுகாப்பைப் பெற உதவுகின்றன."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "கிளவுட்ஃப்ளேர் சீரோ டிரச்ட் சுரங்கப்பாதை"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "கோப்பு பாதை"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "உள்ளமைவு"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "இணைப்பு ஐடி"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "இணைப்புகள்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"<a %s> கிளவுட்ஃப்ளேர் சீரோ டிரச்ட் </a> டாச்போர்டில் உங்கள் பிணையத்தை உருவாக்கி "
"நிர்வகிக்கவும்."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "உருவாக்கப்பட்டது"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "தரவு நடுவண்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "பிழைத்திருத்தம்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "கீழே"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "பதிவைப் பதிவிறக்கவும்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "இயக்கு"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "பிழை"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "அபாயகரமான"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "வடிகட்டி நிலை:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "கிளவுட்ஃப்ளைர் உள்ளமைவுக்கு அணுகலை வழங்கவும்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ஐடி"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "தகவல்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "பதிவு"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "பதிவு திசை:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "பதிவு நிலை"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "பெயர்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "இணைப்புகள் இல்லை"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "ஓடவில்லை"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "ஒரு சான்றிதழைப் பெறுங்கள் <a %s> இங்கே </a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "இல் திறக்கப்பட்டது"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "ஆரிசின் ஐபி"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "பகுதி"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "இயங்கும்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "<a %s> ஆவணங்கள் </a> ஐப் பார்க்கவும்."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "நிலை"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"உங்கள் மண்டலங்களுக்கான கணக்கு சான்றிதழ் வாடிக்கையாளருக்கு அந்த மண்டலத்திற்கான தோற்றமாக "
"செயல்பட ஏற்பு அளிக்கிறது"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "இணைப்புகள் நிறுவப்பட்ட பகுதி."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
"நீங்கள் ஒரு சுரங்கப்பாதையை உருவாக்கியவுடன் டாச்போர்டில் சுரங்கப்பாதை கிள்ளாக்கு "
"காட்டப்பட்டுள்ளது."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "கிள்ளாக்கு"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "சுரங்கங்கள்"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "சுரங்கங்கள் செய்தி"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "/Var/log/cloudflared.log இலிருந்து இடைமுக தகவலை படிக்க முடியவில்லை."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "ஐக்கிய அமெரிக்கா"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "மேலே"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "எச்சரிக்கை"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "எச்சரிக்கை"
@@ -0,0 +1,195 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,211 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-09-08 17:09+0000\n"
"Last-Translator: Derman <mole.qnap@gmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/tr/>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.14-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Hepsi"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Menşei Belgesi"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Cloudflare Zero Trust Security hizmetleri, hem dışarıdan hem de ağ içinden "
"maksimum güvenlik elde etmenize yardımcı olur."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Cloudflare Zero Trust Tüneli"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Yapılandırma dosyası yolu"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Yapılandırma"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "Bağlantı Kimliği"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Bağlantılar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr "Ağınızı <a%s>Cloudflare Zero Trust</a> panosunda oluşturun ve yönetin."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Oluşturulduğu Yer"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Veri Merkezi"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Hata Ayıklama"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Aşağı"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Günlüğü indir"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Etkinleştir"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Hata"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Ölümcül"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Filtre Seviyesi:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Cloudflared yapılandırmasına erişim izni ver"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Bilgi"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Günlük"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Günlük Yolu:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Günlük seviyesi"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "İsim"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Bağlantı yok"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Çalışmıyor"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "<a %s>buradan</a> bir sertifika edinin."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Açıldığı Yer"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "Kaynak IP"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Bölge"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Çalışıyor"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "<a %s>dokümantasyon</a> bölümüne bakın."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Durum"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"Bölgeleriniz için, istemciyi o bölge için bir Origin olarak hizmet vermek "
"üzere yetkilendiren hesap sertifikası"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "Bağlantıların kurulduğu bölge."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
"Tünel belirteci, bir tünel oluşturduğunuzda kontrol panelinde gösterilir."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Token"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Tüneller"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Tünel Bilgileri"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "Arayüz bilgisi /var/log/cloudflared.log dosyasından okunamıyor."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Amerika Birleşik Devletleri"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Yukarı"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Uyarı"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Dikkat"
@@ -0,0 +1,215 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-01-22 09:00+0000\n"
"Last-Translator: Максим Горпиніч <gorpinicmaksim0@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/uk/>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.16-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Усі"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Сертифікат походження"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Служби безпеки Cloudflare Zero Trust допомагають забезпечити максимальний "
"рівень захисту як іззовні, так і всередині мережі."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Тунель нульової довіри Cloudflare"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Шлях до конфігураційного файлу"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Конфігурація"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "ID підключення"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Зв'язки"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Створюйте свою мережу та керуйте нею на інформаційній панелі <a "
"%s>Cloudflare Zero Trust</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Створено Ат"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Центр обробки даних"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Налагодження"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Вниз"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Журнал завантажень"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Увімкнути"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Помилка"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Фатальний"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Рівень фільтра:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Надайте доступ до конфігурації Cloudflare"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Інфо"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Журнал"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Напрямок журналу:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Рівень реєстрації"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Ім'я"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Жодних зв'язків"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "Не працює"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Отримайте сертифікат <a %s>тут</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Відкрито при"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "Походження IP"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Регіон"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Запуск"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Перегляньте <a %s>документацію</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Статус"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"Сертифікат облікового запису для ваших зон, що дозволяє клієнту служити "
"джерелом для цієї зони"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "Регіон, з яким встановлені зв'язки."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
"Маркер тунелю відображається на інформаційній панелі після створення тунелю."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Токен"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Тунелі"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Інформація про тунелі"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
"Не вдалося прочитати інформацію про інтерфейс із /var/log/cloudflared.log."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "США"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Вгору"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Попередити"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Попередження"
@@ -0,0 +1,222 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-08-01 11:02+0000\n"
"Last-Translator: Vũ Minh Ngọc <vuminhngocpt@gmail.com>\n"
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/vi/>\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.13-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Tất cả"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
#, fuzzy
msgid "Certificate of Origin"
msgstr "Giấy chứng nhận xuất xứ"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
#, fuzzy
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Dịch vụ Cloudflare Zero Trust Security giúp bạn có được mức bảo mật tối đa "
"từ cả bên ngoài và bên trong mạng."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
#, fuzzy
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Đường hầm Cloudflare Zero Trust"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
#, fuzzy
msgid "Config file path"
msgstr "Đường dẫn tệp cấu hình"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
#, fuzzy
msgid "Configuration"
msgstr "Cấu hình"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
#, fuzzy
msgid "Connection ID"
msgstr "ID kết nối"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
#, fuzzy
msgid "Connections"
msgstr "Kết nối"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
#, fuzzy
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr ""
"Tạo và quản lý mạng của bạn trên bảng điều khiển <a %s>Cloudflare Zero "
"Trust</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr ""
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Nhật ký"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
#, fuzzy
msgid "Log Direction:"
msgstr "Hướng nhật ký:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Tên"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
#, fuzzy
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr ""
"Mã thông báo đường hầm sẽ được hiển thị trên bảng điều khiển sau khi bạn tạo "
"đường hầm."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr ""
@@ -0,0 +1,209 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-09-07 19:01+0000\n"
"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n"
"Language-Team: Yucateco <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscloudflared/yua/>\n"
"Language: yua\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.8-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "Toda"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "Certificado de origen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr ""
"Los servicios de seguridad Cloudflare Zero Trust le ayudan a obtener la "
"máxima seguridad tanto desde el exterior como dentro de la red."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Tunel Cloudflare Zero Trust"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "Ruta del archivo de configuración"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "Configuración"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "ID de conexión"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "Conexiones"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr "Cree y gestione su red en el panel <a %s>Cloudflare Zero Trust</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "Creado en"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "Centro de datos"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "Depurar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "Abajo"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "Descargar registro"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "Activar"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "Error"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "Fatal"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "Nivel de filtro:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "Permitir acceso a la configuración de Cloudflared"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "Info"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "Registro"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "Dirección de registro:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "Nivel de depuración"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "Nombre"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "Sin conexiones"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "No se está ejecutando"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "Obtenga un certificado <a %s>aquí</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "Abierto el"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "IP de origen"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "Región"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "Ejecutando"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "Ver <a %s>documentación</a>."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "Estado"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
"El certificado de cuenta para sus zonas que autoriza al cliente a actuar "
"como Origen para esa zona"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "La región con la que se establecen las conexiones."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr "El token del túnel se muestra en el panel una vez que crea un túnel."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "Token"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "Túneles"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "Información de túneles"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr ""
"No se puede leer la información de la interfaz de /var/log/cloudflared.log."
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "Estados Unidos"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "Arriba"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "Advertir"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "Advertencia"
+1
View File
@@ -0,0 +1 @@
zh_Hans
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-03-06 16:33+0000\n"
"Last-Translator: nKsyn <e.nksyn@gmail.com>\n"
"Language-Team: Chinese (Simplified Han script) <https://hosted.weblate.org/"
"projects/openwrt/luciapplicationscloudflared/zh_Hans/>\n"
"Language: zh_Hans\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.17-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "全部"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "源站证书"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr "Cloudflare 零信任安全服务帮助你从网络内外部获取最大程度的安全性。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Cloudflare 零信任隧道"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "配置文件路径"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "配置"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "连接 ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "连接"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr "在 <a %s>Cloudflare 零信任</a>仪表板上创建并管理你的网络。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "创建于"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "数据中心"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "调试 (Debug)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr "↓"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "下载日志"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "启用"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "错误 (Error)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "致命"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "过滤等级:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "授予访问 Cloudflared 配置的权限"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "信息 (Info)"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "日志"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "日志呈现时序:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "调试等级"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "名称"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "无连接"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "未在运行"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "在<a %s>此处</a>获取证书。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "连接时间"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "源 IP"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "地区"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "运行中"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "见 <a %s>文档</a>。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "状态"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr "您区域的账户证书,用于授权客户端充当该区域的源站"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "建立连接的目标地区。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr "一旦你创建了隧道,隧道令牌就会显示在仪表板中。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "令牌"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "隧道"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "隧道信息"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "无法从 /var/log/cloudflared.log 中读取接口信息。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "美国"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr "↑"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "警告"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "警告 (Warning)"
@@ -0,0 +1,206 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2026-03-09 19:11+0000\n"
"Last-Translator: EESF-2 <eesf-2@users.noreply.hosted.weblate.org>\n"
"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/"
"projects/openwrt/luciapplicationscloudflared/zh_Hant/>\n"
"Language: zh_Hant\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.17-dev\n"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89
msgid "All"
msgstr "全部"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:77
msgid "Certificate of Origin"
msgstr "原點憑證"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:40
msgid ""
"Cloudflare Zero Trust Security services help you get maximum security both "
"from outside and within the network."
msgstr "Cloudflare Zero Trust 安全服務幫助您在網路內外都得到最大程度的安全性。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:39
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3
msgid "Cloudflare Zero Trust Tunnel"
msgstr "Cloudflare Zero Trust 隧道"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:69
msgid "Config file path"
msgstr "配置檔案路徑"
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14
msgid "Configuration"
msgstr "配置"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:76
msgid "Connection ID"
msgstr "連線 ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:54
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:90
msgid "Connections"
msgstr "連線數"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:41
msgid ""
"Create and manage your network on the <a %s>Cloudflare Zero Trust</a> "
"dashboard."
msgstr "在 <a %s>Cloudflare Zero Trust</a> 儀表板上建立並管理你的網路。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:53
msgid "Created At"
msgstr "建立於"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:79
msgid "Data Center"
msgstr "資料中心"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:97
msgid "Debug"
msgstr "偵錯"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96
msgid "Down"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104
msgid "Download Log"
msgstr "下載紀錄"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:59
msgid "Enable"
msgstr "啟用"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92
msgid "Error"
msgstr "錯誤"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93
msgid "Fatal"
msgstr "致命"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87
msgid "Filter Level:"
msgstr "篩選等級:"
#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3
msgid "Grant access to Cloudflared configuration"
msgstr "授予存取 Cloudflared 配置的權限"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:52
msgid "ID"
msgstr "ID"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:96
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90
msgid "Info"
msgstr "資訊"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:30
msgid "Log"
msgstr "紀錄"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94
msgid "Log Direction:"
msgstr "紀錄方向:"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:92
msgid "Logging level"
msgstr "記錄等級"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:51
msgid "Name"
msgstr "名稱"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:85
msgid "No connections"
msgstr "無連線"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:55
msgid "Not Running"
msgstr "未執行"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79
msgid "Obtain a certificate <a %s>here</a>."
msgstr "從<a %s>這裡</a>取得憑證。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:78
msgid "Opened At"
msgstr "已開啟於"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:77
msgid "Origin IP"
msgstr "原點 IP"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86
msgid "Region"
msgstr "地區"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54
msgid "Running"
msgstr "執行中"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:43
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:70
msgid "See <a %s>documentation</a>."
msgstr "請看<a %s>文件</a>。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:49
msgid "Status"
msgstr "狀態"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78
msgid ""
"The account certificate for your zones authorizing the client to serve as an "
"Origin for that zone"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:87
msgid "The region to which connections are established."
msgstr "建立連線的區域。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:63
msgid "The tunnel token is shown in the dashboard once you create a tunnel."
msgstr "當您建立隧道時,權杖會顯示在儀表板上。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62
msgid "Token"
msgstr "權杖"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:96
#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22
msgid "Tunnels"
msgstr "隧道"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/tunnels.js:48
msgid "Tunnels Information"
msgstr "隧道資訊"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33
msgid "Unable to read the interface info from /var/log/cloudflared.log."
msgstr "無法從 /var/log/cloudflared.log 讀取介面資訊。"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:89
msgid "United States"
msgstr "美國"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97
msgid "Up"
msgstr ""
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91
msgid "Warn"
msgstr "警告"
#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95
msgid "Warning"
msgstr "警告"
@@ -0,0 +1,37 @@
{
"admin/vpn/cloudflared": {
"title": "Cloudflare Zero Trust Tunnel",
"order": 80,
"action": {
"type": "firstchild"
},
"depends": {
"acl": [ "luci-app-cloudflared" ],
"uci": { "cloudflared": true }
}
},
"admin/vpn/cloudflared/config": {
"title": "Configuration",
"order": 10,
"action": {
"type": "view",
"path": "cloudflared/config"
}
},
"admin/vpn/cloudflared/tunnels": {
"title": "Tunnels",
"order": 20,
"action": {
"type": "view",
"path": "cloudflared/tunnels"
}
},
"admin/vpn/cloudflared/log": {
"title": "Log",
"order": 30,
"action": {
"type": "view",
"path": "cloudflared/log"
}
}
}
@@ -0,0 +1,22 @@
{
"luci-app-cloudflared": {
"description": "Grant access to Cloudflared configuration",
"read": {
"uci": [ "cloudflared" ],
"ubus": {
"service": [ "list" ]
},
"file": {
"/etc/cloudflared/*": [ "read" ],
"/var/log/cloudflared.log": [ "read" ]
}
},
"write": {
"uci": [ "cloudflared" ],
"file": {
"/etc/cloudflared/*": [ "write" ],
"/usr/bin/cloudflared *": [ "exec" ]
}
}
}
}
+27
View File
@@ -0,0 +1,27 @@
include $(TOPDIR)/rules.mk
LUCI_TITLE:=LuCI support for EasyTier Next
LUCI_URL:=https://github.com/EasyTier/EasyTier
PKG_DESCRIPTION:=Provides a modern LuCI Web management interface for EasyTier decentralized mesh VPN.
PKG_MAINTAINER:=Dante <dante@seckv.com>
LUCI_DEPENDS:=+easytier-next +luci-base +ucode +ucode-mod-fs +ucode-mod-uci +ucode-mod-ubus
LUCI_PKGARCH:=all
define Package/luci-app-easytier-next/conffiles
/etc/config/easytier
/etc/easytier/
endef
define Package/luci-app-easytier-next/postinst
#!/bin/sh
[ -n "$${IPKG_INSTROOT}" ] || {
rm -f /tmp/luci-indexcache.* /tmp/luci-modulecache/* 2>/dev/null
chmod 0755 /etc/init.d/easytier /etc/hotplug.d/iface/99-easytier-routes 2>/dev/null || true
/etc/init.d/rpcd restart 2>/dev/null || true
}
exit 0
endef
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature
File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More