[
  {
    "path": ".github/issue_template",
    "content": "<!--\nPlease make sure that you have `wget-ssl` installed on your device.\n请确认你的设备上已正确安装 `wget-ssl`。\n\nPlease check README before opening a new issue.\n打开 issue 前请先查看 README。\n!-->\n"
  },
  {
    "path": ".github/workflows/Dockerfile",
    "content": "ARG ARCH=x86-64\nFROM immortalwrt/rootfs:$ARCH\n\nADD entrypoint.sh /entrypoint.sh\n\nCMD [\"/entrypoint.sh\"]\n"
  },
  {
    "path": ".github/workflows/ci_helpers.sh",
    "content": "#!/bin/sh\n\ncolor_out() {\n\tprintf \"\\e[0;$1m$PKG_NAME: %s\\e[0;0m\\n\" \"$2\"\n}\n\nsuccess() {\n\tcolor_out 32 \"$1\"\n}\n\ninfo() {\n\tcolor_out 36 \"$1\"\n}\n\nerr() {\n\tcolor_out 31 \"$1\"\n}\n\nwarn() {\n\tcolor_out 33 \"$1\"\n}\n\nerr_die() {\n\terr \"$1\"\n\texit 1\n}\n"
  },
  {
    "path": ".github/workflows/entrypoint.sh",
    "content": "#!/bin/sh\n\n# not enabling `errtrace` and `pipefail` since those are bash specific\nset -o errexit # failing commands causes script to fail\nset -o nounset # undefined variables causes script to fail\n\necho \"src/gz v2raya file:///ci\" >> /etc/opkg/distfeeds.conf\n\nFINGERPRINT=\"$(usign -F -p /ci/v2raya.pub)\"\ncp /ci/v2raya.pub \"/etc/opkg/keys/$FINGERPRINT\"\n\nmkdir -p /var/lock/\n\nopkg update\n\nexport CI_HELPER=\"/ci/.github/workflows/ci_helpers.sh\"\n\nfor PKG in /ci/*.ipk; do\n\ttar -xzOf \"$PKG\" ./control.tar.gz | tar xzf - ./control\n\t# package name including variant\n\tPKG_NAME=$(sed -ne 's#^Package: \\(.*\\)$#\\1#p' ./control)\n\t# package version without release\n\tPKG_VERSION=$(sed -ne 's#^Version: \\(.*\\)$#\\1#p' ./control)\n\tPKG_VERSION=\"${PKG_VERSION%-[!-]*}\"\n\t# package source containing test.sh script\n\tPKG_SOURCE=$(sed -ne 's#^Source: \\(.*\\)$#\\1#p' ./control)\n\tPKG_SOURCE=\"${PKG_SOURCE#/feed/}\"\n\n\techo\n\techo \"Testing package $PKG_NAME in version $PKG_VERSION from $PKG_SOURCE\"\n\n\tif ! [ -d \"/ci/$PKG_SOURCE\" ]; then\n\t\techo \"$PKG_SOURCE is not a directory\"\n\t\texit 1\n\tfi\n\n\tPRE_TEST_SCRIPT=\"/ci/$PKG_SOURCE/pre-test.sh\"\n\tTEST_SCRIPT=\"/ci/$PKG_SOURCE/test.sh\"\n\n\tif ! [ -f \"$TEST_SCRIPT\" ]; then\n\t\techo \"No test.sh script available\"\n\t\tcontinue\n\tfi\n\n\texport PKG_NAME PKG_VERSION\n\n\tif [ -f \"$PRE_TEST_SCRIPT\" ]; then\n\t\techo \"Use package specific pre-test.sh\"\n\t\tif sh \"$PRE_TEST_SCRIPT\" \"$PKG_NAME\" \"$PKG_VERSION\"; then\n\t\t\techo \"Pre-test successful\"\n\t\telse\n\t\t\techo \"Pre-test failed\"\n\t\t\texit 1\n\t\tfi\n\telse\n\t\techo \"No pre-test.sh script available\"\n\tfi\n\n\topkg install \"$PKG\"\n\n\techo \"Use package specific test.sh\"\n\tif sh \"$TEST_SCRIPT\" \"$PKG_NAME\" \"$PKG_VERSION\"; then\n\t\techo \"Test successful\"\n\telse\n\t\techo \"Test failed\"\n\t\texit 1\n\tfi\n\n\topkg remove \"$PKG_NAME\" --force-removal-of-dependent-packages --force-remove --autoremove || true\ndone\n"
  },
  {
    "path": ".github/workflows/multi-arch-build.yml",
    "content": "name: Build v2rayA feed\n\non:\n  workflow_dispatch:\n  release:\n    types:\n      - published\n\njobs:\n  build:\n    name: Build packages for ${{ matrix.arch }}\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n      max-parallel: 5\n      matrix:\n        include:\n          - arch: aarch64_cortex-a53\n            runtime_test: false\n          - arch: aarch64_cortex-a72\n            runtime_test: false\n          - arch: aarch64_cortex-a76\n            runtime_test: false\n          - arch: aarch64_generic\n            runtime_test: true\n          - arch: arm_arm1176jzf-s_vfp\n            runtime_test: false\n          - arch: arm_arm926ej-s\n            runtime_test: false\n          - arch: arm_cortex-a15_neon-vfpv4\n            runtime_test: true\n          - arch: arm_cortex-a5_vfpv4\n            runtime_test: false\n          - arch: arm_cortex-a7\n            runtime_test: false\n          - arch: arm_cortex-a7_neon-vfpv4\n            runtime_test: false\n          - arch: arm_cortex-a8_vfpv3\n            runtime_test: false\n          - arch: arm_cortex-a9\n            runtime_test: false\n          - arch: arm_cortex-a9_neon\n            runtime_test: false\n          - arch: arm_cortex-a9_vfpv3-d16\n            runtime_test: false\n          - arch: arm_fa526\n            runtime_test: false\n          - arch: arm_xscale\n            runtime_test: false\n          - arch: i386_pentium-mmx\n            runtime_test: true\n          - arch: i386_pentium4\n            runtime_test: false\n          - arch: loongarch64_generic\n            runtime_test: false\n          - arch: mips64_mips64r2\n            runtime_test: false\n          - arch: mips64_octeonplus\n            runtime_test: false\n          - arch: mips64el_mips64r2\n            runtime_test: false\n          - arch: mips_24kc\n            runtime_test: true\n          - arch: mips_4kec\n            runtime_test: false\n          - arch: mips_mips32\n            runtime_test: false\n          - arch: mipsel_24kc\n            runtime_test: false\n          - arch: mipsel_24kc_24kf\n            runtime_test: false\n          - arch: mipsel_74kc\n            runtime_test: false\n          - arch: mipsel_mips32\n            runtime_test: false\n          - arch: riscv64_riscv64\n            runtime_test: false\n          - arch: x86_64\n            runtime_test: true\n\n    steps:\n      - uses: actions/checkout@v5\n        with:\n          fetch-depth: 0\n\n      - name: Build\n        uses: immortalwrt/gh-action-sdk@v7\n        env:\n          ARCH: ${{ matrix.arch }}-openwrt-24.10\n          FEEDNAME: v2raya_ci\n          PACKAGES: ca-certificates v2fly-geodata v2ray-core xray-core v2raya luci-app-v2raya\n          NO_REFRESH_CHECK: 1\n          INDEX: 1\n          KEY_BUILD: ${{ secrets.USIGN_KEY }}\n          V: s\n\n      - name: Upload feed\n        uses: Pendect/action-rsyncer@9738db02560c333bf629a1533bd86ceda138e599\n        with:\n          flags: '-ahvHP'\n          options: '--delete'\n          src: 'bin/packages/${{ matrix.arch }}/v2raya_ci/'\n          dest: '${{ secrets.SF_USER }}@frs.sourceforge.net:/home/frs/project/v2raya/openwrt/${{ matrix.arch }}/'\n        env:\n          DEPLOY_KEY: ${{ secrets.SF_KEY }}\n\n      - name: Move created packages to project dir\n        run: cp bin/packages/${{ matrix.arch }}/v2raya_ci/* . || true\n\n      - name: Store packages\n        uses: actions/upload-artifact@v5\n        if: github.event_name != 'release'\n        with:\n          name: ${{ matrix.arch }}-${{ github.sha }}-packages\n          path: |\n            Packages\n            Packages.*\n            *.ipk\n\n      - name: Store logs\n        uses: actions/upload-artifact@v5\n        with:\n          name: ${{ matrix.arch }}-${{ github.sha }}-logs\n          path: logs/\n\n      - name: Remove logs\n        run: sudo rm -rf logs/ || true\n\n      - name: Register QEMU\n        if: ${{ matrix.runtime_test }}\n        run: |\n          sudo apt-get update\n          sudo apt-get install -y qemu-user-static binfmt-support\n          sudo update-binfmts --import\n\n      - name: Build Docker container\n        if: ${{ matrix.runtime_test }}\n        run: |\n          docker build --platform linux/${{ matrix.arch }} -t test-container --build-arg ARCH .github/workflows/\n        env:\n          ARCH: ${{ matrix.arch }}-openwrt-24.10\n\n      - name: Test via Docker container\n        if: ${{ matrix.runtime_test }}\n        run: |\n          docker run --platform linux/${{ matrix.arch }} --rm -v $GITHUB_WORKSPACE:/ci test-container\n"
  },
  {
    "path": "README.md",
    "content": "# v2raya-openwrt\n\nopkg feed of v2rayA for OpenWrt users.\n\n[简体中文](README.zh-cn.md)\n\n## How to install\n\n1. Add v2rayA usign key\n\n   > Make sure package `wget-ssl` or `libustream` is installed on your device\n\n   ```sh\n   wget https://downloads.sourceforge.net/project/v2raya/openwrt/v2raya.pub -O /etc/opkg/keys/94cc2a834fb0aa03\n   ```\n\n2. Import v2rayA feed\n\n   ```sh\n   echo \"src/gz v2raya https://downloads.sourceforge.net/project/v2raya/openwrt/$(. /etc/openwrt_release && echo \"$DISTRIB_ARCH\")\" | tee -a \"/etc/opkg/customfeeds.conf\"\n   ```\n\n3. Update feeds\n\n   ```sh\n   opkg update\n   ```\n\n4. Install v2rayA and its dependencies\n\n   ```sh\n   opkg install v2raya\n\n   # Check your firewall implementation\n   # Install the following packages for the nftables-based firewall4 (command -v fw4)\n   # Generally speaking, install them on OpenWrt 22.03 and later\n   opkg install kmod-nft-tproxy\n   # Install the following packages for the iptables-based firewall3 (command -v fw3)\n   # Generally speaking, install them on OpenWrt 21.02 and earlier\n   opkg install iptables-mod-conntrack-extra \\\n     iptables-mod-extra \\\n     iptables-mod-filter \\\n     iptables-mod-tproxy \\\n     kmod-ipt-nat6\n\n   # Choose a core you'd like to use, v2ray or Xray\n   # If you have both installed, the latter is preferred by default\n   #\n   # Note from maintainer: due to broken tproxy support in v2ray, recommend using Xray instead\n   opkg install xray-core\n   # opkg install v2ray-core\n\n   # Optional\n   # opkg install v2fly-geoip v2fly-geosite\n   ```\n\n## How to use\n\n- Method 1 - Configure via LuCI interface (for __OpenWrt 21.02 and higher__ version only)\n\n   1. Install LuCI app\n\n      ```sh\n      opkg install luci-app-v2raya\n      ```\n\n   2. Visit `http://<your_router_ip>/cgi-bin/luci/admin/services/v2raya` and complete setup.\n\n- Method 2 - Configure via cli\n\n   1. Setup v2rayA\n\n      ```sh\n      # For advanced usage, please see /etc/config/v2raya\n      uci set v2raya.config.enabled='1'\n      uci commit v2raya\n      ```\n\n   2. Start v2rayA\n\n      ```sh\n      /etc/init.d/v2raya start\n      ```\n\n   3. Visit v2rayA webUI and enjoy\n\n      `http://<your_router_ip>:2017`\n"
  },
  {
    "path": "README.zh-cn.md",
    "content": "# v2raya-openwrt\n\n适用于 OpenWrt 用户的 v2rayA opkg 软件源。\n\n[English](README.md)\n\n## 安装方法\n\n1. 导入 v2rayA 签名文件\n\n   > 请确认软件包 `wget-ssl` 或 `libustream` 已经正确地安装在您的设备上\n\n   ```sh\n   wget https://downloads.sourceforge.net/project/v2raya/openwrt/v2raya.pub -O /etc/opkg/keys/94cc2a834fb0aa03\n   ```\n\n2. 添加 v2rayA 软件源\n\n   ```sh\n   echo \"src/gz v2raya https://downloads.sourceforge.net/project/v2raya/openwrt/$(. /etc/openwrt_release && echo \"$DISTRIB_ARCH\")\" | tee -a \"/etc/opkg/customfeeds.conf\"\n   ```\n\n3. 更新软件源\n\n   ```sh\n   opkg update\n   ```\n\n4. 安装 v2rayA 及其依赖\n\n   ```sh\n   opkg install v2raya\n\n   # 检查你的防火墙实现\n   # 为基于 nftables 的 firewall4 (command -v fw4) 安装下列软件包\n   # 一般来说，在 OpenWrt 22.03 或更新版本中安装它们\n   opkg install kmod-nft-tproxy\n   # 为基于 iptables 的 firewall3 (command -v fw3) 安装下列软件包\n   # 一般来说，在 OpenWrt 21.02 或更早版本中安装它们\n   opkg install iptables-mod-conntrack-extra \\\n     iptables-mod-extra \\\n     iptables-mod-filter \\\n     iptables-mod-tproxy \\\n     kmod-ipt-nat6\n\n   # 选择一个你喜欢的内核，v2ray 或 Xray\n   # 如果两个内核被同时安装，默认使用后者\n   #\n   # 维护者注：由于目前 v2ray 的透明代理支持欠佳，因此更推荐使用 Xray\n   opkg install xray-core\n   # opkg install v2ray-core\n\n   # 可选\n   # opkg install v2fly-geoip v2fly-geosite\n   ```\n\n## 使用方法\n\n- 方法一：通过 LuCI 界面配置（仅适用于 __OpenWrt 21.02 或更高版本__）\n\n   1. 安装 LuCI app\n      ```sh\n      opkg install luci-app-v2raya luci-i18n-v2raya-zh-cn\n      ```\n\n   2. 访问 `http://<your_router_ip>/cgi-bin/luci/admin/services/v2raya` 并完成配置。\n\n- 方法二：通过命令行配置\n\n   1. 配置 v2rayA\n\n      ```sh\n      # 详细配置请参见 /etc/config/v2raya\n      uci set v2raya.config.enabled='1'\n      uci commit v2raya\n      ```\n\n   2. 启动 v2rayA\n\n      ```sh\n      /etc/init.d/v2raya start\n      ```\n\n   3. 访问 v2rayA webUI 面板并完成设置\n\n      `http://<your_router_ip>:2017`\n"
  },
  {
    "path": "ca-certificates/Makefile",
    "content": "#\n# Copyright (C) 2006-2017 OpenWrt.org\n#\n# This is free software, licensed under the GNU General Public License v2.\n# See /LICENSE for more information.\n#\ninclude $(TOPDIR)/rules.mk\n\nPKG_NAME:=ca-certificates\nPKG_VERSION:=20250419\nPKG_RELEASE:=1\nPKG_MAINTAINER:=\n\nPKG_LICENSE:=GPL-2.0-or-later MPL-2.0\nPKG_LICENSE_FILES:=debian/copyright\n\nPKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.xz\nPKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/c/ca-certificates\nPKG_HASH:=33b44ef78653ecd3f0f2f13e5bba6be466be2e7da72182f737912b81798ba5d2\nPKG_INSTALL:=1\n\ninclude $(INCLUDE_DIR)/package.mk\n\nTAR_OPTIONS+= --strip-components 1\nTAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)\n\ndefine Package/ca-certificates\n  SECTION:=base\n  CATEGORY:=Base system\n  TITLE:=System CA certificates\n  PKGARCH:=all\n  PROVIDES:=ca-certs\nendef\n\ndefine Package/ca-bundle\n  SECTION:=base\n  CATEGORY:=Base system\n  TITLE:=System CA certificates as a bundle\n  PKGARCH:=all\n  PROVIDES:=ca-certs\nendef\n\ndefine Build/Install\n\tmkdir -p \\\n\t\t$(PKG_INSTALL_DIR)/usr/sbin \\\n\t\t$(PKG_INSTALL_DIR)/usr/share/ca-certificates\n\t$(call Build/Install/Default,)\nendef\n\ndefine Package/ca-certificates/install\n\t$(INSTALL_DIR) $(1)/etc/ssl/certs\n\t$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/ca-certificates/*/*.crt $(1)/etc/ssl/certs/\n\n\tfor CERTFILE in `ls -1 $(1)/etc/ssl/certs`; do \\\n\t\tHASH=`openssl x509 -hash -noout -in $(1)/etc/ssl/certs/$$$$CERTFILE` ; \\\n\t\tSUFFIX=0 ; \\\n\t\twhile [ -h \"$(1)/etc/ssl/certs/$$$$HASH.$$$$SUFFIX\" ]; do \\\n\t\t\tlet \"SUFFIX += 1\" ; \\\n\t\tdone ; \\\n\t\t$(LN) \"$$$$CERTFILE\" \"$(1)/etc/ssl/certs/$$$$HASH.$$$$SUFFIX\" ; \\\n\tdone\nendef\n\ndefine Package/ca-bundle/install\n\t$(INSTALL_DIR) $(1)/etc/ssl/certs\n\tcat $(PKG_INSTALL_DIR)/usr/share/ca-certificates/*/*.crt >$(1)/etc/ssl/certs/ca-certificates.crt\n\t$(LN) /etc/ssl/certs/ca-certificates.crt $(1)/etc/ssl/cert.pem\nendef\n$(eval $(call BuildPackage,ca-bundle))\n$(eval $(call BuildPackage,ca-certificates))\n"
  },
  {
    "path": "ca-certificates/patches/0001-ca-certificates-fix-python3-cryptography-woes-in-cer.patch",
    "content": "From 3c51cb5ff1d0db41fb3288fb555c7e7055cf3e86 Mon Sep 17 00:00:00 2001\nFrom: Christian Lamparter <chunkeey@gmail.com>\nDate: Wed, 1 Dec 2021 14:41:31 +0100\nSubject: [PATCH] ca-certificates: fix python3-cryptography woes in\n certdata2pem.py\n\nreverts the code portion of the Debian's ca-certificate\ncommit 033d52259172 (\"mozilla/certdata2pem.py: print a warning for expired certificates.\")\n\nIt broke builds with the popular Ubuntu 20.04 (focal) releases.\nThis was due to them shipping with an older python3-cryptography\nversion which is not compatible.\n\nMore concerns were raised by jow- as well:\n\"We don't want the build to depend on the local system time anyway.\"\n\nReported-by: Chen Minqiang <ptpt52@gmail.com>\nReported-by: Shane Synan <digitalcircuit36939@gmail.com>\nSigned-off-by: Christian Lamparter <chunkeey@gmail.com>\n---\n--- a/mozilla/certdata2pem.py\n+++ b/mozilla/certdata2pem.py\n@@ -21,16 +21,12 @@\n # USA.\n \n import base64\n-import datetime\n import os.path\n import re\n import sys\n import textwrap\n import io\n \n-from cryptography import x509\n-\n-\n objects = []\n \n # Dirty file parser.\n@@ -121,13 +117,6 @@ for obj in objects:\n     if obj['CKA_CLASS'] == 'CKO_CERTIFICATE':\n         if not obj['CKA_LABEL'] in trust or not trust[obj['CKA_LABEL']]:\n             continue\n-\n-        cert = x509.load_der_x509_certificate(bytes(obj['CKA_VALUE']))\n-        if cert.not_valid_after < datetime.datetime.utcnow():\n-            print('!'*74)\n-            print('Trusted but expired certificate found: %s' % obj['CKA_LABEL'])\n-            print('!'*74)\n-\n         bname = obj['CKA_LABEL'][1:-1].replace('/', '_')\\\n                                       .replace(' ', '_')\\\n                                       .replace('(', '=')\\\n"
  },
  {
    "path": "luci-app-v2raya/Makefile",
    "content": "# SPDX-License-Identifier: Apache-2.0\n#\n# Copyright (C) 2024 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nLUCI_TITLE:=LuCI support for v2rayA\nLUCI_DEPENDS:=+v2raya\n\nPKG_VERSION:=12\nPKG_PO_VERSION:=$(PKG_VERSION)\n\nPKG_LICENSE:=Apache-2.0\nPKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>\n\ninclude $(TOPDIR)/feeds/luci/luci.mk\n\n# call BuildPackage - OpenWrt buildroot signature\n"
  },
  {
    "path": "luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js",
    "content": "'use strict';\n'require form';\n'require poll';\n'require rpc';\n'require uci';\n'require view';\n\nconst callServiceList = rpc.declare({\n\tobject: 'service',\n\tmethod: 'list',\n\tparams: ['name'],\n\texpect: { '': {} }\n});\n\nfunction getServiceStatus() {\n\treturn L.resolveDefault(callServiceList('v2raya'), {}).then(function (res) {\n\t\tvar isRunning = false;\n\t\ttry {\n\t\t\tisRunning = res['v2raya']['instances']['v2raya']['running'];\n\t\t} catch (e) { }\n\t\treturn isRunning;\n\t});\n}\n\nfunction renderStatus(isRunning, port) {\n\tvar spanTemp = '<span style=\"color:%s\"><strong>%s %s</strong></span>';\n\tvar renderHTML;\n\tif (isRunning) {\n\t\tvar button = String.format('&#160;<a class=\"btn cbi-button\" href=\"http://%s:%s\" target=\"_blank\" rel=\"noreferrer noopener\">%s</a>',\n\t\t\twindow.location.hostname, port, _('Open Web Interface'));\n\t\trenderHTML = spanTemp.format('green', _('v2rayA'), _('RUNNING')) + button;\n\t} else {\n\t\trenderHTML = spanTemp.format('red', _('v2rayA'), _('NOT RUNNING'));\n\t}\n\n\treturn renderHTML;\n}\n\nreturn view.extend({\n\tload: function() {\n\t\treturn Promise.all([\n\t\t\tuci.load('v2raya')\n\t\t]);\n\t},\n\n\trender: function(data) {\n\t\tlet m, s, o;\n\t\tvar webport = (uci.get(data[0], 'config', 'address') || '0.0.0.0:2017').split(':').slice(-1)[0];\n\n\t\tm = new form.Map('v2raya', _('v2rayA'),\n\t\t\t_('v2rayA is a V2Ray Linux client supporting global transparent proxy, compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.'));\n\n\t\ts = m.section(form.TypedSection);\n\t\ts.anonymous = true;\n\t\ts.render = function () {\n\t\t\tpoll.add(function () {\n\t\t\t\treturn L.resolveDefault(getServiceStatus()).then(function (res) {\n\t\t\t\t\tvar view = document.getElementById('service_status');\n\t\t\t\t\tview.innerHTML = renderStatus(res, webport);\n\t\t\t\t});\n\t\t\t});\n\n\t\t\treturn E('div', { class: 'cbi-section', id: 'status_bar' }, [\n\t\t\t\t\tE('p', { id: 'service_status' }, _('Collecting data…'))\n\t\t\t]);\n\t\t}\n\n\t\ts = m.section(form.NamedSection, 'config', 'v2raya');\n\n\t\to = s.option(form.Flag, 'enabled', _('Enable'));\n\t\to.rmempty = false;\n\n\t\to = s.option(form.Value, 'address', _('Listening address'));\n\t\to.datatype = 'ipaddrport(1)';\n\t\to.placeholder = '0.0.0.0:2017';\n\n\t\to = s.option(form.ListValue, 'ipv6_support', _('IPv6 support'),\n\t\t\t_('Requires working IPv6 connectivity.'));\n\t\to.value('auto', _('Auto'));\n\t\to.value('on', _('On'));\n\t\to.value('off', _('Off'));\n\t\to.default = 'auto';\n\n\t\to = s.option(form.ListValue, 'nftables_support', _('Nftables support'),\n\t\t\t_('Requires nftables.'));\n\t\to.value('auto', _('Auto'));\n\t\to.value('on', _('On'));\n\t\to.value('off', _('Off'));\n\t\to.default = 'auto';\n\n\t\to = s.option(form.ListValue, 'log_level', _('Log level'));\n\t\to.value('trace', _('Trace'));\n\t\to.value('debug', _('Debug'));\n\t\to.value('info', _('Info'));\n\t\to.value('warn', _('Warn'));\n\t\to.value('error', _('Error'));\n\t\to.default = 'info';\n\n\t\to = s.option(form.Value, 'log_max_days', _('Max log retention period'),\n\t\t\t_('Unit: days.'));\n\t\to.datatype = 'uinteger';\n\t\to.placeholder = '3';\n\n\t\to = s.option(form.Flag, 'log_disable_color', _('Disable log color output'));\n\n\t\to = s.option(form.Flag, 'log_disable_timestamp', _('Disable log timestamp'));\n\n\t\treturn m.render();\n\t}\n});\n"
  },
  {
    "path": "luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js",
    "content": "'use strict';\n'require dom';\n'require fs';\n'require poll';\n'require uci';\n'require view';\n\nreturn view.extend({\n\trender: function() {\n\t\t/* Thanks to luci-app-aria2 */\n\t\tvar css = '\t\t\t\t\t\\\n\t\t\t#log_textarea {\t\t\t\t\\\n\t\t\t\tpadding: 10px;\t\t\t\\\n\t\t\t\ttext-align: left;\t\t\\\n\t\t\t}\t\t\t\t\t\\\n\t\t\t#log_textarea pre {\t\t\t\\\n\t\t\t\tpadding: .5rem;\t\t\t\\\n\t\t\t\tword-break: break-all;\t\t\\\n\t\t\t\tmargin: 0;\t\t\t\\\n\t\t\t}\t\t\t\t\t\\\n\t\t\t.description {\t\t\t\t\\\n\t\t\t\tbackground-color: #33ccff;\t\\\n\t\t\t}';\n\n\t\tvar log_textarea = E('div', { 'id': 'log_textarea' },\n\t\t\tE('img', {\n\t\t\t\t'src': L.resource('icons/loading.gif'),\n\t\t\t\t'alt': _('Loading…'),\n\t\t\t\t'style': 'vertical-align:middle'\n\t\t\t}, _('Collecting data…'))\n\t\t);\n\n\t\tvar log_path = '/var/log/v2raya/v2raya.log';\n\n\t\tpoll.add(L.bind(function() {\n\t\t\treturn fs.read_direct(log_path, 'text')\n\t\t\t.then(function(res) {\n\t\t\t\tvar log = E('pre', { 'wrap': 'pre' }, [\n\t\t\t\t\tres.trim() || _('Log is clean.')\n\t\t\t\t]);\n\n\t\t\t\tdom.content(log_textarea, log);\n\t\t\t}).catch(function(err) {\n\t\t\t\tvar log;\n\n\t\t\t\tif (err.toString().includes('NotFoundError'))\n\t\t\t\t\tlog = E('pre', { 'wrap': 'pre' }, [\n\t\t\t\t\t\t_('Log file does not exist.')\n\t\t\t\t\t]);\n\t\t\t\telse\n\t\t\t\t\tlog = E('pre', { 'wrap': 'pre' }, [\n\t\t\t\t\t\t_('Unknown error: %s').format(err)\n\t\t\t\t\t]);\n\n\t\t\t\tdom.content(log_textarea, log);\n\t\t\t});\n\t\t}));\n\n\t\treturn E([\n\t\t\tE('style', [ css ]),\n\t\t\tE('div', {'class': 'cbi-map'}, [\n\t\t\t\tE('div', {'class': 'cbi-section'}, [\n\t\t\t\t\tlog_textarea,\n\t\t\t\t\tE('div', {'style': 'text-align:right'},\n\t\t\t\t\tE('small', {}, _('Refresh every %d seconds.').format(L.env.pollinterval))\n\t\t\t\t\t)\n\t\t\t\t])\n\t\t\t])\n\t\t]);\n\t},\n\n\thandleSaveApply: null,\n\thandleSave: null,\n\thandleReset: null\n});\n"
  },
  {
    "path": "luci-app-v2raya/po/ar/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-07-16 16:41+0000\\n\"\n\"Last-Translator: Rex_sa <rex.sa@pm.me>\\n\"\n\"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/ar/>\\n\"\n\"Language: ar\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 \"\n\"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\\n\"\n\"X-Generator: Weblate 5.7-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"التكوين\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"خطأ\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"دعم IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"السجل\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"مستوى التسجيل\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"الأثر\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"حذر\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/bg/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-10-27 15:04+0000\\n\"\n\"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate.org>\"\n\"\\n\"\n\"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/bg/>\\n\"\n\"Language: bg\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.14.1-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Настройки\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Грешка\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Инфо\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Ниво на записи\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/bn_BD/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-04-15 20:45+0000\\n\"\n\"Last-Translator: Random Github User <shahariarrabby1@gmail.com>\\n\"\n\"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/\"\n\"openwrt/luciapplicationsv2raya/bn_BD/>\\n\"\n\"Language: bn_BD\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n > 1;\\n\"\n\"X-Generator: Weblate 5.11-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"সক্রিয় করুন\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/ca/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-03-10 02:48+0000\\n\"\n\"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\\n\"\n\"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/ca/>\\n\"\n\"Language: ca\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.10.3-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Configuració\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/cs/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-10 23:01+0000\\n\"\n\"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\\n\"\n\"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/cs/>\\n\"\n\"Language: cs\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\\n\"\n\"X-Generator: Weblate 5.12-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"automaticky\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Shromažďování dat…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Nastavení\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Ladění\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Vypnout obarvování výstupu ze záznamu událostí\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Zakázat časové razítko záznamu událostí\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Povolit\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Chyba\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Udělit přístup k nastavování v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Podpora pro IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Info\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Adresa pro očekávání spojení\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Načítání…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Záznam událostí\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Soubor se záznamem událostí neexistuje.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Záznam událostí je čistý.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Stupeň podrobnosti záznamu událostí\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Nejdelší umožněné období uchovávání záznamu událostí\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"NESPUŠTĚNÉ\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Podpora pro Nftables\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Vypnuto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Zapnuto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Otevřít webové rozhraní\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"SPUŠTĚNÉ\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Znovu načíst každých %d sekund.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Vyžaduje nftables.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Vyžaduje fungující IPv6 konektivitu.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Trace\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Jednotka: dny.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Neznámá chyba: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Varov.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA je V2Ray linuxový klient podporující globální transparentní proxy, \"\n\"kompatibilní s protokoly SS, SSR, Trojan(trojan-go), PingTunnel.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/da/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator: Automatically generated\\n\"\n\"Language-Team: none\\n\"\n\"Language: da\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/de/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-02-07 23:08+0000\\n\"\n\"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\\n\"\n\"Language-Team: German <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/de/>\\n\"\n\"Language: de\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.10-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Sammeln von Daten…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Konfiguration\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Debug\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Deaktivieren der Ausgabe von Protokollfarben\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Protokoll-Zeitstempel deaktivieren\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Aktivieren\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Fehler\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Zugriff auf die v2rayA-Konfiguration gewähren\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"IPv6-Unterstützung\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Info\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Listening-Adresse\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Laden…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Log\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Die Protokolldatei existiert nicht.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Protokoll ist leer.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Protokollierungslevel\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Maximale Aufbewahrungszeit für Protokolle\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"LÄUFT NICHT\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Nftables-Unterstützung\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Aus\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"An\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Weboberfläche öffnen\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"LÄUFT\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Aktualisiere alle %d Sekunden.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Erfordert nftables.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Erfordert eine funktionierende IPv6-Konnektivität.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Rückverfolgung\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Einheit: Tage.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Unbekannter Fehler: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Warn\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA ist ein V2Ray-Linux-Client, der globalen transparenten Proxy \"\n\"unterstützt und mit den Protokollen SS, SSR, Trojan(trojan-go) und \"\n\"PingTunnel kompatibel ist.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/el/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-11-09 08:59+0000\\n\"\n\"Last-Translator: Mac Mac <nofxmac@gmail.com>\\n\"\n\"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/el/>\\n\"\n\"Language: el\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.8.2\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"κατά την\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Άνοιγμα Ιστοσελίδας\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"ΕΚΤΕΛΕΙΤΕ\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/es/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-06-20 21:42+0000\\n\"\n\"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\\n\"\n\"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/es/>\\n\"\n\"Language: es\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.13-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Recopilando datos…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Configuración\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Depurar\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Deshabilitar salida de color de registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Deshabilitar marca de tiempo del registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Activar\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Error\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Otorgar acceso a la configuración de v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Soporte IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Info\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"dirección de escucha\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Cargando…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"El archivo de registro no existe.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"El log está limpio.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Nivel de registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Período máximo de retención de registros\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"NO EN EJECUCIÓN\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Soporte para Nftables\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Apagado\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Encendido\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Interfaz Open Web\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"EN EJECUCIÓN\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Actualizar cada %d segundos.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Requiere nftables.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Requiere conectividad IPv6 funcional.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Rastro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Unidad: días.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Error desconocido: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Advertir\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA es un cliente V2Ray para Linux que soporta proxy transparente global, \"\n\"compatible con los protocolos SS, SSR, Trojan (trojan-go) y PingTunnel.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/fi/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-04 15:04+0000\\n\"\n\"Last-Translator: Ricky Tigg <ricky.tigg@gmail.com>\\n\"\n\"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/fi/>\\n\"\n\"Language: fi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.12-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Kerätään tietoja…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Kokoonpano\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Viankorjaus\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Poista lokivärien lähtö käytöstä\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Poista lokin aikaleima käytöstä\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Ota käyttöön\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Virhe\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Myönnä pääsy v2rayA-kokoonpanoon\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"IPv6-tuki\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Tiedot\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Kuunteluosoite\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Ladataan…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Loki\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Lokitiedostoa ei ole.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Loki on puhdas.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Lokitaso\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Lokien enimmäissäilytysaika\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"EI KÄYNNISSÄ\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Nftables-tuki\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Pois päältä\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Päälle\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Avoin verkkokäyttöliittymä\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"KÄYNNISSÄ\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Virkistä %d sekunnin välein.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Vaatii nftablesin.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Edellyttää toimivaa IPv6-yhteyttä.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Jäljitä\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Yksikkö: päivä.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Tuntematon virhe: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Varoita\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA on V2Ray Linux-asiakas, joka tukee yleisesti pätevää läpinäkyvää \"\n\"välityspalvelinta, ja on yhteensopiva SS-, SSR-, Trojan(trojan-go)- ja \"\n\"PingTunnel-protokollien kanssa.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/fr/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-11 21:03+0000\\n\"\n\"Last-Translator: Adam El adnani <eladnaniadam595@gmail.com>\\n\"\n\"Language-Team: French <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/fr/>\\n\"\n\"Language: fr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n > 1;\\n\"\n\"X-Generator: Weblate 5.13-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Collection des données …\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Configuration\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\n#, fuzzy\nmsgid \"Debug\"\nmsgstr \"Déboguer\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Activer\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Erreur\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Prise en charge d’IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Chargement …\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Journal\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Allumé\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Ouvrir l'interface web\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"EXÉCUTANT\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Erreur inconnue : %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/ga/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"PO-Revision-Date: 2025-05-06 05:38+0000\\n\"\n\"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\\n\"\n\"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/ga/>\\n\"\n\"Language: ga\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :\"\n\"(n>6 && n<11) ? 3 : 4;\\n\"\n\"X-Generator: Weblate 5.12-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Sonraí á mbailiú…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Cumraíocht\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Dífhabhtú\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Díchumasaigh aschur dath an loga\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Díchumasaigh stampa ama loga\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Cumasaigh\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Earráid\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Deonaigh rochtain ar chumraíocht v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Tacaíocht IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Faisnéis\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Seoladh éisteachta\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Á lódáil…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Loga\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Níl logchomhad ann.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Tá an logáil glan.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Leibhéal logála\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Uastréimhse coinneála loga\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"NÍ RÚCHÁN\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Tacaíocht nftables\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"As\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Ar\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Comhéadan Gréasáin Oscailte\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"REATHA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Athnuaigh gach %d soicind.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Éilíonn nftables.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Tá nascacht IPv6 oibre de dhíth.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Rian\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Aonad: laethanta.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Earráid anaithnid: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Rabhadh\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"Is cliant V2Ray Linux é v2rayA a thacaíonn le seachfhreastalaí trédhearcach \"\n\"domhanda, atá comhoiriúnach le prótacail SS, SSR, Trojan(trojan-go), \"\n\"PingTunnel.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/he/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator: Automatically generated\\n\"\n\"Language-Team: none\\n\"\n\"Language: he\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/hi/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator: Automatically generated\\n\"\n\"Language-Team: none\\n\"\n\"Language: hi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/hu/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-31 20:15+0000\\n\"\n\"Last-Translator: hmzs <hmzs@1szer1.hu>\\n\"\n\"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/hu/>\\n\"\n\"Language: hu\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.12-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Engedélyezés\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Hozzáférés engedélyezése a <em>v2rayA</em> beállításaihoz\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"IPv6 támogatás\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Infó\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Napló\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Naplózás szintje\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"FUT\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Figyelmeztetés\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/it/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-07-17 22:44+0000\\n\"\n\"Last-Translator: Random <random-r@users.noreply.hosted.weblate.org>\\n\"\n\"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/it/>\\n\"\n\"Language: it\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.7-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Raccolta dati in corso…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Configurazione\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Debug\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Abilitare\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Errore\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Supporto IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Info\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Indirizzo di ascolto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Il file di registro non esiste.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Livello dei log\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"NON IN ESECUZIONE\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"On\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Apri interfaccia web\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"IN ESECUZIONE\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Traccia\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Errore sconosciuto: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Avvisa\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/ja/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-10-09 05:48+0000\\n\"\n\"Last-Translator: Monarch <monarch.scrap-0p@icloud.com>\\n\"\n\"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/ja/>\\n\"\n\"Language: ja\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\"X-Generator: Weblate 5.8-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"自動\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"エラー\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"ログ\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/ko/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-06 11:54+0000\\n\"\n\"Last-Translator: Beomjun <kals323@gmail.com>\\n\"\n\"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/ko/>\\n\"\n\"Language: ko\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\"X-Generator: Weblate 5.12-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"웹 인터페이스 열기\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/lt/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-02-15 17:31+0000\\n\"\n\"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\\n\"\n\"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/lt/>\\n\"\n\"Language: lt\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"(n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\"X-Generator: Weblate 5.10\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Automatiškai\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Renkami duomenys…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Konfigūracija\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Derinimas/Trukdžių šalinimas\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Išjungti žurnalo spalvos išvestį\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Išjungti žurnalo laiko žymėjimą\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Įjungti/Įgalinti\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Klaida\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Duoti prieigą prie „v2rayA“ konfigūracijos\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"IPv6 palaikymas\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Informacija\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\"Adresas laukia prisijungimo/jungties ryšio (klausosi ir pasiruošęs priimti)\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Kraunama…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Žurnalas\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Žurnalo failas neegzistuoja.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Žurnalas yra švarus.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Žurnalo lygis\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Maksimalus žurnalo išlaikymo periodas\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"NEVEIKIA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"„Nftables“ palaikymas\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Išjungtas/Išgalintas\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Įjungta/Įgalinta (-s)\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Atidaryti tinklo naudotojo/vartotojo sąsają\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"VEIKIA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Atnaujinti kas %d sekundžių.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Reikalauja „nftables“.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Reikalauja veikiančio „IPv6“ interneto.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Sekimas/Atsekamumas\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Vienetas: dienos.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Nežinoma klaida: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Įspėti\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"„v2rayA“\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"„v2rayA“ yra „V2ray Linux“ kliento palaikantis visuotinis permatomas \"\n\"lygiarangis, palaikomas su „SS“, „SSR“, „Trojan(trojan-go)“, „PingTunnel“ \"\n\"protokolais.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/mr/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator: Automatically generated\\n\"\n\"Language-Team: none\\n\"\n\"Language: mr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/ms/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"Last-Translator: Automatically generated\\n\"\n\"Language-Team: none\\n\"\n\"Language: ms\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/nb_NO/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-03-14 09:11+0000\\n\"\n\"Last-Translator: Lasse Skogland <lasse.skogland@gmail.com>\\n\"\n\"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/nb_NO/>\\n\"\n\"Language: nb_NO\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.11-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Samler data …\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Oppsett\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Avlusing\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Skru av fargelagt loggdata\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Skru av tidsstemplet loggføring\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Skru på\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Feil\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Innvilg tilgang til v2rayA-oppsett\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"IPv6-støtte\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Info\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Lytteadresse\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Laster inn …\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Logg\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Loggfilen finnes ikke.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Loggen er ren.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Loggingsnivå\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Maks. tid å beholde logg\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"Kjører ikke\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"nftables-støtte\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Av\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"På\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Åpne vev-grensesnitt\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"KJØRER\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Oppdatering hvert %d sekund.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Krever nftables.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Krever fungerende IPv6-tilkobling.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Spor\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Enhet: dager.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Ukjent feil: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Advar\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA er en V2Ray-Linuxklient som støtter global transparent mellomtjening, \"\n\"kompatibel med SS, SSR, Trojan(trojan-go), PingTunnel-protokoller.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/nl/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-01-20 10:53+0000\\n\"\n\"Last-Translator: Meow <sander.schutten@gmail.com>\\n\"\n\"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/nl/>\\n\"\n\"Language: nl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.10-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Inschakelen\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/pl/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-09-11 23:20+0000\\n\"\n\"Last-Translator: Piotr Kołtun <pkoltungm@gmail.com>\\n\"\n\"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/pl/>\\n\"\n\"Language: pl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 \"\n\"|| n%100>=20) ? 1 : 2);\\n\"\n\"X-Generator: Weblate 5.8-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Zbieranie danych…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Konfiguracja\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Debugowanie\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Wyłącz kolorowe wyjście dziennika\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Wyłącz znaczniki czasu dziennika\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Włącz\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Błąd\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Udziel dostępu do konfiguracji v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Obsługa IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Informacyjne\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Adres nasłuchu\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Wczytywanie…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Dziennik\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Plik dziennika nie istnieje.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Dziennik jest pusty.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Poziom logowania\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Maksymalny czas przechowywania dziennika\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"NIEURUCHOMIONE\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Obsługa nftables\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Wyłączone\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Włączone\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Otwórz interfejs WWW\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"URUCHOMIONE\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Odśwież co %d sekund.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Wymaga nftables.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Wymaga działającej łączności IPv6.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Śledzenie\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Jednostka: dni.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Nieznany błąd: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Uwaga\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA to linuksowy klient V2Ray obsługujący globalny przezroczysty serwer \"\n\"proxy, kompatybilny z protokołami SS, SSR, Trojan (trojan-go), PingTunnel.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/pt/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-18 18:13+0000\\n\"\n\"Last-Translator: ssantos <ssantos@web.de>\\n\"\n\"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/pt/>\\n\"\n\"Language: pt\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.13\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Coletando dados…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Configuração\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Depuração\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Desativar saída colorida do registo\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Ativar\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Erro\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Suporte a IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Informações\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Registo\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Nível do registo\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"NÃO ESTÁ EM EXECUÇÃO\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Abrir Interface Web\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"EM EXECUÇÃO\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Rastreamento\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Erro desconhecido: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Aviso\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/pt_BR/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-06 17:02+0000\\n\"\n\"Last-Translator: Janderson Vieira Santos <jandersonvs79@gmail.com>\\n\"\n\"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/\"\n\"openwrt/luciapplicationsv2raya/pt_BR/>\\n\"\n\"Language: pt_BR\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n > 1;\\n\"\n\"X-Generator: Weblate 5.13-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Automatico\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Habilitar\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Suporte IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Arquivo de log não existe.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Nível do registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"NÃO ESTÁ EM EXECUÇÃO\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Ligado\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Abrir interface Web\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"EM EXECUÇÃO\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Rastreamento\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Erro desconhecido: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Aviso\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/ro/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-11-03 02:02+0000\\n\"\n\"Last-Translator: CRISTIAN ANDREI <cristianvdr@gmail.com>\\n\"\n\"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/ro/>\\n\"\n\"Language: ro\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=n==1 ? 0 : \"\n\"(n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\\n\"\n\"X-Generator: Weblate 5.14.1-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Colectare date…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Configurație\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Activați\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Suport IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Jurnal\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Nivel de jurnal\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Oprit\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Pornit\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Deschideți Interfața Web\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"Funcţionare\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Urmă\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Atenție\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/ru/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-03 11:02+0000\\n\"\n\"Last-Translator: SnIPeRSnIPeR <snipersniper@users.noreply.hosted.weblate.org>\"\n\"\\n\"\n\"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/ru/>\\n\"\n\"Language: ru\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\"X-Generator: Weblate 5.13-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Авто\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Сбор данных…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Конфигурация\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Отладка\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Отключение цветного вывода журнала\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Отключение временных меток журнала\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Включить\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Ошибка\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Предоставление доступа к конфигурации v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Поддержка IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Информация\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Адрес для прослушивания\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Загрузка…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Журнал\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Файл журнала не существует.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Журнал пуст.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Уровень журнала\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Максимальный период хранения журнала\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"НЕ ЗАПУЩЕНО\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Поддержка Nftables\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Выключено\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Включено\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Открытый веб-интерфейс\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"ЗАПУЩЕНО\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Обновляйть каждые %d секунд.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Требуется nftables.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Требуется рабочее подключение IPv6.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Трасировка\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Единица измерения: дни.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Неизвестная ошибка: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Предупреждение\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA - это клиент V2Ray Linux, поддерживающий глобальный прозрачный \"\n\"прокси, совместимый с протоколами SS, SSR, Trojan(trojan-go), PingTunnel.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/sk/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-05-30 20:29+0000\\n\"\n\"Last-Translator: Jan Vongrej <jan.vongrej@gmail.com>\\n\"\n\"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/sk/>\\n\"\n\"Language: sk\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\\n\"\n\"X-Generator: Weblate 5.12-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Automatické\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/sv/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-07-15 10:11+0000\\n\"\n\"Last-Translator: Stefan Bjornelund the Gnome \"\n\"<stefan.bjornelund.gnome@gmail.com>\\n\"\n\"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/sv/>\\n\"\n\"Language: sv\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.13-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Konfiguration\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Avlusa\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Aktivera\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Stöd för IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Info\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Logg\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Logg-filen existerar inte.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Logg-nivå\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"KÖRS INTE\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Av\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"På\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Öppna webbgränssnittet\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"KÖRS\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Okänt fel: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Varna\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/ta/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"PO-Revision-Date: 2025-01-26 13:49+0000\\n\"\n\"Last-Translator: தமிழ்நேரம் <anishprabu.t@gmail.com>\\n\"\n\"Language-Team: Tamil <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/ta/>\\n\"\n\"Language: ta\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.10-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"தானி\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"தரவு சேகரித்தல்…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"உள்ளமைவு\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"பிழைத்திருத்தம்\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"பதிவு வண்ண வெளியீட்டை முடக்கு\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"பதிவு நேர முத்திரையை முடக்கு\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"இயக்கு\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"பிழை\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"V2RAYA உள்ளமைவுக்கு அணுகல் வழங்கவும்\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"ஐபிவி 6 உதவி\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"தகவல்\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"கேட்கும் முகவரி\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"ஏற்றுகிறது…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"பதிவு\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"பதிவு கோப்பு இல்லை.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"பதிவு சுத்தமாக உள்ளது.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"பதிவு நிலை\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"அதிகபட்ச பதிவு தக்கவைப்பு காலம்\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"ஓடவில்லை\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Nftables உதவி\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"அணை\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"ஆன்\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"வலை இடைமுகத்தைத் திறக்கவும்\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"இயங்கும்\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"ஒவ்வொரு %d விநாடிகளையும் புதுப்பிக்கவும்.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Nftables தேவை.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"வேலை செய்யும் ஐபிவி 6 இணைப்பு தேவை.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"சுவடு\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"அலகு: நாட்கள்.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"தெரியாத பிழை: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"எச்சரிக்கை\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"B2ra\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"வி 2 ராயா என்பது வி 2 ரே லினக்ச் கிளையன்ட் ஆகும், இது உலகளாவிய வெளிப்படையான \"\n\"ப்ராக்சியை ஆதரிக்கிறது, இது எச்.எச்., எச்.எச்.ஆர், ட்ரோசன் (ட்ரோசன்-கோ), பிங்டன்னல் \"\n\"நெறிமுறைகளுடன் இணக்கமானது.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/templates/v2raya.pot",
    "content": "msgid \"\"\nmsgstr \"Content-Type: text/plain; charset=UTF-8\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/tr/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-08-17 13:21+0000\\n\"\n\"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\\n\"\n\"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/tr/>\\n\"\n\"Language: tr\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.7\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Otomatik\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Veri toplama…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Yapılandırma\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Hata Ayıklama\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Günlük renk çıktısını devre dışı bırak\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Günlük zaman damgasını devre dışı bırak\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Etkinleştir\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Hata\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"v2rayA yapılandırmasına erişim izni verin\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"IPv6 desteği\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Bilgi\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Dinleme adresi\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Yükleniyor…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Günlük\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Günlük dosyası mevcut değil.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Günlük temiz.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Günlük seviyesi\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Maksimum günlük saklama süresi\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"ÇALIŞMIYOR\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Nftables desteği\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Kapalı\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Açık\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Web Arayüzünü Aç\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"ÇALIŞIYOR\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Her %d saniyede bir yenileyin.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"nftables gerektirir.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Çalışan IPv6 bağlantısı gerekir.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"İz\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Birim: günler.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Bilinmeyen hata: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Uyarı\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA, SS, SSR, Trojan (trojan-go), PingTunnel protokolleri ile uyumlu, \"\n\"küresel şeffaf proxy'yi destekleyen bir V2Ray Linux istemcisidir.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/uk/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-07-22 08:17+0000\\n\"\n\"Last-Translator: Максим Горпиніч <gorpinicmaksim5@gmail.com>\\n\"\n\"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/uk/>\\n\"\n\"Language: uk\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && \"\n\"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\"\n\"X-Generator: Weblate 5.13-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Авто\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Збираються дані…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Конфігурація\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Налагодження\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Вимкнути кольоровий вихід журналу\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Вимкнути позначку часу журналу\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Увімкнути\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Помилка\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Надайте доступ до конфігурації v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Підтримка IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Інфо\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"Адреса для прослуховування\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Завантаження…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Журнал\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"Файл журналу не існує.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"Журнал чистий.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Рівень журналу\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Максимальний термін зберігання журналу\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"НЕ ПРАЦЮЄ\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Підтримка Nftables\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Вимкнено\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Увімк\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Відкритий веб-інтерфейс\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"ЗАПУЩЕНО\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Оновлювати кожні %d секунд.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Потрібні nftables.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Потрібне робоче підключення IPv6.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Слід\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Одиниця: дні.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Невідома помилка: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Попередити\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA — це клієнт V2Ray Linux, який підтримує глобальний прозорий проксі, \"\n\"сумісний із протоколами SS, SSR, Trojan(trojan-go), PingTunnel.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/vi/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-08-05 09:41+0000\\n\"\n\"Last-Translator: Vũ Minh Ngọc <vuminhngocpt@gmail.com>\\n\"\n\"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/vi/>\\n\"\n\"Language: vi\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\"X-Generator: Weblate 5.13-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Tự động\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\n#, fuzzy\nmsgid \"Collecting data…\"\nmsgstr \"Đang thu thập dữ liệu…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\n#, fuzzy\nmsgid \"Configuration\"\nmsgstr \"Cấu hình\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Nhật ký\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Mức độ nhật ký\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/po/yua/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"PO-Revision-Date: 2024-09-24 00:39+0000\\n\"\n\"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\\n\"\n\"Language-Team: Yucateco <https://hosted.weblate.org/projects/openwrt/\"\n\"luciapplicationsv2raya/yua/>\\n\"\n\"Language: yua\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=2; plural=n != 1;\\n\"\n\"X-Generator: Weblate 5.8-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"Auto\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"Recopilando datos…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"Configuración\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"Depurar\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"Deshabilitar salida de color de registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"Deshabilitar marca de tiempo del registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"Activar\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"Error\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"Otorgar acceso a la configuración de v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"Soporte IPv6\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"Info\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"dirección de escucha\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"Cargando…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"Registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"El archivo de registro no existe.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"El log está limpio.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"Nivel de registro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"Período máximo de retención de registros\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"NO EN EJECUCIÓN\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Soporte para Nftables\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"Apagado\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"Encendido\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"Interfaz Open Web\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"EN EJECUCIÓN\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"Actualizar cada %d segundos.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"Requiere nftables.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"Requiere conectividad IPv6 funcional.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"Rastro\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"Unidad: días.\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"Error desconocido: %s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"Advertir\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA es un cliente V2Ray para Linux que soporta proxy transparente global, \"\n\"compatible con los protocolos SS, SSR, Trojan (trojan-go) y PingTunnel.\"\n"
  },
  {
    "path": "luci-app-v2raya/po/zh_Hans/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2024-04-08 17:22+0000\\n\"\n\"Last-Translator: try496 <pinghejk@gmail.com>\\n\"\n\"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/\"\n\"openwrt/luciapplicationsv2raya/zh_Hans/>\\n\"\n\"Language: zh_Hans\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\"X-Generator: Weblate 5.5-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"自动\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"正在收集数据中…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"配置\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"调试\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"禁用日志彩色输出\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"禁用日志时间戳\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"启用\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"错误\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"授予访问 v2rayA 配置的权限\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"IPv6 支持\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"信息\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"监听地址\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"加载中…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"日志\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"日志文件不存在。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"日志为空。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"日志级别\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"最长日志保留时间\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"未在运行\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Nftables 支持\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"关\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"开\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"打开 Web 界面\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"运行中\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"每 %d 秒刷新。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"需要 nftables。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"需要工作的 IPv6 连接。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"跟踪\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"单位：天。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"未知错误：%s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"警告\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n\"v2rayA 是一个易用而强大的，跨平台的 V2Ray 客户端，支持 SS、SSR、Trojan\"\n\"（trojan-go）、PingTunnel 协议。\"\n"
  },
  {
    "path": "luci-app-v2raya/po/zh_Hant/v2raya.po",
    "content": "msgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: luci-app-v 2raya\\n\"\n\"PO-Revision-Date: 2025-10-05 13:02+0000\\n\"\n\"Last-Translator: FrzHrzn <alex20020703@163.com>\\n\"\n\"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/\"\n\"projects/openwrt/luciapplicationsv2raya/zh_Hant/>\\n\"\n\"Language: zh_Hant\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=1; plural=0;\\n\"\n\"X-Generator: Weblate 5.14-dev\\n\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:86\nmsgid \"Auto\"\nmsgstr \"自動\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:64\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:30\nmsgid \"Collecting data…\"\nmsgstr \"正在收集資訊…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:13\nmsgid \"Configuration\"\nmsgstr \"設定\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93\nmsgid \"Debug\"\nmsgstr \"除錯\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104\nmsgid \"Disable log color output\"\nmsgstr \"停用日誌彩色輸出\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:106\nmsgid \"Disable log timestamp\"\nmsgstr \"停用日誌時間戳\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:70\nmsgid \"Enable\"\nmsgstr \"啟用\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96\nmsgid \"Error\"\nmsgstr \"錯誤\"\n\n#: applications/luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json:3\nmsgid \"Grant access to v2rayA configuration\"\nmsgstr \"\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:77\nmsgid \"IPv6 support\"\nmsgstr \"IPv6支援\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94\nmsgid \"Info\"\nmsgstr \"資訊\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:73\nmsgid \"Listening address\"\nmsgstr \"監聽位址\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:28\nmsgid \"Loading…\"\nmsgstr \"載入中…\"\n\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:21\nmsgid \"Log\"\nmsgstr \"日誌\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:48\nmsgid \"Log file does not exist.\"\nmsgstr \"日誌檔案不存在。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:39\nmsgid \"Log is clean.\"\nmsgstr \"日誌是空的。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:91\nmsgid \"Log level\"\nmsgstr \"日誌等級\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:99\nmsgid \"Max log retention period\"\nmsgstr \"最长日誌保留時間\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\nmsgid \"NOT RUNNING\"\nmsgstr \"未執行\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:84\nmsgid \"Nftables support\"\nmsgstr \"Nftables支援\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:81\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:88\nmsgid \"Off\"\nmsgstr \"關閉\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:80\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87\nmsgid \"On\"\nmsgstr \"開啟\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:30\nmsgid \"Open Web Interface\"\nmsgstr \"開啟Web介面\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\nmsgid \"RUNNING\"\nmsgstr \"執行中\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:65\nmsgid \"Refresh every %d seconds.\"\nmsgstr \"每 %d 秒重新整理。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:85\nmsgid \"Requires nftables.\"\nmsgstr \"需要nftables。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78\nmsgid \"Requires working IPv6 connectivity.\"\nmsgstr \"需要可用的IPv6連線能力。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92\nmsgid \"Trace\"\nmsgstr \"追蹤\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100\nmsgid \"Unit: days.\"\nmsgstr \"單位：天。\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:52\nmsgid \"Unknown error: %s\"\nmsgstr \"未知錯誤：%s\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95\nmsgid \"Warn\"\nmsgstr \"警告\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:31\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:33\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:50\n#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3\nmsgid \"v2rayA\"\nmsgstr \"v2rayA\"\n\n#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:51\nmsgid \"\"\n\"v2rayA is a V2Ray Linux client supporting global transparent proxy, \"\n\"compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\"\nmsgstr \"\"\n"
  },
  {
    "path": "luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json",
    "content": "{\n\t\"admin/services/v2raya\": {\n\t\t\"title\": \"v2rayA\",\n\t\t\"action\": {\n\t\t\t\"type\": \"firstchild\"\n\t\t},\n\t\t\"depends\": {\n\t\t\t\"acl\": [ \"luci-app-v2raya\" ],\n\t\t\t\"uci\": { \"v2raya\": true }\n\t\t}\n\t},\n\t\"admin/services/v2raya/config\": {\n\t\t\"title\": \"Configuration\",\n\t\t\"order\": 10,\n\t\t\"action\": {\n\t\t\t\"type\": \"view\",\n\t\t\t\"path\": \"v2raya/config\"\n\t\t}\n\t},\n\t\"admin/services/v2raya/log\": {\n\t\t\"title\": \"Log\",\n\t\t\"order\": 20,\n\t\t\"action\": {\n\t\t\t\"type\": \"view\",\n\t\t\t\"path\": \"v2raya/log\"\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "luci-app-v2raya/root/usr/share/rpcd/acl.d/luci-app-v2raya.json",
    "content": "{\n\t\"luci-app-v2raya\": {\n\t\t\"description\": \"Grant access to v2rayA configuration\",\n\t\t\"read\": {\n\t\t\t\"file\": {\n\t\t\t\t\"/var/log/v2raya/v2raya.log\": [ \"read\" ]\n\t\t\t},\n\t\t\t\"ubus\": {\n\t\t\t\t\"service\": [ \"list\" ]\n\t\t\t},\n\t\t\t\"uci\": [ \"v2raya\" ]\n\t\t},\n\t\t\"write\": {\n\t\t\t\"uci\": [ \"v2raya\" ]\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "v2fly-geodata/Makefile",
    "content": "# SPDX-License-Identifier: GPL-3.0-only\n#\n# Copyright (C) 2021 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nPKG_NAME:=v2fly-geodata\nPKG_RELEASE:=1\n\nPKG_LICENSE_FILES:=LICENSE\nPKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>\n\ninclude $(INCLUDE_DIR)/package.mk\n\nGEOIP_VER:=202511050144\nGEOIP_FILE:=geoip.dat.$(GEOIP_VER)\ndefine Download/geoip\n  URL:=https://github.com/v2fly/geoip/releases/download/$(GEOIP_VER)/\n  URL_FILE:=geoip.dat\n  FILE:=$(GEOIP_FILE)\n  HASH:=2445b44d9ae3ab9a867c9d1e0e244646c4c378622e14b9afaf3658ecf46a40b9\nendef\n\nGEOSITE_VER:=20251111080805\nGEOSITE_FILE:=dlc.dat.$(GEOSITE_VER)\ndefine Download/geosite\n  URL:=https://github.com/v2fly/domain-list-community/releases/download/$(GEOSITE_VER)/\n  URL_FILE:=dlc.dat\n  FILE:=$(GEOSITE_FILE)\n  HASH:=55e76a86c943e4d343640e3fec7e06662036489df89815b527c518f2fe3797cb\nendef\n\ndefine Package/v2fly-geodata/template\n  TITLE:=A list to be used for routing purpose in Project V\n  SECTION:=net\n  CATEGORY:=Network\n  URL:=https://www.v2fly.org\n  PKGARCH:=all\nendef\n\ndefine Package/v2fly-geoip\n  $(call Package/v2fly-geodata/template)\n  TITLE+= (geoip)\n  VERSION:=$(GEOIP_VER)-$(PKG_RELEASE)\n  LICENSE:=CC-BY-SA-4.0\nendef\n\ndefine Package/v2fly-geosite\n  $(call Package/v2fly-geodata/template)\n  TITLE+= (geosite)\n  VERSION:=$(GEOSITE_VER)-$(PKG_RELEASE)\n  LICENSE:=MIT\nendef\n\ndefine Build/Prepare\n\t$(call Build/Prepare/Default)\nifneq ($(CONFIG_PACKAGE_v2fly-geoip),)\n\t$(call Download,geoip)\nendif\nifneq ($(CONFIG_PACKAGE_v2fly-geosite),)\n\t$(call Download,geosite)\nendif\nendef\n\ndefine Build/Compile\nendef\n\ndefine Package/v2fly-geoip/install\n\t$(INSTALL_DIR) $(1)/usr/share/v2ray $(1)/usr/share/xray\n\t$(INSTALL_DATA) $(DL_DIR)/$(GEOIP_FILE) $(1)/usr/share/v2ray/geoip.dat\n\t$(LN) ../v2ray/geoip.dat $(1)/usr/share/xray/geoip.dat\nendef\n\ndefine Package/v2fly-geosite/install\n\t$(INSTALL_DIR) $(1)/usr/share/v2ray $(1)/usr/share/xray\n\t$(INSTALL_DATA) $(DL_DIR)/$(GEOSITE_FILE) $(1)/usr/share/v2ray/geosite.dat\n\t$(LN) ../v2ray/geosite.dat $(1)/usr/share/xray/geosite.dat\nendef\n\n$(eval $(call BuildPackage,v2fly-geoip))\n$(eval $(call BuildPackage,v2fly-geosite))\n"
  },
  {
    "path": "v2fly-geodata/update.sh",
    "content": "#!/bin/bash\n\nset -x\n\nexport CURDIR=\"$(cd \"$(dirname $0)\"; pwd)\"\n\nfunction update_geodata() {\n\tlocal type=\"$1\"\n\tlocal repo=\"$2\"\n\tlocal res=\"$3\"\n\tlocal tag ver sha line\n\n\ttag=\"$(gh api \"repos/$repo/releases/latest\" | jq -r \".tag_name\")\"\n\t[ -n \"$tag\" ] || return 1\n\n\tver=\"$(awk -F \"${type}_VER:=\" '{print $2}' \"$CURDIR/Makefile\" | xargs)\"\n\t[ \"$tag\" != \"$ver\" ] || return 2\n\n\tsha=\"$(curl -fsSL \"https://github.com/$repo/releases/download/$tag/$res.dat.sha256sum\" | awk '{print $1}')\"\n\t[ -n \"$sha\" ] || return 1\n\n\tline=\"$(awk \"/FILE:=\\\\$\\(${type}_FILE\\)/ {print NR}\" \"$CURDIR/Makefile\")\"\n\tsed -i -e \"s/${type}_VER:=.*/${type}_VER:=$tag/\" \\\n\t       -e \"$((line + 1))s/HASH:=.*/HASH:=$sha/\" \\\n\t\t\"$CURDIR/Makefile\"\n}\n\nupdate_geodata \"GEOIP\" \"v2fly/geoip\" \"geoip\"\nupdate_geodata \"GEOSITE\" \"v2fly/domain-list-community\" \"dlc\"\n"
  },
  {
    "path": "v2ray-core/Makefile",
    "content": "# SPDX-License-Identifier: GPL-3.0-only\n#\n# Copyright (C) 2021 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nPKG_NAME:=v2ray-core\nPKG_VERSION:=5.41.0\nPKG_RELEASE:=1\n\nPKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz\nPKG_SOURCE_URL:=https://codeload.github.com/v2fly/v2ray-core/tar.gz/v$(PKG_VERSION)?\nPKG_HASH:=c67caa2d73f35a9562ecaeb5184733c943c9dafb47e8f1cfeacb892a9247e9b5\n\n\nPKG_LICENSE:=MIT\nPKG_LICENSE_FILES:=LICENSE\nPKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>\n\nPKG_BUILD_DEPENDS:=golang/host\nPKG_BUILD_PARALLEL:=1\nPKG_BUILD_FLAGS:=no-mips16\n\nGO_PKG:=github.com/v2fly/v2ray-core/v5\nGO_PKG_BUILD_PKG:=$(GO_PKG)/main\nGO_PKG_LDFLAGS_X:= \\\n\t$(GO_PKG).build=OpenWrt \\\n\t$(GO_PKG).version=$(PKG_VERSION)\n\ninclude $(INCLUDE_DIR)/package.mk\ninclude $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk\n\nGO_PKG_TARGET_VARS:=$(filter-out CGO_ENABLED=%,$(GO_PKG_TARGET_VARS)) CGO_ENABLED=0\nGO_PKG_DEFAULT_LDFLAGS:=$(filter-out -linkmode external,$(GO_PKG_DEFAULT_LDFLAGS))\nGO_PKG_BUILD_VARS:=$(filter-out GOTOOLCHAIN=%,$(GO_PKG_BUILD_VARS)) GOTOOLCHAIN=go1.25.4+auto\n\ndefine Package/v2ray/template\n  TITLE:=A platform for building proxies to bypass network restrictions\n  SECTION:=net\n  CATEGORY:=Network\n  URL:=https://www.v2fly.org\nendef\n\ndefine Package/v2ray-core\n  $(call Package/v2ray/template)\n  DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle\nendef\n\ndefine Package/v2ray-extra\n  $(call Package/v2ray/template)\n  TITLE+= (extra resources)\n  DEPENDS:=v2ray-core\n  PKGARCH:=all\nendef\n\ndefine Package/v2ray/description\n  Project V is a set of network tools that help you to build your own computer network.\n  It secures your network connections and thus protects your privacy.\nendef\n\ndefine Package/v2ray-core/description\n  $(call Package/v2ray/description)\nendef\n\ndefine Package/v2ray-extra/description\n  $(call Package/v2ray/description)\n\n  This includes extra resources for v2ray-core.\nendef\n\ndefine Package/v2ray-core/install\n\t$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))\n\t$(INSTALL_DIR) $(1)/usr/bin/\n\t$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/main $(1)/usr/bin/v2ray\nendef\n\ndefine Package/v2ray-extra/install\n\t$(INSTALL_DIR) $(1)/usr/share/v2ray/\n\t$(CP) $(PKG_BUILD_DIR)/release/extra/* $(1)/usr/share/v2ray/\nendef\n\n$(eval $(call BuildPackage,v2ray-core))\n$(eval $(call BuildPackage,v2ray-extra))\n"
  },
  {
    "path": "v2ray-core/test.sh",
    "content": "#!/bin/sh\n\ncase \"$1\" in\n\t\"v2ray-core\")\n\t\tv2ray version 2>&1 | grep \"$PKG_VERSION\"\n\t\t;;\nesac\n"
  },
  {
    "path": "v2raya/Makefile",
    "content": "# SPDX-License-Identifier: GPL-3.0-only\n#\n# Copyright (C) 2021-2023 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nPKG_NAME:=v2rayA\nPKG_VERSION:=2.2.7.4\nPKG_RELEASE:=1\n\nPKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz\nPKG_SOURCE_URL:=https://codeload.github.com/v2rayA/v2rayA/tar.gz/v$(PKG_VERSION)?\nPKG_HASH:=801a5488493cef8c2603d596e5982d226c07ad8f4a2969d942922be79169ec29\nPKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/service\n\nPKG_LICENSE:=AGPL-3.0-only\nPKG_LICENSE_FILES:=LICENSE\nPKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>\n\nPKG_BUILD_DEPENDS:=golang/host\nPKG_BUILD_PARALLEL:=1\nPKG_BUILD_FLAGS:=no-mips16\n\nGO_PKG:=github.com/v2rayA/v2rayA\nGO_PKG_LDFLAGS_X:= \\\n\t$(GO_PKG)/conf.Version=$(PKG_VERSION) \\\n\t$(GO_PKG)/core/iptables.TproxyNotSkipBr=true\n\ninclude $(INCLUDE_DIR)/package.mk\ninclude $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk\n\nTAR_OPTIONS+= --strip-components 1\nTAR_CMD=$(HOST_TAR) -C $(1)/.. $(TAR_OPTIONS)\n\ndefine Package/v2raya\n  TITLE:=A Linux web GUI client of Project V\n  SECTION:=net\n  CATEGORY:=Network\n  SUBMENU:=Web Servers/Proxies\n  DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle\n  URL:=https://v2raya.org\nendef\n\ndefine Package/v2raya/description\n  v2rayA is a V2Ray Linux client supporting global transparent proxy,\n  compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols.\nendef\n\ndefine Package/v2raya/conffiles\n/etc/v2raya/\n/etc/config/v2raya\nendef\n\nWEB_FILE:=$(PKG_NAME)-web-$(PKG_VERSION).tar.gz\ndefine Download/v2raya-web\n\tURL:=https://github.com/v2rayA/v2rayA/releases/download/v$(PKG_VERSION)/\n\tURL_FILE:=web.tar.gz\n\tFILE:=$(WEB_FILE)\n\tHASH:=985b083a75b7b34ea9c5151cbc096f6f44fa369a807fea85b435fed5229dae65\nendef\n\nGO_PKG_TARGET_VARS:=$(filter-out CGO_ENABLED=%,$(GO_PKG_TARGET_VARS)) CGO_ENABLED=0\nGO_PKG_DEFAULT_LDFLAGS:=$(filter-out -linkmode external,$(GO_PKG_DEFAULT_LDFLAGS))\n\ndefine Build/Prepare\n\t$(call Build/Prepare/Default)\n\n\t( \\\n\t\tmkdir -p $(PKG_BUILD_DIR)/server/router/web ; \\\n\t\tgzip -dc $(DL_DIR)/$(WEB_FILE) | $(HOST_TAR) -C $(PKG_BUILD_DIR)/server/router/web $(TAR_OPTIONS) ; \\\n\t)\nendef\n\ndefine Package/v2raya/install\n\t$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))\n\t$(INSTALL_DIR) $(1)/usr/bin/\n\t$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/v2rayA $(1)/usr/bin/v2raya\n\n\t$(INSTALL_DIR) $(1)/etc/config/\n\t$(INSTALL_CONF) $(CURDIR)/files/v2raya.config $(1)/etc/config/v2raya\n\t$(INSTALL_DIR) $(1)/etc/init.d/\n\t$(INSTALL_BIN) $(CURDIR)/files/v2raya.init $(1)/etc/init.d/v2raya\nendef\n\n$(eval $(call Download,v2raya-web))\n$(eval $(call GoBinPackage,v2raya))\n$(eval $(call BuildPackage,v2raya))\n"
  },
  {
    "path": "v2raya/files/v2raya.config",
    "content": "\nconfig v2raya 'config'\n\toption enabled '0'\n\n\t# Listening address\n\toption address '0.0.0.0:2017'\n\n\t# Make sure your IPv6 network works fine before you turn it on.\n\t# Optional values: auto, on, off.\n\toption ipv6_support 'auto'\n\n\t# Experimental feature. Make sure you have installed nftables.\n\t# Optional values: auto, on, off.\n\toption nftables_support 'auto'\n\n\t# Optional values: trace, debug, info, warn or error\n\toption log_level 'info'\n\n\t# Maximum number of days to keep log files\n\toption log_max_days '3'\n\n\toption log_disable_color '1'\n\n\toption log_disable_timestamp '0'\n\n\t# Executable v2ray binary path. Auto-detect if put it empty\n\toption v2ray_bin ''\n\n\t# Additional v2ray config directory, files in it will be combined with config generated by v2rayA\n\toption v2ray_confdir ''\n\n\t# The executable file to run in the transparent proxy life-cycle.\n\t# v2rayA will pass in the --transparent-type (tproxy, redirect)\n\t#   and --stage (pre-start, post-start, pre-stop, post-stop) arguments.\n\toption transparent_hook ''\n\n\t# The executable file to run in the v2ray-core life-cycle.\n\t# v2rayA will pass in the --stage (pre-start, post-start, pre-stop, post-stop) argument.\n\toption core_hook ''\n\n\t# The executable file to run in the v2ray-core life-cycle.\n\t# v2rayA will pass in the --stage (pre-start, post-start, pre-stop, post-stop) argument.\n\toption plugin_manager ''\n\n"
  },
  {
    "path": "v2raya/files/v2raya.init",
    "content": "#!/bin/sh /etc/rc.common\n# Copyright (C) 2021 Tianling Shen <cnsztl@immortalwrt.org>\n\nUSE_PROCD=1\nSTART=99\n\nCONF=\"v2raya\"\nPROG=\"/usr/bin/v2raya\"\n\nis_enabled() {\n\tlocal enabled\n\tconfig_get_bool enabled \"$1\" \"$2\" \"${3:-0}\"\n\tif [ \"$enabled\" -eq \"1\" ]; then\n\t\treturn 0\n\telse\n\t\treturn 1\n\tfi\n}\n\nappend_env() {\n\tprocd_append_param env \"V2RAYA_$(echo \"$1\" | tr \"[a-z]\" \"[A-Z]\")\"=\"$2\"\n}\n\nappend_env_arg() {\n\tlocal value\n\tconfig_get value \"$1\" \"$2\" $3\n\t[ -n \"$value\" ] && append_env \"$2\" \"$value\"\n}\n\nappend_env_bool() {\n\tis_enabled \"$1\" \"$2\" && append_env \"$2\" \"true\"\n}\n\nstart_service() {\n\tconfig_load \"$CONF\"\n\n\tis_enabled \"config\" \"enabled\" || return 1\n\n\tprocd_open_instance \"$CONF\"\n\tprocd_set_param command \"$PROG\"\n\tprocd_set_param env XDG_DATA_HOME=\"/usr/share\"\n\n\tappend_env \"config\" \"/etc/v2raya\"\n\tappend_env \"log_file\" \"/var/log/v2raya/v2raya.log\"\n\n\tappend_env_arg \"config\" \"address\" \"0.0.0.0:2017\"\n\tappend_env_arg \"config\" \"ipv6_support\" \"auto\"\n\tappend_env_arg \"config\" \"nftables_support\" \"auto\"\n\tappend_env_arg \"config\" \"log_level\" \"info\"\n\tappend_env_arg \"config\" \"log_max_days\" \"3\"\n\tappend_env_arg \"config\" \"v2ray_bin\"\n\tappend_env_arg \"config\" \"v2ray_confdir\"\n\tappend_env_arg \"config\" \"transparent_hook\"\n\tappend_env_arg \"config\" \"core_hook\"\n\tappend_env_arg \"config\" \"plugin_manager\"\n\tappend_env_bool \"config\" \"log_disable_color\"\n\tappend_env_bool \"config\" \"log_disable_timestamp\"\n\n\tprocd_set_param limits core=\"unlimited\"\n\tprocd_set_param limits nofile=\"1000000 1000000\"\n\tprocd_set_param respawn\n\tprocd_set_param stdout 1\n\tprocd_set_param stderr 1\n\n\tprocd_close_instance\n}\n\nreload_service() {\n\tstop\n\tstart\n}\n\nservice_triggers() {\n\tprocd_add_reload_trigger \"$CONF\"\n}\n"
  },
  {
    "path": "v2raya/test.sh",
    "content": "#!/bin/sh\n\nv2raya --version | grep \"$PKG_VERSION\"\n"
  },
  {
    "path": "v2raya.pub",
    "content": "untrusted comment: Public usign key for v2rayA builds\nRWSUzCqDT7CqA+u/9hvcT3Hkw3fUc1dYnpsLmIsayjPmsZM5NjYKYiHW\n"
  },
  {
    "path": "xray-core/Makefile",
    "content": "# SPDX-License-Identifier: GPL-3.0-only\n#\n# Copyright (C) 2021 ImmortalWrt.org\n\ninclude $(TOPDIR)/rules.mk\n\nPKG_NAME:=xray-core\nPKG_VERSION:=25.10.15\nPKG_RELEASE:=1\n\nPKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz\nPKG_SOURCE_URL:=https://codeload.github.com/XTLS/Xray-core/tar.gz/v$(PKG_VERSION)?\nPKG_HASH:=5df030f456db58b682110545e19da9b971303387955562ec408f484580450736\n\nPKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>\nPKG_LICENSE:=MPL-2.0\nPKG_LICENSE_FILES:=LICENSE\n\nPKG_BUILD_DIR:=$(BUILD_DIR)/Xray-core-$(PKG_VERSION)\nPKG_BUILD_DEPENDS:=golang/host\nPKG_BUILD_PARALLEL:=1\nPKG_BUILD_FLAGS:=no-mips16\n\nGO_PKG:=github.com/xtls/xray-core\nGO_PKG_BUILD_PKG:=github.com/xtls/xray-core/main\nGO_PKG_LDFLAGS_X:= \\\n\t$(GO_PKG)/core.build=OpenWrt \\\n\t$(GO_PKG)/core.version=$(PKG_VERSION)\n\ninclude $(INCLUDE_DIR)/package.mk\ninclude $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk\n\nGO_PKG_TARGET_VARS:=$(filter-out CGO_ENABLED=%,$(GO_PKG_TARGET_VARS)) CGO_ENABLED=0\nGO_PKG_DEFAULT_LDFLAGS:=$(filter-out -linkmode external,$(GO_PKG_DEFAULT_LDFLAGS))\nGO_PKG_BUILD_VARS:=$(filter-out GOTOOLCHAIN=%,$(GO_PKG_BUILD_VARS)) GOTOOLCHAIN=go1.25.4+auto\n\ndefine Package/xray-core\n  TITLE:=A platform for building proxies to bypass network restrictions\n  SECTION:=net\n  CATEGORY:=Network\n  URL:=https://xtls.github.io\n  DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle\nendef\n\ndefine Package/xray-core/description\n  Xray, Penetrates Everything. It helps you to build your own computer network.\n  It secures your network connections and thus protects your privacy.\nendef\n\ndefine Package/xray-core/install\n\t$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))\n\t$(INSTALL_DIR) $(1)/usr/bin/\n\t$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/main $(1)/usr/bin/xray\nendef\n\n$(eval $(call BuildPackage,xray-core))\n"
  },
  {
    "path": "xray-core/test.sh",
    "content": "#!/bin/sh\n\nxray version 2>&1 | grep \"$PKG_VERSION\"\n"
  }
]