Full Code of v2rayA/v2raya-openwrt for AI

master d288e54992b0 cached
63 files
231.1 KB
75.8k tokens
2 symbols
1 requests
Download .txt
Showing preview only (254K chars total). Download the full file or copy to clipboard to get everything.
Repository: v2rayA/v2raya-openwrt
Branch: master
Commit: d288e54992b0
Files: 63
Total size: 231.1 KB

Directory structure:
gitextract_d72_dt3t/

├── .github/
│   ├── issue_template
│   └── workflows/
│       ├── Dockerfile
│       ├── ci_helpers.sh
│       ├── entrypoint.sh
│       └── multi-arch-build.yml
├── README.md
├── README.zh-cn.md
├── ca-certificates/
│   ├── Makefile
│   └── patches/
│       └── 0001-ca-certificates-fix-python3-cryptography-woes-in-cer.patch
├── luci-app-v2raya/
│   ├── Makefile
│   ├── htdocs/
│   │   └── luci-static/
│   │       └── resources/
│   │           └── view/
│   │               └── v2raya/
│   │                   ├── config.js
│   │                   └── log.js
│   ├── po/
│   │   ├── ar/
│   │   │   └── v2raya.po
│   │   ├── bg/
│   │   │   └── v2raya.po
│   │   ├── bn_BD/
│   │   │   └── v2raya.po
│   │   ├── ca/
│   │   │   └── v2raya.po
│   │   ├── cs/
│   │   │   └── v2raya.po
│   │   ├── da/
│   │   │   └── v2raya.po
│   │   ├── de/
│   │   │   └── v2raya.po
│   │   ├── el/
│   │   │   └── v2raya.po
│   │   ├── es/
│   │   │   └── v2raya.po
│   │   ├── fi/
│   │   │   └── v2raya.po
│   │   ├── fr/
│   │   │   └── v2raya.po
│   │   ├── ga/
│   │   │   └── v2raya.po
│   │   ├── he/
│   │   │   └── v2raya.po
│   │   ├── hi/
│   │   │   └── v2raya.po
│   │   ├── hu/
│   │   │   └── v2raya.po
│   │   ├── it/
│   │   │   └── v2raya.po
│   │   ├── ja/
│   │   │   └── v2raya.po
│   │   ├── ko/
│   │   │   └── v2raya.po
│   │   ├── lt/
│   │   │   └── v2raya.po
│   │   ├── mr/
│   │   │   └── v2raya.po
│   │   ├── ms/
│   │   │   └── v2raya.po
│   │   ├── nb_NO/
│   │   │   └── v2raya.po
│   │   ├── nl/
│   │   │   └── v2raya.po
│   │   ├── pl/
│   │   │   └── v2raya.po
│   │   ├── pt/
│   │   │   └── v2raya.po
│   │   ├── pt_BR/
│   │   │   └── v2raya.po
│   │   ├── ro/
│   │   │   └── v2raya.po
│   │   ├── ru/
│   │   │   └── v2raya.po
│   │   ├── sk/
│   │   │   └── v2raya.po
│   │   ├── sv/
│   │   │   └── v2raya.po
│   │   ├── ta/
│   │   │   └── v2raya.po
│   │   ├── templates/
│   │   │   └── v2raya.pot
│   │   ├── tr/
│   │   │   └── v2raya.po
│   │   ├── uk/
│   │   │   └── v2raya.po
│   │   ├── vi/
│   │   │   └── v2raya.po
│   │   ├── yua/
│   │   │   └── v2raya.po
│   │   ├── zh_Hans/
│   │   │   └── v2raya.po
│   │   └── zh_Hant/
│   │       └── v2raya.po
│   └── root/
│       └── usr/
│           └── share/
│               ├── luci/
│               │   └── menu.d/
│               │       └── luci-app-v2raya.json
│               └── rpcd/
│                   └── acl.d/
│                       └── luci-app-v2raya.json
├── v2fly-geodata/
│   ├── Makefile
│   └── update.sh
├── v2ray-core/
│   ├── Makefile
│   └── test.sh
├── v2raya/
│   ├── Makefile
│   ├── files/
│   │   ├── v2raya.config
│   │   └── v2raya.init
│   └── test.sh
├── v2raya.pub
└── xray-core/
    ├── Makefile
    └── test.sh

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/issue_template
================================================
<!--
Please make sure that you have `wget-ssl` installed on your device.
请确认你的设备上已正确安装 `wget-ssl`。

Please check README before opening a new issue.
打开 issue 前请先查看 README。
!-->


================================================
FILE: .github/workflows/Dockerfile
================================================
ARG ARCH=x86-64
FROM immortalwrt/rootfs:$ARCH

ADD entrypoint.sh /entrypoint.sh

CMD ["/entrypoint.sh"]


================================================
FILE: .github/workflows/ci_helpers.sh
================================================
#!/bin/sh

color_out() {
	printf "\e[0;$1m$PKG_NAME: %s\e[0;0m\n" "$2"
}

success() {
	color_out 32 "$1"
}

info() {
	color_out 36 "$1"
}

err() {
	color_out 31 "$1"
}

warn() {
	color_out 33 "$1"
}

err_die() {
	err "$1"
	exit 1
}


================================================
FILE: .github/workflows/entrypoint.sh
================================================
#!/bin/sh

# not enabling `errtrace` and `pipefail` since those are bash specific
set -o errexit # failing commands causes script to fail
set -o nounset # undefined variables causes script to fail

echo "src/gz v2raya file:///ci" >> /etc/opkg/distfeeds.conf

FINGERPRINT="$(usign -F -p /ci/v2raya.pub)"
cp /ci/v2raya.pub "/etc/opkg/keys/$FINGERPRINT"

mkdir -p /var/lock/

opkg update

export CI_HELPER="/ci/.github/workflows/ci_helpers.sh"

