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 ================================================ ================================================ 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:///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://: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:///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://: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 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 Reported-by: Shane Synan Signed-off-by: Christian Lamparter --- --- 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 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 = '%s %s'; var renderHTML; if (isRunning) { var button = String.format(' %s', 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 \n" "Language-Team: Arabic \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 \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 \n" "Language-Team: Bengali (Bangladesh) \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 \n" "Language-Team: Catalan \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 \n" "Language-Team: Czech \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 \n" "Language-Team: German \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 \n" "Language-Team: Greek \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 \n" "Language-Team: Spanish \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 \n" "Language-Team: Finnish \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 \n" "Language-Team: French \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 \n" "Language-Team: Irish \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 \n" "Language-Team: Hungarian \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 v2rayA 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 \n" "Language-Team: Italian \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 \n" "Language-Team: Japanese \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 \n" "Language-Team: Korean \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 \n" "Language-Team: Lithuanian \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 \n" "Language-Team: Norwegian Bokmål \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 \n" "Language-Team: Dutch \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 \n" "Language-Team: Polish \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 \n" "Language-Team: Portuguese \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 \n" "Language-Team: Portuguese (Brazil) \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 \n" "Language-Team: Romanian \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 " "\n" "Language-Team: Russian \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 \n" "Language-Team: Slovak \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 " "\n" "Language-Team: Swedish \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: தமிழ்நேரம் \n" "Language-Team: Tamil \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 \n" "Language-Team: Turkish \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/v2raya/config.js:30 msgid "Open Web Interface" msgstr "Web Arayüzünü Aç" #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31 msgid "RUNNING" msgstr "ÇALIŞIYOR" #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65 msgid "Refresh every %d seconds." msgstr "Her %d saniyede bir yenileyin." #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85 msgid "Requires nftables." msgstr "nftables gerektirir." #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 msgid "Requires working IPv6 connectivity." msgstr "Çalışan IPv6 bağlantısı gerekir." #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 msgid "Trace" msgstr "İz" #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 msgid "Unit: days." msgstr "Birim: günler." #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52 msgid "Unknown error: %s" msgstr "Bilinmeyen hata: %s" #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 msgid "Warn" msgstr "Uyarı" #: 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, SS, SSR, Trojan (trojan-go), PingTunnel protokolleri ile uyumlu, " "küresel şeffaf proxy'yi destekleyen bir V2Ray Linux istemcisidir." ================================================ FILE: luci-app-v2raya/po/uk/v2raya.po ================================================ msgid "" msgstr "" "Project-Id-Version: luci-app-v 2raya\n" "PO-Revision-Date: 2025-07-22 08:17+0000\n" "Last-Translator: Максим Горпиніч \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.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/vi/v2raya.po ================================================ msgid "" msgstr "" "Project-Id-Version: luci-app-v 2raya\n" "PO-Revision-Date: 2025-08-05 09:41+0000\n" "Last-Translator: Vũ Minh Ngọc \n" "Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.13-dev\n" #: applications/luci-app-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 "Tự động" #: 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 #, fuzzy msgid "Collecting data…" msgstr "Đang thu thập dữ liệu…" #: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13 #, fuzzy msgid "Configuration" msgstr "Cấu hình" #: 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 "Nhật ký" #: 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 "Mức độ nhật ký" #: 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/yua/v2raya.po ================================================ msgid "" msgstr "" "PO-Revision-Date: 2024-09-24 00:39+0000\n" "Last-Translator: brodrigueznu \n" "Language-Team: Yucateco \n" "Language: yua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.8-dev\n" #: applications/luci-app-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/zh_Hans/v2raya.po ================================================ msgid "" msgstr "" "Project-Id-Version: luci-app-v 2raya\n" "PO-Revision-Date: 2024-04-08 17:22+0000\n" "Last-Translator: try496 \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_Hans\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.5-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 "打开 Web 界面" #: 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 客户端,支持 SS、SSR、Trojan" "(trojan-go)、PingTunnel 协议。" ================================================ FILE: luci-app-v2raya/po/zh_Hant/v2raya.po ================================================ msgid "" msgstr "" "Project-Id-Version: luci-app-v 2raya\n" "PO-Revision-Date: 2025-10-05 13:02+0000\n" "Last-Translator: FrzHrzn \n" "Language-Team: Chinese (Traditional Han script) \n" "Language: zh_Hant\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.14-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 "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 "開啟Web介面" #: 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 "" ================================================ FILE: luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json ================================================ { "admin/services/v2raya": { "title": "v2rayA", "action": { "type": "firstchild" }, "depends": { "acl": [ "luci-app-v2raya" ], "uci": { "v2raya": true } } }, "admin/services/v2raya/config": { "title": "Configuration", "order": 10, "action": { "type": "view", "path": "v2raya/config" } }, "admin/services/v2raya/log": { "title": "Log", "order": 20, "action": { "type": "view", "path": "v2raya/log" } } } ================================================ FILE: luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json ================================================ { "luci-app-v2raya": { "description": "Grant access to v2rayA configuration", "read": { "file": { "/var/log/v2raya/v2raya.log": [ "read" ] }, "ubus": { "service": [ "list" ] }, "uci": [ "v2raya" ] }, "write": { "uci": [ "v2raya" ] } } } ================================================ FILE: v2fly-geodata/Makefile ================================================ # SPDX-License-Identifier: GPL-3.0-only # # Copyright (C) 2021 ImmortalWrt.org include $(TOPDIR)/rules.mk PKG_NAME:=v2fly-geodata PKG_RELEASE:=1 PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Tianling Shen include $(INCLUDE_DIR)/package.mk GEOIP_VER:=202511050144 GEOIP_FILE:=geoip.dat.$(GEOIP_VER) define Download/geoip URL:=https://github.com/v2fly/geoip/releases/download/$(GEOIP_VER)/ URL_FILE:=geoip.dat FILE:=$(GEOIP_FILE) HASH:=2445b44d9ae3ab9a867c9d1e0e244646c4c378622e14b9afaf3658ecf46a40b9 endef GEOSITE_VER:=20251111080805 GEOSITE_FILE:=dlc.dat.$(GEOSITE_VER) define Download/geosite URL:=https://github.com/v2fly/domain-list-community/releases/download/$(GEOSITE_VER)/ URL_FILE:=dlc.dat FILE:=$(GEOSITE_FILE) HASH:=55e76a86c943e4d343640e3fec7e06662036489df89815b527c518f2fe3797cb endef define Package/v2fly-geodata/template TITLE:=A list to be used for routing purpose in Project V SECTION:=net CATEGORY:=Network URL:=https://www.v2fly.org PKGARCH:=all endef define Package/v2fly-geoip $(call Package/v2fly-geodata/template) TITLE+= (geoip) VERSION:=$(GEOIP_VER)-$(PKG_RELEASE) LICENSE:=CC-BY-SA-4.0 endef define Package/v2fly-geosite $(call Package/v2fly-geodata/template) TITLE+= (geosite) VERSION:=$(GEOSITE_VER)-$(PKG_RELEASE) LICENSE:=MIT endef define Build/Prepare $(call Build/Prepare/Default) ifneq ($(CONFIG_PACKAGE_v2fly-geoip),) $(call Download,geoip) endif ifneq ($(CONFIG_PACKAGE_v2fly-geosite),) $(call Download,geosite) endif endef define Build/Compile endef define Package/v2fly-geoip/install $(INSTALL_DIR) $(1)/usr/share/v2ray $(1)/usr/share/xray $(INSTALL_DATA) $(DL_DIR)/$(GEOIP_FILE) $(1)/usr/share/v2ray/geoip.dat $(LN) ../v2ray/geoip.dat $(1)/usr/share/xray/geoip.dat endef define Package/v2fly-geosite/install $(INSTALL_DIR) $(1)/usr/share/v2ray $(1)/usr/share/xray $(INSTALL_DATA) $(DL_DIR)/$(GEOSITE_FILE) $(1)/usr/share/v2ray/geosite.dat $(LN) ../v2ray/geosite.dat $(1)/usr/share/xray/geosite.dat endef $(eval $(call BuildPackage,v2fly-geoip)) $(eval $(call BuildPackage,v2fly-geosite)) ================================================ FILE: v2fly-geodata/update.sh ================================================ #!/bin/bash set -x export CURDIR="$(cd "$(dirname $0)"; pwd)" function update_geodata() { local type="$1" local repo="$2" local res="$3" local tag ver sha line tag="$(gh api "repos/$repo/releases/latest" | jq -r ".tag_name")" [ -n "$tag" ] || return 1 ver="$(awk -F "${type}_VER:=" '{print $2}' "$CURDIR/Makefile" | xargs)" [ "$tag" != "$ver" ] || return 2 sha="$(curl -fsSL "https://github.com/$repo/releases/download/$tag/$res.dat.sha256sum" | awk '{print $1}')" [ -n "$sha" ] || return 1 line="$(awk "/FILE:=\\$\(${type}_FILE\)/ {print NR}" "$CURDIR/Makefile")" sed -i -e "s/${type}_VER:=.*/${type}_VER:=$tag/" \ -e "$((line + 1))s/HASH:=.*/HASH:=$sha/" \ "$CURDIR/Makefile" } update_geodata "GEOIP" "v2fly/geoip" "geoip" update_geodata "GEOSITE" "v2fly/domain-list-community" "dlc" ================================================ FILE: v2ray-core/Makefile ================================================ # SPDX-License-Identifier: GPL-3.0-only # # Copyright (C) 2021 ImmortalWrt.org include $(TOPDIR)/rules.mk PKG_NAME:=v2ray-core PKG_VERSION:=5.41.0 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/v2fly/v2ray-core/tar.gz/v$(PKG_VERSION)? PKG_HASH:=c67caa2d73f35a9562ecaeb5184733c943c9dafb47e8f1cfeacb892a9247e9b5 PKG_LICENSE:=MIT PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Tianling Shen PKG_BUILD_DEPENDS:=golang/host PKG_BUILD_PARALLEL:=1 PKG_BUILD_FLAGS:=no-mips16 GO_PKG:=github.com/v2fly/v2ray-core/v5 GO_PKG_BUILD_PKG:=$(GO_PKG)/main GO_PKG_LDFLAGS_X:= \ $(GO_PKG).build=OpenWrt \ $(GO_PKG).version=$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk include $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk GO_PKG_TARGET_VARS:=$(filter-out CGO_ENABLED=%,$(GO_PKG_TARGET_VARS)) CGO_ENABLED=0 GO_PKG_DEFAULT_LDFLAGS:=$(filter-out -linkmode external,$(GO_PKG_DEFAULT_LDFLAGS)) GO_PKG_BUILD_VARS:=$(filter-out GOTOOLCHAIN=%,$(GO_PKG_BUILD_VARS)) GOTOOLCHAIN=go1.25.4+auto define Package/v2ray/template TITLE:=A platform for building proxies to bypass network restrictions SECTION:=net CATEGORY:=Network URL:=https://www.v2fly.org endef define Package/v2ray-core $(call Package/v2ray/template) DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle endef define Package/v2ray-extra $(call Package/v2ray/template) TITLE+= (extra resources) DEPENDS:=v2ray-core PKGARCH:=all endef define Package/v2ray/description Project V is a set of network tools that help you to build your own computer network. It secures your network connections and thus protects your privacy. endef define Package/v2ray-core/description $(call Package/v2ray/description) endef define Package/v2ray-extra/description $(call Package/v2ray/description) This includes extra resources for v2ray-core. endef define Package/v2ray-core/install $(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR)) $(INSTALL_DIR) $(1)/usr/bin/ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/main $(1)/usr/bin/v2ray endef define Package/v2ray-extra/install $(INSTALL_DIR) $(1)/usr/share/v2ray/ $(CP) $(PKG_BUILD_DIR)/release/extra/* $(1)/usr/share/v2ray/ endef $(eval $(call BuildPackage,v2ray-core)) $(eval $(call BuildPackage,v2ray-extra)) ================================================ FILE: v2ray-core/test.sh ================================================ #!/bin/sh case "$1" in "v2ray-core") v2ray version 2>&1 | grep "$PKG_VERSION" ;; esac ================================================ FILE: v2raya/Makefile ================================================ # SPDX-License-Identifier: GPL-3.0-only # # Copyright (C) 2021-2023 ImmortalWrt.org include $(TOPDIR)/rules.mk PKG_NAME:=v2rayA PKG_VERSION:=2.2.7.4 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/v2rayA/v2rayA/tar.gz/v$(PKG_VERSION)? PKG_HASH:=801a5488493cef8c2603d596e5982d226c07ad8f4a2969d942922be79169ec29 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/service PKG_LICENSE:=AGPL-3.0-only PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Tianling Shen PKG_BUILD_DEPENDS:=golang/host PKG_BUILD_PARALLEL:=1 PKG_BUILD_FLAGS:=no-mips16 GO_PKG:=github.com/v2rayA/v2rayA GO_PKG_LDFLAGS_X:= \ $(GO_PKG)/conf.Version=$(PKG_VERSION) \ $(GO_PKG)/core/iptables.TproxyNotSkipBr=true include $(INCLUDE_DIR)/package.mk include $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk TAR_OPTIONS+= --strip-components 1 TAR_CMD=$(HOST_TAR) -C $(1)/.. $(TAR_OPTIONS) define Package/v2raya TITLE:=A Linux web GUI client of Project V SECTION:=net CATEGORY:=Network SUBMENU:=Web Servers/Proxies DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle URL:=https://v2raya.org endef define Package/v2raya/description v2rayA is a V2Ray Linux client supporting global transparent proxy, compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols. endef define Package/v2raya/conffiles /etc/v2raya/ /etc/config/v2raya endef WEB_FILE:=$(PKG_NAME)-web-$(PKG_VERSION).tar.gz define Download/v2raya-web URL:=https://github.com/v2rayA/v2rayA/releases/download/v$(PKG_VERSION)/ URL_FILE:=web.tar.gz FILE:=$(WEB_FILE) HASH:=985b083a75b7b34ea9c5151cbc096f6f44fa369a807fea85b435fed5229dae65 endef GO_PKG_TARGET_VARS:=$(filter-out CGO_ENABLED=%,$(GO_PKG_TARGET_VARS)) CGO_ENABLED=0 GO_PKG_DEFAULT_LDFLAGS:=$(filter-out -linkmode external,$(GO_PKG_DEFAULT_LDFLAGS)) define Build/Prepare $(call Build/Prepare/Default) ( \ mkdir -p $(PKG_BUILD_DIR)/server/router/web ; \ gzip -dc $(DL_DIR)/$(WEB_FILE) | $(HOST_TAR) -C $(PKG_BUILD_DIR)/server/router/web $(TAR_OPTIONS) ; \ ) endef define Package/v2raya/install $(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR)) $(INSTALL_DIR) $(1)/usr/bin/ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/v2rayA $(1)/usr/bin/v2raya $(INSTALL_DIR) $(1)/etc/config/ $(INSTALL_CONF) $(CURDIR)/files/v2raya.config $(1)/etc/config/v2raya $(INSTALL_DIR) $(1)/etc/init.d/ $(INSTALL_BIN) $(CURDIR)/files/v2raya.init $(1)/etc/init.d/v2raya endef $(eval $(call Download,v2raya-web)) $(eval $(call GoBinPackage,v2raya)) $(eval $(call BuildPackage,v2raya)) ================================================ FILE: v2raya/files/v2raya.config ================================================ config v2raya 'config' option enabled '0' # Listening address option address '0.0.0.0:2017' # Make sure your IPv6 network works fine before you turn it on. # Optional values: auto, on, off. option ipv6_support 'auto' # Experimental feature. Make sure you have installed nftables. # Optional values: auto, on, off. option nftables_support 'auto' # Optional values: trace, debug, info, warn or error option log_level 'info' # Maximum number of days to keep log files option log_max_days '3' option log_disable_color '1' option log_disable_timestamp '0' # Executable v2ray binary path. Auto-detect if put it empty option v2ray_bin '' # Additional v2ray config directory, files in it will be combined with config generated by v2rayA option v2ray_confdir '' # The executable file to run in the transparent proxy life-cycle. # v2rayA will pass in the --transparent-type (tproxy, redirect) # and --stage (pre-start, post-start, pre-stop, post-stop) arguments. option transparent_hook '' # The executable file to run in the v2ray-core life-cycle. # v2rayA will pass in the --stage (pre-start, post-start, pre-stop, post-stop) argument. option core_hook '' # The executable file to run in the v2ray-core life-cycle. # v2rayA will pass in the --stage (pre-start, post-start, pre-stop, post-stop) argument. option plugin_manager '' ================================================ FILE: v2raya/files/v2raya.init ================================================ #!/bin/sh /etc/rc.common # Copyright (C) 2021 Tianling Shen USE_PROCD=1 START=99 CONF="v2raya" PROG="/usr/bin/v2raya" is_enabled() { local enabled config_get_bool enabled "$1" "$2" "${3:-0}" if [ "$enabled" -eq "1" ]; then return 0 else return 1 fi } append_env() { procd_append_param env "V2RAYA_$(echo "$1" | tr "[a-z]" "[A-Z]")"="$2" } append_env_arg() { local value config_get value "$1" "$2" $3 [ -n "$value" ] && append_env "$2" "$value" } append_env_bool() { is_enabled "$1" "$2" && append_env "$2" "true" } start_service() { config_load "$CONF" is_enabled "config" "enabled" || return 1 procd_open_instance "$CONF" procd_set_param command "$PROG" procd_set_param env XDG_DATA_HOME="/usr/share" append_env "config" "/etc/v2raya" append_env "log_file" "/var/log/v2raya/v2raya.log" append_env_arg "config" "address" "0.0.0.0:2017" append_env_arg "config" "ipv6_support" "auto" append_env_arg "config" "nftables_support" "auto" append_env_arg "config" "log_level" "info" append_env_arg "config" "log_max_days" "3" append_env_arg "config" "v2ray_bin" append_env_arg "config" "v2ray_confdir" append_env_arg "config" "transparent_hook" append_env_arg "config" "core_hook" append_env_arg "config" "plugin_manager" append_env_bool "config" "log_disable_color" append_env_bool "config" "log_disable_timestamp" procd_set_param limits core="unlimited" procd_set_param limits nofile="1000000 1000000" procd_set_param respawn procd_set_param stdout 1 procd_set_param stderr 1 procd_close_instance } reload_service() { stop start } service_triggers() { procd_add_reload_trigger "$CONF" } ================================================ FILE: v2raya/test.sh ================================================ #!/bin/sh v2raya --version | grep "$PKG_VERSION" ================================================ FILE: v2raya.pub ================================================ untrusted comment: Public usign key for v2rayA builds RWSUzCqDT7CqA+u/9hvcT3Hkw3fUc1dYnpsLmIsayjPmsZM5NjYKYiHW ================================================ FILE: xray-core/Makefile ================================================ # SPDX-License-Identifier: GPL-3.0-only # # Copyright (C) 2021 ImmortalWrt.org include $(TOPDIR)/rules.mk PKG_NAME:=xray-core PKG_VERSION:=25.10.15 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/XTLS/Xray-core/tar.gz/v$(PKG_VERSION)? PKG_HASH:=5df030f456db58b682110545e19da9b971303387955562ec408f484580450736 PKG_MAINTAINER:=Tianling Shen PKG_LICENSE:=MPL-2.0 PKG_LICENSE_FILES:=LICENSE PKG_BUILD_DIR:=$(BUILD_DIR)/Xray-core-$(PKG_VERSION) PKG_BUILD_DEPENDS:=golang/host PKG_BUILD_PARALLEL:=1 PKG_BUILD_FLAGS:=no-mips16 GO_PKG:=github.com/xtls/xray-core GO_PKG_BUILD_PKG:=github.com/xtls/xray-core/main GO_PKG_LDFLAGS_X:= \ $(GO_PKG)/core.build=OpenWrt \ $(GO_PKG)/core.version=$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk include $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk GO_PKG_TARGET_VARS:=$(filter-out CGO_ENABLED=%,$(GO_PKG_TARGET_VARS)) CGO_ENABLED=0 GO_PKG_DEFAULT_LDFLAGS:=$(filter-out -linkmode external,$(GO_PKG_DEFAULT_LDFLAGS)) GO_PKG_BUILD_VARS:=$(filter-out GOTOOLCHAIN=%,$(GO_PKG_BUILD_VARS)) GOTOOLCHAIN=go1.25.4+auto define Package/xray-core TITLE:=A platform for building proxies to bypass network restrictions SECTION:=net CATEGORY:=Network URL:=https://xtls.github.io DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle endef define Package/xray-core/description Xray, Penetrates Everything. It helps you to build your own computer network. It secures your network connections and thus protects your privacy. endef define Package/xray-core/install $(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR)) $(INSTALL_DIR) $(1)/usr/bin/ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/main $(1)/usr/bin/xray endef $(eval $(call BuildPackage,xray-core)) ================================================ FILE: xray-core/test.sh ================================================ #!/bin/sh xray version 2>&1 | grep "$PKG_VERSION"