for PKG in /ci/*.ipk; do
	tar -xzOf "$PKG" ./control.tar.gz | tar xzf - ./control
	# package name including variant
	PKG_NAME=$(sed -ne 's#^Package: \(.*\)$#\1#p' ./control)
	# package version without release
	PKG_VERSION=$(sed -ne 's#^Version: \(.*\)$#\1#p' ./control)
	PKG_VERSION="${PKG_VERSION%-[!-]*}"
	# package source containing test.sh script
	PKG_SOURCE=$(sed -ne 's#^Source: \(.*\)$#\1#p' ./control)
	PKG_SOURCE="${PKG_SOURCE#/feed/}"

	echo
	echo "Testing package $PKG_NAME in version $PKG_VERSION from $PKG_SOURCE"

	if ! [ -d "/ci/$PKG_SOURCE" ]; then
		echo "$PKG_SOURCE is not a directory"
		exit 1
	fi

	PRE_TEST_SCRIPT="/ci/$PKG_SOURCE/pre-test.sh"
	TEST_SCRIPT="/ci/$PKG_SOURCE/test.sh"

	if ! [ -f "$TEST_SCRIPT" ]; then
		echo "No test.sh script available"
		continue
	fi

	export PKG_NAME PKG_VERSION

	if [ -f "$PRE_TEST_SCRIPT" ]; then
		echo "Use package specific pre-test.sh"
		if sh "$PRE_TEST_SCRIPT" "$PKG_NAME" "$PKG_VERSION"; then
			echo "Pre-test successful"
		else
			echo "Pre-test failed"
			exit 1
		fi
	else
		echo "No pre-test.sh script available"
	fi

	opkg install "$PKG"

	echo "Use package specific test.sh"
	if sh "$TEST_SCRIPT" "$PKG_NAME" "$PKG_VERSION"; then
		echo "Test successful"
	else
		echo "Test failed"
		exit 1
	fi

	opkg remove "$PKG_NAME" --force-removal-of-dependent-packages --force-remove --autoremove || true
done


================================================
FILE: .github/workflows/multi-arch-build.yml
================================================
name: Build v2rayA feed

on:
  workflow_dispatch:
  release:
    types:
      - published

jobs:
  build:
    name: Build packages for ${{ matrix.arch }}
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      max-parallel: 5
      matrix:
        include:
          - arch: aarch64_cortex-a53
            runtime_test: false
          - arch: aarch64_cortex-a72
            runtime_test: false
          - arch: aarch64_cortex-a76
            runtime_test: false
          - arch: aarch64_generic
            runtime_test: true
          - arch: arm_arm1176jzf-s_vfp
            runtime_test: false
          - arch: arm_arm926ej-s
            runtime_test: false
          - arch: arm_cortex-a15_neon-vfpv4
            runtime_test: true
          - arch: arm_cortex-a5_vfpv4
            runtime_test: false
          - arch: arm_cortex-a7
            runtime_test: false
          - arch: arm_cortex-a7_neon-vfpv4
            runtime_test: false
          - arch: arm_cortex-a8_vfpv3
            runtime_test: false
          - arch: arm_cortex-a9
            runtime_test: false
          - arch: arm_cortex-a9_neon
            runtime_test: false
          - arch: arm_cortex-a9_vfpv3-d16
            runtime_test: false
          - arch: arm_fa526
            runtime_test: false
          - arch: arm_xscale
            runtime_test: false
          - arch: i386_pentium-mmx
            runtime_test: true
          - arch: i386_pentium4
            runtime_test: false
          - arch: loongarch64_generic
            runtime_test: false
          - arch: mips64_mips64r2
            runtime_test: false
          - arch: mips64_octeonplus
            runtime_test: false
          - arch: mips64el_mips64r2
            runtime_test: false
          - arch: mips_24kc
            runtime_test: true
          - arch: mips_4kec
            runtime_test: false
          - arch: mips_mips32
            runtime_test: false
          - arch: mipsel_24kc
            runtime_test: false
          - arch: mipsel_24kc_24kf
            runtime_test: false
          - arch: mipsel_74kc
            runtime_test: false
          - arch: mipsel_mips32
            runtime_test: false
          - arch: riscv64_riscv64
            runtime_test: false
          - arch: x86_64
            runtime_test: true

    steps:
      - uses: actions/checkout@v5
        with:
          fetch-depth: 0

      - name: Build
        uses: immortalwrt/gh-action-sdk@v7
        env:
          ARCH: ${{ matrix.arch }}-openwrt-24.10
          FEEDNAME: v2raya_ci
          PACKAGES: ca-certificates v2fly-geodata v2ray-core xray-core v2raya luci-app-v2raya
          NO_REFRESH_CHECK: 1
          INDEX: 1
          KEY_BUILD: ${{ secrets.USIGN_KEY }}
          V: s

      - name: Upload feed
        uses: Pendect/action-rsyncer@9738db02560c333bf629a1533bd86ceda138e599
        with:
          flags: '-ahvHP'
          options: '--delete'
          src: 'bin/packages/${{ matrix.arch }}/v2raya_ci/'
          dest: '${{ secrets.SF_USER }}@frs.sourceforge.net:/home/frs/project/v2raya/openwrt/${{ matrix.arch }}/'
        env:
          DEPLOY_KEY: ${{ secrets.SF_KEY }}

      - name: Move created packages to project dir
        run: cp bin/packages/${{ matrix.arch }}/v2raya_ci/* . || true

      - name: Store packages
        uses: actions/upload-artifact@v5
        if: github.event_name != 'release'
        with:
          name: ${{ matrix.arch }}-${{ github.sha }}-packages
          path: |
            Packages
            Packages.*
            *.ipk

      - name: Store logs
        uses: actions/upload-artifact@v5
        with:
          name: ${{ matrix.arch }}-${{ github.sha }}-logs
          path: logs/

      - name: Remove logs
        run: sudo rm -rf logs/ || true

      - name: Register QEMU
        if: ${{ matrix.runtime_test }}
        run: |
          sudo apt-get update
          sudo apt-get install -y qemu-user-static binfmt-support
          sudo update-binfmts --import

      - name: Build Docker container
        if: ${{ matrix.runtime_test }}
        run: |
          docker build --platform linux/${{ matrix.arch }} -t test-container --build-arg ARCH .github/workflows/
        env:
          ARCH: ${{ matrix.arch }}-openwrt-24.10

      - name: Test via Docker container
        if: ${{ matrix.runtime_test }}
        run: |
          docker run --platform linux/${{ matrix.arch }} --rm -v $GITHUB_WORKSPACE:/ci test-container


================================================
FILE: README.md
================================================
# v2raya-openwrt

opkg feed of v2rayA for OpenWrt users.

[简体中文](README.zh-cn.md)

## How to install

1. Add v2rayA usign key

   > Make sure package `wget-ssl` or `libustream` is installed on your device

   ```sh
   wget https://downloads.sourceforge.net/project/v2raya/openwrt/v2raya.pub -O /etc/opkg/keys/94cc2a834fb0aa03
   ```

2. Import v2rayA feed

   ```sh
   echo "src/gz v2raya https://downloads.sourceforge.net/project/v2raya/openwrt/$(. /etc/openwrt_release && echo "$DISTRIB_ARCH")" | tee -a "/etc/opkg/customfeeds.conf"
   ```

3. Update feeds

   ```sh
   opkg update
   ```

4. Install v2rayA and its dependencies

   ```sh
   opkg install v2raya

   # Check your firewall implementation
   # Install the following packages for the nftables-based firewall4 (command -v fw4)
   # Generally speaking, install them on OpenWrt 22.03 and later
   opkg install kmod-nft-tproxy
   # Install the following packages for the iptables-based firewall3 (command -v fw3)
   # Generally speaking, install them on OpenWrt 21.02 and earlier
   opkg install iptables-mod-conntrack-extra \
     iptables-mod-extra \
     iptables-mod-filter \
     iptables-mod-tproxy \
     kmod-ipt-nat6

   # Choose a core you'd like to use, v2ray or Xray
   # If you have both installed, the latter is preferred by default
   #
   # Note from maintainer: due to broken tproxy support in v2ray, recommend using Xray instead
   opkg install xray-core
   # opkg install v2ray-core

   # Optional
   # opkg install v2fly-geoip v2fly-geosite
   ```

## How to use

- Method 1 - Configure via LuCI interface (for __OpenWrt 21.02 and higher__ version only)

   1. Install LuCI app

      ```sh
      opkg install luci-app-v2raya
      ```

   2. Visit `http://<your_router_ip>/cgi-bin/luci/admin/services/v2raya` and complete setup.

- Method 2 - Configure via cli

   1. Setup v2rayA

      ```sh
      # For advanced usage, please see /etc/config/v2raya
      uci set v2raya.config.enabled='1'
      uci commit v2raya
      ```

   2. Start v2rayA

      ```sh
      /etc/init.d/v2raya start
      ```

   3. Visit v2rayA webUI and enjoy

      `http://<your_router_ip>:2017`


================================================
FILE: README.zh-cn.md
================================================
# v2raya-openwrt

适用于 OpenWrt 用户的 v2rayA opkg 软件源。

[English](README.md)

## 安装方法

1. 导入 v2rayA 签名文件

   > 请确认软件包 `wget-ssl` 或 `libustream` 已经正确地安装在您的设备上

   ```sh
   wget https://downloads.sourceforge.net/project/v2raya/openwrt/v2raya.pub -O /etc/opkg/keys/94cc2a834fb0aa03
   ```

2. 添加 v2rayA 软件源

   ```sh
   echo "src/gz v2raya https://downloads.sourceforge.net/project/v2raya/openwrt/$(. /etc/openwrt_release && echo "$DISTRIB_ARCH")" | tee -a "/etc/opkg/customfeeds.conf"
   ```

3. 更新软件源

   ```sh
   opkg update
   ```

4. 安装 v2rayA 及其依赖

   ```sh
   opkg install v2raya

   # 检查你的防火墙实现
   # 为基于 nftables 的 firewall4 (command -v fw4) 安装下列软件包
   # 一般来说,在 OpenWrt 22.03 或更新版本中安装它们
   opkg install kmod-nft-tproxy
   # 为基于 iptables 的 firewall3 (command -v fw3) 安装下列软件包
   # 一般来说,在 OpenWrt 21.02 或更早版本中安装它们
   opkg install iptables-mod-conntrack-extra \
     iptables-mod-extra \
     iptables-mod-filter \
     iptables-mod-tproxy \
     kmod-ipt-nat6

   # 选择一个你喜欢的内核,v2ray 或 Xray
   # 如果两个内核被同时安装,默认使用后者
   #
   # 维护者注:由于目前 v2ray 的透明代理支持欠佳,因此更推荐使用 Xray
   opkg install xray-core
   # opkg install v2ray-core

   # 可选
   # opkg install v2fly-geoip v2fly-geosite
   ```

## 使用方法

- 方法一:通过 LuCI 界面配置(仅适用于 __OpenWrt 21.02 或更高版本__)

   1. 安装 LuCI app
      ```sh
      opkg install luci-app-v2raya luci-i18n-v2raya-zh-cn
      ```

   2. 访问 `http://<your_router_ip>/cgi-bin/luci/admin/services/v2raya` 并完成配置。

- 方法二:通过命令行配置

   1. 配置 v2rayA

      ```sh
      # 详细配置请参见 /etc/config/v2raya
      uci set v2raya.config.enabled='1'
      uci commit v2raya
      ```

   2. 启动 v2rayA

      ```sh
      /etc/init.d/v2raya start
      ```

   3. 访问 v2rayA webUI 面板并完成设置

      `http://<your_router_ip>:2017`


================================================
FILE: ca-certificates/Makefile
================================================
#
# Copyright (C) 2006-2017 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk

PKG_NAME:=ca-certificates
PKG_VERSION:=20250419
PKG_RELEASE:=1
PKG_MAINTAINER:=

PKG_LICENSE:=GPL-2.0-or-later MPL-2.0
PKG_LICENSE_FILES:=debian/copyright

PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/c/ca-certificates
PKG_HASH:=33b44ef78653ecd3f0f2f13e5bba6be466be2e7da72182f737912b81798ba5d2
PKG_INSTALL:=1

include $(INCLUDE_DIR)/package.mk

TAR_OPTIONS+= --strip-components 1
TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)

define Package/ca-certificates
  SECTION:=base
  CATEGORY:=Base system
  TITLE:=System CA certificates
  PKGARCH:=all
  PROVIDES:=ca-certs
endef

define Package/ca-bundle
  SECTION:=base
  CATEGORY:=Base system
  TITLE:=System CA certificates as a bundle
  PKGARCH:=all
  PROVIDES:=ca-certs
endef

define Build/Install
	mkdir -p \
		$(PKG_INSTALL_DIR)/usr/sbin \
		$(PKG_INSTALL_DIR)/usr/share/ca-certificates
	$(call Build/Install/Default,)
endef

define Package/ca-certificates/install
	$(INSTALL_DIR) $(1)/etc/ssl/certs
	$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/ca-certificates/*/*.crt $(1)/etc/ssl/certs/

	for CERTFILE in `ls -1 $(1)/etc/ssl/certs`; do \
		HASH=`openssl x509 -hash -noout -in $(1)/etc/ssl/certs/$$$$CERTFILE` ; \
		SUFFIX=0 ; \
		while [ -h "$(1)/etc/ssl/certs/$$$$HASH.$$$$SUFFIX" ]; do \
			let "SUFFIX += 1" ; \
		done ; \
		$(LN) "$$$$CERTFILE" "$(1)/etc/ssl/certs/$$$$HASH.$$$$SUFFIX" ; \
	done
endef

define Package/ca-bundle/install
	$(INSTALL_DIR) $(1)/etc/ssl/certs
	cat $(PKG_INSTALL_DIR)/usr/share/ca-certificates/*/*.crt >$(1)/etc/ssl/certs/ca-certificates.crt
	$(LN) /etc/ssl/certs/ca-certificates.crt $(1)/etc/ssl/cert.pem
endef
$(eval $(call BuildPackage,ca-bundle))
$(eval $(call BuildPackage,ca-certificates))


================================================
FILE: ca-certificates/patches/0001-ca-certificates-fix-python3-cryptography-woes-in-cer.patch
================================================
From 3c51cb5ff1d0db41fb3288fb555c7e7055cf3e86 Mon Sep 17 00:00:00 2001
From: Christian Lamparter <chunkeey@gmail.com>
Date: Wed, 1 Dec 2021 14:41:31 +0100
Subject: [PATCH] ca-certificates: fix python3-cryptography woes in
 certdata2pem.py

reverts the code portion of the Debian's ca-certificate
commit 033d52259172 ("mozilla/certdata2pem.py: print a warning for expired certificates.")

It broke builds with the popular Ubuntu 20.04 (focal) releases.
This was due to them shipping with an older python3-cryptography
version which is not compatible.

More concerns were raised by jow- as well:
"We don't want the build to depend on the local system time anyway."

Reported-by: Chen Minqiang <ptpt52@gmail.com>
Reported-by: Shane Synan <digitalcircuit36939@gmail.com>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
---
--- a/mozilla/certdata2pem.py
+++ b/mozilla/certdata2pem.py
@@ -21,16 +21,12 @@
 # USA.
 
 import base64
-import datetime
 import os.path
 import re
 import sys
 import textwrap
 import io
 
-from cryptography import x509
-
-
 objects = []
 
 # Dirty file parser.
@@ -121,13 +117,6 @@ for obj in objects:
     if obj['CKA_CLASS'] == 'CKO_CERTIFICATE':
         if not obj['CKA_LABEL'] in trust or not trust[obj['CKA_LABEL']]:
             continue
-
-        cert = x509.load_der_x509_certificate(bytes(obj['CKA_VALUE']))
-        if cert.not_valid_after < datetime.datetime.utcnow():
-            print('!'*74)
-            print('Trusted but expired certificate found: %s' % obj['CKA_LABEL'])
-            print('!'*74)
-
         bname = obj['CKA_LABEL'][1:-1].replace('/', '_')\
                                       .replace(' ', '_')\
                                       .replace('(', '=')\


================================================
FILE: luci-app-v2raya/Makefile
================================================
# SPDX-License-Identifier: Apache-2.0
#
# Copyright (C) 2024 ImmortalWrt.org

include $(TOPDIR)/rules.mk

LUCI_TITLE:=LuCI support for v2rayA
LUCI_DEPENDS:=+v2raya

PKG_VERSION:=12
PKG_PO_VERSION:=$(PKG_VERSION)

PKG_LICENSE:=Apache-2.0
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>

include $(TOPDIR)/feeds/luci/luci.mk

# call BuildPackage - OpenWrt buildroot signature


================================================
FILE: luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js
================================================
'use strict';
'require form';
'require poll';
'require rpc';
'require uci';
'require view';

const callServiceList = rpc.declare({
	object: 'service',
	method: 'list',
	params: ['name'],
	expect: { '': {} }
});

function getServiceStatus() {
	return L.resolveDefault(callServiceList('v2raya'), {}).then(function (res) {
		var isRunning = false;
		try {
			isRunning = res['v2raya']['instances']['v2raya']['running'];
		} catch (e) { }
		return isRunning;
	});
}

function renderStatus(isRunning, port) {
	var spanTemp = '<span style="color:%s"><strong>%s %s</strong></span>';
	var renderHTML;
	if (isRunning) {
		var button = String.format('&#160;<a class="btn cbi-button" href="http://%s:%s" target="_blank" rel="noreferrer noopener">%s</a>',
			window.location.hostname, port, _('Open Web Interface'));
		renderHTML = spanTemp.format('green', _('v2rayA'), _('RUNNING')) + button;
	} else {
		renderHTML = spanTemp.format('red', _('v2rayA'), _('NOT RUNNING'));
	}

	return renderHTML;
}

return view.extend({
	load: function() {
		return Promise.all([
			uci.load('v2raya')
		]);
	},

	render: function(data) {
		let m, s, o;
		var webport = (uci.get(data[0], 'config', 'address') || '0.0.0.0:2017').split(':').slice(-1)[0];

		m = new form.Map('v2raya', _('v2rayA'),
			_('v2rayA is a V2Ray Linux client supporting global transparent proxy, compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.'));

		s = m.section(form.TypedSection);
		s.anonymous = true;
		s.render = function () {
			poll.add(function () {
				return L.resolveDefault(getServiceStatus()).then(function (res) {
					var view = document.getElementById('service_status');
					view.innerHTML = renderStatus(res, webport);
				});
			});

			return E('div', { class: 'cbi-section', id: 'status_bar' }, [
					E('p', { id: 'service_status' }, _('Collecting data…'))
			]);
		}

		s = m.section(form.NamedSection, 'config', 'v2raya');

		o = s.option(form.Flag, 'enabled', _('Enable'));
		o.rmempty = false;

		o = s.option(form.Value, 'address', _('Listening address'));
		o.datatype = 'ipaddrport(1)';
		o.placeholder = '0.0.0.0:2017';

		o = s.option(form.ListValue, 'ipv6_support', _('IPv6 support'),
			_('Requires working IPv6 connectivity.'));
		o.value('auto', _('Auto'));
		o.value('on', _('On'));
		o.value('off', _('Off'));
		o.default = 'auto';

		o = s.option(form.ListValue, 'nftables_support', _('Nftables support'),
			_('Requires nftables.'));
		o.value('auto', _('Auto'));
		o.value('on', _('On'));
		o.value('off', _('Off'));
		o.default = 'auto';

		o = s.option(form.ListValue, 'log_level', _('Log level'));
		o.value('trace', _('Trace'));
		o.value('debug', _('Debug'));
		o.value('info', _('Info'));
		o.value('warn', _('Warn'));
		o.value('error', _('Error'));
		o.default = 'info';

		o = s.option(form.Value, 'log_max_days', _('Max log retention period'),
			_('Unit: days.'));
		o.datatype = 'uinteger';
		o.placeholder = '3';

		o = s.option(form.Flag, 'log_disable_color', _('Disable log color output'));

		o = s.option(form.Flag, 'log_disable_timestamp', _('Disable log timestamp'));

		return m.render();
	}
});


================================================
FILE: luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js
================================================
'use strict';
'require dom';
'require fs';
'require poll';
'require uci';
'require view';

return view.extend({
	render: function() {
		/* Thanks to luci-app-aria2 */
		var css = '					\
			#log_textarea {				\
				padding: 10px;			\
				text-align: left;		\
			}					\
			#log_textarea pre {			\
				padding: .5rem;			\
				word-break: break-all;		\
				margin: 0;			\
			}					\
			.description {				\
				background-color: #33ccff;	\
			}';

		var log_textarea = E('div', { 'id': 'log_textarea' },
			E('img', {
				'src': L.resource('icons/loading.gif'),
				'alt': _('Loading…'),
				'style': 'vertical-align:middle'
			}, _('Collecting data…'))
		);

		var log_path = '/var/log/v2raya/v2raya.log';

		poll.add(L.bind(function() {
			return fs.read_direct(log_path, 'text')
			.then(function(res) {
				var log = E('pre', { 'wrap': 'pre' }, [
					res.trim() || _('Log is clean.')
				]);

				dom.content(log_textarea, log);
			}).catch(function(err) {
				var log;

				if (err.toString().includes('NotFoundError'))
					log = E('pre', { 'wrap': 'pre' }, [
						_('Log file does not exist.')
					]);
				else
					log = E('pre', { 'wrap': 'pre' }, [
						_('Unknown error: %s').format(err)
					]);

				dom.content(log_textarea, log);
			});
		}));

		return E([
			E('style', [ css ]),
			E('div', {'class': 'cbi-map'}, [
				E('div', {'class': 'cbi-section'}, [
					log_textarea,
					E('div', {'style': 'text-align:right'},
					E('small', {}, _('Refresh every %d seconds.').format(L.env.pollinterval))
					)
				])
			])
		]);
	},

	handleSaveApply: null,
	handleSave: null,
	handleReset: null
});


================================================
FILE: luci-app-v2raya/po/ar/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\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/"
"luciapplicationsv2raya/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-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "التكوين"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "خطأ"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "دعم IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "السجل"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "مستوى التسجيل"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "الأثر"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "حذر"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/bg/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-10-27 15:04+0000\n"
"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate.org>"
"\n"
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.14.1-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Настройки"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Грешка"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Инфо"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Ниво на записи"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/bn_BD/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\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/luciapplicationsv2raya/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-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "সক্রিয় করুন"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/ca/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-03-10 02:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.10.3-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Configuració"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/cs/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-05-10 23:01+0000\n"
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.12-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "automaticky"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Shromažďování dat…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Nastavení"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Ladění"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Vypnout obarvování výstupu ze záznamu událostí"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Zakázat časové razítko záznamu událostí"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Povolit"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Chyba"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Udělit přístup k nastavování v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Podpora pro IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Info"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "Adresa pro očekávání spojení"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Načítání…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Záznam událostí"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Soubor se záznamem událostí neexistuje."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "Záznam událostí je čistý."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Stupeň podrobnosti záznamu událostí"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Nejdelší umožněné období uchovávání záznamu událostí"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "NESPUŠTĚNÉ"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "Podpora pro Nftables"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Vypnuto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Zapnuto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Otevřít webové rozhraní"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "SPUŠTĚNÉ"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "Znovu načíst každých %d sekund."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Vyžaduje nftables."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "Vyžaduje fungující IPv6 konektivitu."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Trace"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "Jednotka: dny."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Neznámá chyba: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Varov."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"v2rayA je V2Ray linuxový klient podporující globální transparentní proxy, "
"kompatibilní s protokoly SS, SSR, Trojan(trojan-go), PingTunnel."


================================================
FILE: luci-app-v2raya/po/da/v2raya.po
================================================
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: luci-app-v 2raya\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-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/de/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-02-07 23:08+0000\n"
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.10-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Sammeln von Daten…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Konfiguration"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Debug"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Deaktivieren der Ausgabe von Protokollfarben"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Protokoll-Zeitstempel deaktivieren"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Aktivieren"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Fehler"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Zugriff auf die v2rayA-Konfiguration gewähren"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "IPv6-Unterstützung"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Info"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "Listening-Adresse"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Laden…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Log"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Die Protokolldatei existiert nicht."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "Protokoll ist leer."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Protokollierungslevel"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Maximale Aufbewahrungszeit für Protokolle"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "LÄUFT NICHT"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "Nftables-Unterstützung"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Aus"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "An"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Weboberfläche öffnen"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "LÄUFT"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "Aktualisiere alle %d Sekunden."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Erfordert nftables."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "Erfordert eine funktionierende IPv6-Konnektivität."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Rückverfolgung"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "Einheit: Tage."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Unbekannter Fehler: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Warn"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"v2rayA ist ein V2Ray-Linux-Client, der globalen transparenten Proxy "
"unterstützt und mit den Protokollen SS, SSR, Trojan(trojan-go) und "
"PingTunnel kompatibel ist."


================================================
FILE: luci-app-v2raya/po/el/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2024-11-09 08:59+0000\n"
"Last-Translator: Mac Mac <nofxmac@gmail.com>\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.8.2\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "κατά την"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Άνοιγμα Ιστοσελίδας"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "ΕΚΤΕΛΕΙΤΕ"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/es/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-06-20 21:42+0000\n"
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.13-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Recopilando datos…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Configuración"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Depurar"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Deshabilitar salida de color de registro"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Deshabilitar marca de tiempo del registro"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Activar"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Error"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Otorgar acceso a la configuración de v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Soporte IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Info"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "dirección de escucha"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Cargando…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Registro"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "El archivo de registro no existe."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "El log está limpio."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Nivel de registro"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Período máximo de retención de registros"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "NO EN EJECUCIÓN"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "Soporte para Nftables"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Apagado"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Encendido"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Interfaz Open Web"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "EN EJECUCIÓN"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "Actualizar cada %d segundos."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Requiere nftables."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "Requiere conectividad IPv6 funcional."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Rastro"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "Unidad: días."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Error desconocido: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Advertir"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"v2rayA es un cliente V2Ray para Linux que soporta proxy transparente global, "
"compatible con los protocolos SS, SSR, Trojan (trojan-go) y PingTunnel."


================================================
FILE: luci-app-v2raya/po/fi/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-05-04 15:04+0000\n"
"Last-Translator: Ricky Tigg <ricky.tigg@gmail.com>\n"
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.12-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Kerätään tietoja…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Kokoonpano"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Viankorjaus"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Poista lokivärien lähtö käytöstä"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Poista lokin aikaleima käytöstä"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Ota käyttöön"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Virhe"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Myönnä pääsy v2rayA-kokoonpanoon"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "IPv6-tuki"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Tiedot"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "Kuunteluosoite"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Ladataan…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Loki"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Lokitiedostoa ei ole."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "Loki on puhdas."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Lokitaso"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Lokien enimmäissäilytysaika"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "EI KÄYNNISSÄ"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "Nftables-tuki"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Pois päältä"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Päälle"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Avoin verkkokäyttöliittymä"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "KÄYNNISSÄ"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "Virkistä %d sekunnin välein."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Vaatii nftablesin."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "Edellyttää toimivaa IPv6-yhteyttä."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Jäljitä"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "Yksikkö: päivä."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Tuntematon virhe: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Varoita"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"v2rayA on V2Ray Linux-asiakas, joka tukee yleisesti pätevää läpinäkyvää "
"välityspalvelinta, ja on yhteensopiva SS-, SSR-, Trojan(trojan-go)- ja "
"PingTunnel-protokollien kanssa."


================================================
FILE: luci-app-v2raya/po/fr/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-08-11 21:03+0000\n"
"Last-Translator: Adam El adnani <eladnaniadam595@gmail.com>\n"
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.13-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Collection des données …"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Configuration"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
#, fuzzy
msgid "Debug"
msgstr "Déboguer"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Activer"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Erreur"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Prise en charge d’IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Chargement …"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Journal"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Allumé"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Ouvrir l'interface web"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "EXÉCUTANT"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Erreur inconnue : %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/ga/v2raya.po
================================================
msgid ""
msgstr ""
"PO-Revision-Date: 2025-05-06 05:38+0000\n"
"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n"
"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.12-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Sonraí á mbailiú…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Cumraíocht"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Dífhabhtú"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Díchumasaigh aschur dath an loga"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Díchumasaigh stampa ama loga"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Cumasaigh"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Earráid"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Deonaigh rochtain ar chumraíocht v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Tacaíocht IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Faisnéis"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "Seoladh éisteachta"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Á lódáil…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Loga"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Níl logchomhad ann."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "Tá an logáil glan."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Leibhéal logála"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Uastréimhse coinneála loga"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "NÍ RÚCHÁN"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "Tacaíocht nftables"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "As"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Ar"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Comhéadan Gréasáin Oscailte"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "REATHA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "Athnuaigh gach %d soicind."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Éilíonn nftables."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "Tá nascacht IPv6 oibre de dhíth."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Rian"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "Aonad: laethanta."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Earráid anaithnid: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Rabhadh"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"Is cliant V2Ray Linux é v2rayA a thacaíonn le seachfhreastalaí trédhearcach "
"domhanda, atá comhoiriúnach le prótacail SS, SSR, Trojan(trojan-go), "
"PingTunnel."


================================================
FILE: luci-app-v2raya/po/he/v2raya.po
================================================
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: luci-app-v 2raya\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-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/hi/v2raya.po
================================================
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: luci-app-v 2raya\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/hu/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-05-31 20:15+0000\n"
"Last-Translator: hmzs <hmzs@1szer1.hu>\n"
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.12-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Engedélyezés"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Hozzáférés engedélyezése a <em>v2rayA</em> beállításaihoz"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "IPv6 támogatás"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Infó"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Napló"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Naplózás szintje"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "FUT"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Figyelmeztetés"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/it/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2024-07-17 22:44+0000\n"
"Last-Translator: Random <random-r@users.noreply.hosted.weblate.org>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.7-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Raccolta dati in corso…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Configurazione"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Debug"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Abilitare"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Errore"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Supporto IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Info"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "Indirizzo di ascolto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Registro"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Il file di registro non esiste."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Livello dei log"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "NON IN ESECUZIONE"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "On"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Apri interfaccia web"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "IN ESECUZIONE"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Traccia"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Errore sconosciuto: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Avvisa"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/ja/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2024-10-09 05:48+0000\n"
"Last-Translator: Monarch <monarch.scrap-0p@icloud.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.8-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "自動"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "エラー"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "ログ"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/ko/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-05-06 11:54+0000\n"
"Last-Translator: Beomjun <kals323@gmail.com>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.12-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "웹 인터페이스 열기"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/lt/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-02-15 17:31+0000\n"
"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.10\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Automatiškai"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Renkami duomenys…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Konfigūracija"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Derinimas/Trukdžių šalinimas"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Išjungti žurnalo spalvos išvestį"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Išjungti žurnalo laiko žymėjimą"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Įjungti/Įgalinti"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Klaida"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Duoti prieigą prie „v2rayA“ konfigūracijos"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "IPv6 palaikymas"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Informacija"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""
"Adresas laukia prisijungimo/jungties ryšio (klausosi ir pasiruošęs priimti)"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Kraunama…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Žurnalas"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Žurnalo failas neegzistuoja."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "Žurnalas yra švarus."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Žurnalo lygis"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Maksimalus žurnalo išlaikymo periodas"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "NEVEIKIA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "„Nftables“ palaikymas"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Išjungtas/Išgalintas"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Įjungta/Įgalinta (-s)"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Atidaryti tinklo naudotojo/vartotojo sąsają"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "VEIKIA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "Atnaujinti kas %d sekundžių."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Reikalauja „nftables“."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "Reikalauja veikiančio „IPv6“ interneto."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Sekimas/Atsekamumas"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "Vienetas: dienos."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Nežinoma klaida: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Įspėti"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "„v2rayA“"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"„v2rayA“ yra „V2ray Linux“ kliento palaikantis visuotinis permatomas "
"lygiarangis, palaikomas su „SS“, „SSR“, „Trojan(trojan-go)“, „PingTunnel“ "
"protokolais."


================================================
FILE: luci-app-v2raya/po/mr/v2raya.po
================================================
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: luci-app-v 2raya\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-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/ms/v2raya.po
================================================
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: luci-app-v 2raya\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-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/nb_NO/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\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/"
"luciapplicationsv2raya/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-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Samler data …"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Oppsett"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Avlusing"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Skru av fargelagt loggdata"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Skru av tidsstemplet loggføring"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Skru på"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Feil"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Innvilg tilgang til v2rayA-oppsett"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "IPv6-støtte"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Info"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "Lytteadresse"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Laster inn …"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Logg"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Loggfilen finnes ikke."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "Loggen er ren."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Loggingsnivå"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Maks. tid å beholde logg"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "Kjører ikke"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "nftables-støtte"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Av"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "På"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Åpne vev-grensesnitt"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "KJØRER"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "Oppdatering hvert %d sekund."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Krever nftables."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "Krever fungerende IPv6-tilkobling."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Spor"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "Enhet: dager."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Ukjent feil: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Advar"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"v2rayA er en V2Ray-Linuxklient som støtter global transparent mellomtjening, "
"kompatibel med SS, SSR, Trojan(trojan-go), PingTunnel-protokoller."


================================================
FILE: luci-app-v2raya/po/nl/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-01-20 10:53+0000\n"
"Last-Translator: Meow <sander.schutten@gmail.com>\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.10-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Inschakelen"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/pl/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2024-09-11 23:20+0000\n"
"Last-Translator: Piotr Kołtun <pkoltungm@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.8-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Zbieranie danych…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Konfiguracja"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Debugowanie"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Wyłącz kolorowe wyjście dziennika"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Wyłącz znaczniki czasu dziennika"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Włącz"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Błąd"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Udziel dostępu do konfiguracji v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Obsługa IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Informacyjne"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "Adres nasłuchu"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Wczytywanie…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Dziennik"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Plik dziennika nie istnieje."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "Dziennik jest pusty."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Poziom logowania"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Maksymalny czas przechowywania dziennika"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "NIEURUCHOMIONE"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "Obsługa nftables"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Wyłączone"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Włączone"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Otwórz interfejs WWW"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "URUCHOMIONE"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "Odśwież co %d sekund."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Wymaga nftables."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "Wymaga działającej łączności IPv6."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Śledzenie"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "Jednostka: dni."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Nieznany błąd: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Uwaga"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"v2rayA to linuksowy klient V2Ray obsługujący globalny przezroczysty serwer "
"proxy, kompatybilny z protokołami SS, SSR, Trojan (trojan-go), PingTunnel."


================================================
FILE: luci-app-v2raya/po/pt/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-08-18 18:13+0000\n"
"Last-Translator: ssantos <ssantos@web.de>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.13\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Coletando dados…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Configuração"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Depuração"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Desativar saída colorida do registo"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Ativar"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Erro"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Suporte a IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Informações"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Registo"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Nível do registo"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "NÃO ESTÁ EM EXECUÇÃO"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Abrir Interface Web"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "EM EXECUÇÃO"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Rastreamento"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Erro desconhecido: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Aviso"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/pt_BR/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-08-06 17:02+0000\n"
"Last-Translator: Janderson Vieira Santos <jandersonvs79@gmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsv2raya/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.13-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Automatico"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Habilitar"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Suporte IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Registro"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Arquivo de log não existe."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Nível do registro"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "NÃO ESTÁ EM EXECUÇÃO"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Ligado"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Abrir interface Web"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "EM EXECUÇÃO"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Rastreamento"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Erro desconhecido: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Aviso"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/ro/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-11-03 02:02+0000\n"
"Last-Translator: CRISTIAN ANDREI <cristianvdr@gmail.com>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.14.1-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Colectare date…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Configurație"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Activați"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Suport IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Jurnal"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Nivel de jurnal"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Oprit"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Pornit"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Deschideți Interfața Web"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "Funcţionare"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Urmă"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Atenție"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/ru/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-08-03 11:02+0000\n"
"Last-Translator: SnIPeRSnIPeR <snipersniper@users.noreply.hosted.weblate.org>"
"\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.13-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Авто"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Сбор данных…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Конфигурация"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Отладка"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Отключение цветного вывода журнала"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Отключение временных меток журнала"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Включить"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Ошибка"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "Предоставление доступа к конфигурации v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Поддержка IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Информация"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "Адрес для прослушивания"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Загрузка…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Журнал"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Файл журнала не существует."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "Журнал пуст."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Уровень журнала"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Максимальный период хранения журнала"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "НЕ ЗАПУЩЕНО"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "Поддержка Nftables"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Выключено"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Включено"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Открытый веб-интерфейс"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "ЗАПУЩЕНО"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "Обновляйть каждые %d секунд."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Требуется nftables."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "Требуется рабочее подключение IPv6."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "Трасировка"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "Единица измерения: дни."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Неизвестная ошибка: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Предупреждение"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "v2rayA"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"v2rayA - это клиент V2Ray Linux, поддерживающий глобальный прозрачный "
"прокси, совместимый с протоколами SS, SSR, Trojan(trojan-go), PingTunnel."


================================================
FILE: luci-app-v2raya/po/sk/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-05-30 20:29+0000\n"
"Last-Translator: Jan Vongrej <jan.vongrej@gmail.com>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/sk/>\n"
"Language: sk\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.12-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Automatické"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/sv/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2025-07-15 10:11+0000\n"
"Last-Translator: Stefan Bjornelund the Gnome "
"<stefan.bjornelund.gnome@gmail.com>\n"
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.13-dev\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Auto"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Konfiguration"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Avlusa"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Aktivera"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "Stöd för IPv6"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Info"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Logg"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Logg-filen existerar inte."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Logg-nivå"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "KÖRS INTE"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Av"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "På"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "Öppna webbgränssnittet"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "KÖRS"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "Okänt fel: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "Varna"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/ta/v2raya.po
================================================
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-26 13:49+0000\n"
"Last-Translator: தமிழ்நேரம் <anishprabu.t@gmail.com>\n"
"Language-Team: Tamil <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "தானி"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "தரவு சேகரித்தல்…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "உள்ளமைவு"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "பிழைத்திருத்தம்"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "பதிவு வண்ண வெளியீட்டை முடக்கு"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "பதிவு நேர முத்திரையை முடக்கு"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "இயக்கு"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "பிழை"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "V2RAYA உள்ளமைவுக்கு அணுகல் வழங்கவும்"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "ஐபிவி 6 உதவி"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "தகவல்"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "கேட்கும் முகவரி"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "ஏற்றுகிறது…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "பதிவு"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "பதிவு கோப்பு இல்லை."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "பதிவு சுத்தமாக உள்ளது."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "பதிவு நிலை"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "அதிகபட்ச பதிவு தக்கவைப்பு காலம்"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "ஓடவில்லை"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "Nftables உதவி"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "அணை"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "ஆன்"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr "வலை இடைமுகத்தைத் திறக்கவும்"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr "இயங்கும்"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr "ஒவ்வொரு %d விநாடிகளையும் புதுப்பிக்கவும்."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr "Nftables தேவை."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr "வேலை செய்யும் ஐபிவி 6 இணைப்பு தேவை."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr "சுவடு"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr "அலகு: நாட்கள்."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr "தெரியாத பிழை: %s"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr "எச்சரிக்கை"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr "B2ra"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""
"வி 2 ராயா என்பது வி 2 ரே லினக்ச் கிளையன்ட் ஆகும், இது உலகளாவிய வெளிப்படையான "
"ப்ராக்சியை ஆதரிக்கிறது, இது எச்.எச்., எச்.எச்.ஆர், ட்ரோசன் (ட்ரோசன்-கோ), பிங்டன்னல் "
"நெறிமுறைகளுடன் இணக்கமானது."


================================================
FILE: luci-app-v2raya/po/templates/v2raya.pot
================================================
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr ""

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30
msgid "Open Web Interface"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
msgid "RUNNING"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65
msgid "Refresh every %d seconds."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85
msgid "Requires nftables."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78
msgid "Requires working IPv6 connectivity."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92
msgid "Trace"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100
msgid "Unit: days."
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52
msgid "Unknown error: %s"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95
msgid "Warn"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50
#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3
msgid "v2rayA"
msgstr ""

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51
msgid ""
"v2rayA is a V2Ray Linux client supporting global transparent proxy, "
"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols."
msgstr ""


================================================
FILE: luci-app-v2raya/po/tr/v2raya.po
================================================
msgid ""
msgstr ""
"Project-Id-Version: luci-app-v 2raya\n"
"PO-Revision-Date: 2024-08-17 13:21+0000\n"
"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsv2raya/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.7\n"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86
msgid "Auto"
msgstr "Otomatik"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30
msgid "Collecting data…"
msgstr "Veri toplama…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13
msgid "Configuration"
msgstr "Yapılandırma"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93
msgid "Debug"
msgstr "Hata Ayıklama"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104
msgid "Disable log color output"
msgstr "Günlük renk çıktısını devre dışı bırak"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106
msgid "Disable log timestamp"
msgstr "Günlük zaman damgasını devre dışı bırak"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70
msgid "Enable"
msgstr "Etkinleştir"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96
msgid "Error"
msgstr "Hata"

#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3
msgid "Grant access to v2rayA configuration"
msgstr "v2rayA yapılandırmasına erişim izni verin"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77
msgid "IPv6 support"
msgstr "IPv6 desteği"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94
msgid "Info"
msgstr "Bilgi"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73
msgid "Listening address"
msgstr "Dinleme adresi"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28
msgid "Loading…"
msgstr "Yükleniyor…"

#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21
msgid "Log"
msgstr "Günlük"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48
msgid "Log file does not exist."
msgstr "Günlük dosyası mevcut değil."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39
msgid "Log is clean."
msgstr "Günlük temiz."

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91
msgid "Log level"
msgstr "Günlük seviyesi"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99
msgid "Max log retention period"
msgstr "Maksimum günlük saklama süresi"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33
msgid "NOT RUNNING"
msgstr "ÇALIŞMIYOR"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84
msgid "Nftables support"
msgstr "Nftables desteği"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88
msgid "Off"
msgstr "Kapalı"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80
#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87
msgid "On"
msgstr "Açık"

#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2ray
Download .txt
gitextract_d72_dt3t/

├── .github/
│   ├── issue_template
│   └── workflows/
│       ├── Dockerfile
│       ├── ci_helpers.sh
│       ├── entrypoint.sh
│       └── multi-arch-build.yml
├── README.md
├── README.zh-cn.md
├── ca-certificates/
│   ├── Makefile
│   └── patches/
│       └── 0001-ca-certificates-fix-python3-cryptography-woes-in-cer.patch
├── luci-app-v2raya/
│   ├── Makefile
│   ├── htdocs/
│   │   └── luci-static/
│   │       └── resources/
│   │           └── view/
│   │               └── v2raya/
│   │                   ├── config.js
│   │                   └── log.js
│   ├── po/
│   │   ├── ar/
│   │   │   └── v2raya.po
│   │   ├── bg/
│   │   │   └── v2raya.po
│   │   ├── bn_BD/
│   │   │   └── v2raya.po
│   │   ├── ca/
│   │   │   └── v2raya.po
│   │   ├── cs/
│   │   │   └── v2raya.po
│   │   ├── da/
│   │   │   └── v2raya.po
│   │   ├── de/
│   │   │   └── v2raya.po
│   │   ├── el/
│   │   │   └── v2raya.po
│   │   ├── es/
│   │   │   └── v2raya.po
│   │   ├── fi/
│   │   │   └── v2raya.po
│   │   ├── fr/
│   │   │   └── v2raya.po
│   │   ├── ga/
│   │   │   └── v2raya.po
│   │   ├── he/
│   │   │   └── v2raya.po
│   │   ├── hi/
│   │   │   └── v2raya.po
│   │   ├── hu/
│   │   │   └── v2raya.po
│   │   ├── it/
│   │   │   └── v2raya.po
│   │   ├── ja/
│   │   │   └── v2raya.po
│   │   ├── ko/
│   │   │   └── v2raya.po
│   │   ├── lt/
│   │   │   └── v2raya.po
│   │   ├── mr/
│   │   │   └── v2raya.po
│   │   ├── ms/
│   │   │   └── v2raya.po
│   │   ├── nb_NO/
│   │   │   └── v2raya.po
│   │   ├── nl/
│   │   │   └── v2raya.po
│   │   ├── pl/
│   │   │   └── v2raya.po
│   │   ├── pt/
│   │   │   └── v2raya.po
│   │   ├── pt_BR/
│   │   │   └── v2raya.po
│   │   ├── ro/
│   │   │   └── v2raya.po
│   │   ├── ru/
│   │   │   └── v2raya.po
│   │   ├── sk/
│   │   │   └── v2raya.po
│   │   ├── sv/
│   │   │   └── v2raya.po
│   │   ├── ta/
│   │   │   └── v2raya.po
│   │   ├── templates/
│   │   │   └── v2raya.pot
│   │   ├── tr/
│   │   │   └── v2raya.po
│   │   ├── uk/
│   │   │   └── v2raya.po
│   │   ├── vi/
│   │   │   └── v2raya.po
│   │   ├── yua/
│   │   │   └── v2raya.po
│   │   ├── zh_Hans/
│   │   │   └── v2raya.po
│   │   └── zh_Hant/
│   │       └── v2raya.po
│   └── root/
│       └── usr/
│           └── share/
│               ├── luci/
│               │   └── menu.d/
│               │       └── luci-app-v2raya.json
│               └── rpcd/
│                   └── acl.d/
│                       └── luci-app-v2raya.json
├── v2fly-geodata/
│   ├── Makefile
│   └── update.sh
├── v2ray-core/
│   ├── Makefile
│   └── test.sh
├── v2raya/
│   ├── Makefile
│   ├── files/
│   │   ├── v2raya.config
│   │   └── v2raya.init
│   └── test.sh
├── v2raya.pub
└── xray-core/
    ├── Makefile
    └── test.sh
Download .txt
SYMBOL INDEX (2 symbols across 1 files)

FILE: luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js
  function getServiceStatus (line 15) | function getServiceStatus() {
  function renderStatus (line 25) | function renderStatus(isRunning, port) {
Condensed preview — 63 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (259K chars).
[
  {
    "path": ".github/issue_template",
    "chars": 176,
    "preview": "<!--\nPlease make sure that you have `wget-ssl` installed on your device.\n请确认你的设备上已正确安装 `wget-ssl`。\n\nPlease check README "
  },
  {
    "path": ".github/workflows/Dockerfile",
    "chars": 104,
    "preview": "ARG ARCH=x86-64\nFROM immortalwrt/rootfs:$ARCH\n\nADD entrypoint.sh /entrypoint.sh\n\nCMD [\"/entrypoint.sh\"]\n"
  },
  {
    "path": ".github/workflows/ci_helpers.sh",
    "chars": 232,
    "preview": "#!/bin/sh\n\ncolor_out() {\n\tprintf \"\\e[0;$1m$PKG_NAME: %s\\e[0;0m\\n\" \"$2\"\n}\n\nsuccess() {\n\tcolor_out 32 \"$1\"\n}\n\ninfo() {\n\tco"
  },
  {
    "path": ".github/workflows/entrypoint.sh",
    "chars": 1817,
    "preview": "#!/bin/sh\n\n# not enabling `errtrace` and `pipefail` since those are bash specific\nset -o errexit # failing commands caus"
  },
  {
    "path": ".github/workflows/multi-arch-build.yml",
    "chars": 4473,
    "preview": "name: Build v2rayA feed\n\non:\n  workflow_dispatch:\n  release:\n    types:\n      - published\n\njobs:\n  build:\n    name: Buil"
  },
  {
    "path": "README.md",
    "chars": 2156,
    "preview": "# v2raya-openwrt\n\nopkg feed of v2rayA for OpenWrt users.\n\n[简体中文](README.zh-cn.md)\n\n## How to install\n\n1. Add v2rayA usig"
  },
  {
    "path": "README.zh-cn.md",
    "chars": 1706,
    "preview": "# v2raya-openwrt\n\n适用于 OpenWrt 用户的 v2rayA opkg 软件源。\n\n[English](README.md)\n\n## 安装方法\n\n1. 导入 v2rayA 签名文件\n\n   > 请确认软件包 `wget-"
  },
  {
    "path": "ca-certificates/Makefile",
    "chars": 1917,
    "preview": "#\n# Copyright (C) 2006-2017 OpenWrt.org\n#\n# This is free software, licensed under the GNU General Public License v2.\n# S"
  },
  {
    "path": "ca-certificates/patches/0001-ca-certificates-fix-python3-cryptography-woes-in-cer.patch",
    "chars": 1728,
    "preview": "From 3c51cb5ff1d0db41fb3288fb555c7e7055cf3e86 Mon Sep 17 00:00:00 2001\nFrom: Christian Lamparter <chunkeey@gmail.com>\nDa"
  },
  {
    "path": "luci-app-v2raya/Makefile",
    "chars": 381,
    "preview": "# SPDX-License-Identifier: Apache-2.0\n#\n# Copyright (C) 2024 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nLUCI_TITLE:=Lu"
  },
  {
    "path": "luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js",
    "chars": 3123,
    "preview": "'use strict';\n'require form';\n'require poll';\n'require rpc';\n'require uci';\n'require view';\n\nconst callServiceList = rpc"
  },
  {
    "path": "luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js",
    "chars": 1615,
    "preview": "'use strict';\n'require dom';\n'require fs';\n'require poll';\n'require uci';\n'require view';\n\nreturn view.extend({\n\trender:"
  },
  {
    "path": "luci-app-v2raya/po/ar/v2raya.po",
    "chars": 5196,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-07-16 16:41+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/bg/v2raya.po",
    "chars": 5158,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-10-27 15:04+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/bn_BD/v2raya.po",
    "chars": 5134,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-04-15 20:45+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/ca/v2raya.po",
    "chars": 5115,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-03-10 02:48+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/cs/v2raya.po",
    "chars": 5877,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-10 23:01+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/da/v2raya.po",
    "chars": 4926,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/de/v2raya.po",
    "chars": 5834,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-02-07 23:08+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/el/v2raya.po",
    "chars": 5122,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-11-09 08:59+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/es/v2raya.po",
    "chars": 5818,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-06-20 21:42+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/fi/v2raya.po",
    "chars": 5753,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-04 15:04+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/fr/v2raya.po",
    "chars": 5273,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-11 21:03+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/ga/v2raya.po",
    "chars": 5741,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"PO-Revision-Date: 2025-05-06 05:38+0000\\n\"\n\"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmai"
  },
  {
    "path": "luci-app-v2raya/po/he/v2raya.po",
    "chars": 4926,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/hi/v2raya.po",
    "chars": 4879,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/hu/v2raya.po",
    "chars": 5206,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-31 20:15+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/it/v2raya.po",
    "chars": 5352,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-07-17 22:44+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/ja/v2raya.po",
    "chars": 5097,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-10-09 05:48+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/ko/v2raya.po",
    "chars": 5089,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-06 11:54+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/lt/v2raya.po",
    "chars": 6028,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-02-15 17:31+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/mr/v2raya.po",
    "chars": 4879,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/ms/v2raya.po",
    "chars": 4879,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/nb_NO/v2raya.po",
    "chars": 5689,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-03-14 09:11+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/nl/v2raya.po",
    "chars": 5103,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-01-20 10:53+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/pl/v2raya.po",
    "chars": 5826,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-09-11 23:20+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/pt/v2raya.po",
    "chars": 5303,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-18 18:13+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/pt_BR/v2raya.po",
    "chars": 5306,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-06 17:02+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/ro/v2raya.po",
    "chars": 5285,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-11-03 02:02+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/ru/v2raya.po",
    "chars": 5895,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-03 11:02+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/sk/v2raya.po",
    "chars": 5134,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-30 20:29+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/sv/v2raya.po",
    "chars": 5268,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-07-15 10:11+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/ta/v2raya.po",
    "chars": 5700,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"PO-Revision-Date: 2025-01-26 13:49+0000\\n\"\n\"Last-Translator: தமிழ்நேரம் <anishprabu.t@gmail.com>\\n\"\n"
  },
  {
    "path": "luci-app-v2raya/po/templates/v2raya.pot",
    "chars": 4689,
    "preview": "msgid \"\"\nmsgstr \"Content-Type: text/plain; charset=UTF-8\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/"
  },
  {
    "path": "luci-app-v2raya/po/tr/v2raya.po",
    "chars": 5726,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-08-17 13:21+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/uk/v2raya.po",
    "chars": 5839,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-07-22 08:17+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/vi/v2raya.po",
    "chars": 5169,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-05 09:41+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/yua/v2raya.po",
    "chars": 5748,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"PO-Revision-Date: 2024-09-24 00:39+0000\\n\"\n\"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>"
  },
  {
    "path": "luci-app-v2raya/po/zh_Hans/v2raya.po",
    "chars": 5362,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-04-08 17:22+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/po/zh_Hant/v2raya.po",
    "chars": 5279,
    "preview": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-10-05 13:02+0000\\n\"\n\"Last-Translator"
  },
  {
    "path": "luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json",
    "chars": 456,
    "preview": "{\n\t\"admin/services/v2raya\": {\n\t\t\"title\": \"v2rayA\",\n\t\t\"action\": {\n\t\t\t\"type\": \"firstchild\"\n\t\t},\n\t\t\"depends\": {\n\t\t\t\"acl\": ["
  },
  {
    "path": "luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json",
    "chars": 275,
    "preview": "{\n\t\"luci-app-v2raya\": {\n\t\t\"description\": \"Grant access to v2rayA configuration\",\n\t\t\"read\": {\n\t\t\t\"file\": {\n\t\t\t\t\"/var/log/"
  },
  {
    "path": "v2fly-geodata/Makefile",
    "chars": 2112,
    "preview": "# SPDX-License-Identifier: GPL-3.0-only\n#\n# Copyright (C) 2021 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nPKG_NAME:=v2"
  },
  {
    "path": "v2fly-geodata/update.sh",
    "chars": 816,
    "preview": "#!/bin/bash\n\nset -x\n\nexport CURDIR=\"$(cd \"$(dirname $0)\"; pwd)\"\n\nfunction update_geodata() {\n\tlocal type=\"$1\"\n\tlocal rep"
  },
  {
    "path": "v2ray-core/Makefile",
    "chars": 2310,
    "preview": "# SPDX-License-Identifier: GPL-3.0-only\n#\n# Copyright (C) 2021 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nPKG_NAME:=v2"
  },
  {
    "path": "v2ray-core/test.sh",
    "chars": 92,
    "preview": "#!/bin/sh\n\ncase \"$1\" in\n\t\"v2ray-core\")\n\t\tv2ray version 2>&1 | grep \"$PKG_VERSION\"\n\t\t;;\nesac\n"
  },
  {
    "path": "v2raya/Makefile",
    "chars": 2570,
    "preview": "# SPDX-License-Identifier: GPL-3.0-only\n#\n# Copyright (C) 2021-2023 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nPKG_NAM"
  },
  {
    "path": "v2raya/files/v2raya.config",
    "chars": 1366,
    "preview": "\nconfig v2raya 'config'\n\toption enabled '0'\n\n\t# Listening address\n\toption address '0.0.0.0:2017'\n\n\t# Make sure your IPv6"
  },
  {
    "path": "v2raya/files/v2raya.init",
    "chars": 1663,
    "preview": "#!/bin/sh /etc/rc.common\n# Copyright (C) 2021 Tianling Shen <cnsztl@immortalwrt.org>\n\nUSE_PROCD=1\nSTART=99\n\nCONF=\"v2raya"
  },
  {
    "path": "v2raya/test.sh",
    "chars": 50,
    "preview": "#!/bin/sh\n\nv2raya --version | grep \"$PKG_VERSION\"\n"
  },
  {
    "path": "v2raya.pub",
    "chars": 111,
    "preview": "untrusted comment: Public usign key for v2rayA builds\nRWSUzCqDT7CqA+u/9hvcT3Hkw3fUc1dYnpsLmIsayjPmsZM5NjYKYiHW\n"
  },
  {
    "path": "xray-core/Makefile",
    "chars": 1782,
    "preview": "# SPDX-License-Identifier: GPL-3.0-only\n#\n# Copyright (C) 2021 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nPKG_NAME:=xr"
  },
  {
    "path": "xray-core/test.sh",
    "chars": 51,
    "preview": "#!/bin/sh\n\nxray version 2>&1 | grep \"$PKG_VERSION\"\n"
  }
]

About this extraction

This page contains the full source code of the v2rayA/v2raya-openwrt GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 63 files (231.1 KB), approximately 75.8k tokens, and a symbol index with 2 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!