mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
fix
This commit is contained in:
parent
b3d17da339
commit
7f7ccd1afb
207 changed files with 0 additions and 37374 deletions
|
@ -1,45 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2010-2015 OpenWrt.org
|
||||
# Copyright (C) 2018-2019 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
# - Added gateway setting
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=6in4
|
||||
PKG_VERSION:=270
|
||||
PKG_RELEASE:=2
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/6in4
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
DEPENDS:=@IPV6 +kmod-sit +uclient-fetch
|
||||
TITLE:=IPv6-in-IPv4 configuration support
|
||||
MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
||||
PKGARCH:=all
|
||||
endef
|
||||
|
||||
define Package/6in4/description
|
||||
Provides support for 6in4 tunnels in /etc/config/network.
|
||||
Refer to http://wiki.openwrt.org/doc/uci/network for
|
||||
configuration details.
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Package/6in4/install
|
||||
$(INSTALL_DIR) $(1)/lib/netifd/proto
|
||||
$(INSTALL_BIN) ./files/6in4.sh $(1)/lib/netifd/proto/6in4.sh
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,6in4))
|
|
@ -1,149 +0,0 @@
|
|||
#!/bin/sh
|
||||
# 6in4.sh - IPv6-in-IPv4 tunnel backend
|
||||
# Copyright (c) 2010-2015 OpenWrt.org
|
||||
|
||||
[ -n "$INCLUDE_ONLY" ] || {
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/network.sh
|
||||
. ../netifd-proto.sh
|
||||
init_proto "$@"
|
||||
}
|
||||
|
||||
proto_6in4_update() {
|
||||
sh -c '
|
||||
timeout=5
|
||||
|
||||
(while [ $((timeout--)) -gt 0 ]; do
|
||||
sleep 1
|
||||
kill -0 $$ || exit 0
|
||||
done; kill -9 $$) 2>/dev/null &
|
||||
|
||||
exec "$@"
|
||||
' "$1" "$@"
|
||||
}
|
||||
|
||||
proto_6in4_add_prefix() {
|
||||
append "$3" "$1"
|
||||
}
|
||||
|
||||
proto_6in4_setup() {
|
||||
local cfg="$1"
|
||||
local iface="$2"
|
||||
local link="6in4-$cfg"
|
||||
|
||||
local mtu ttl tos ipaddr peeraddr ip6addr ip6prefix ip6prefixes tunlink tunnelid username password updatekey gateway
|
||||
json_get_vars mtu ttl tos ipaddr peeraddr ip6addr tunlink tunnelid username password updatekey gateway
|
||||
json_for_each_item proto_6in4_add_prefix ip6prefix ip6prefixes
|
||||
|
||||
[ -z "$peeraddr" ] && {
|
||||
proto_notify_error "$cfg" "MISSING_ADDRESS"
|
||||
proto_block_restart "$cfg"
|
||||
return
|
||||
}
|
||||
|
||||
[ -n "$tunlink" ] && ( proto_add_host_dependency "$cfg" "$peeraddr" "$tunlink" )
|
||||
|
||||
[ -z "$ipaddr" ] && {
|
||||
local wanif="$tunlink"
|
||||
if [ -z "$wanif" ] && ! network_find_wan wanif; then
|
||||
proto_notify_error "$cfg" "NO_WAN_LINK"
|
||||
return
|
||||
fi
|
||||
|
||||
if ! network_get_ipaddr ipaddr "$wanif"; then
|
||||
proto_notify_error "$cfg" "NO_WAN_LINK"
|
||||
return
|
||||
fi
|
||||
}
|
||||
|
||||
proto_init_update "$link" 1
|
||||
|
||||
[ -n "$ip6addr" ] && {
|
||||
local local6="${ip6addr%%/*}"
|
||||
local mask6="${ip6addr##*/}"
|
||||
[[ "$local6" = "$mask6" ]] && mask6=
|
||||
proto_add_ipv6_address "$local6" "$mask6"
|
||||
proto_add_ipv6_route "::" 0 "" "" "" "$local6/$mask6"
|
||||
}
|
||||
|
||||
[ -n "$gateway" ] && {
|
||||
proto_add_ipv6_route "::" 0 "$gateway"
|
||||
}
|
||||
|
||||
for ip6prefix in $ip6prefixes; do
|
||||
proto_add_ipv6_prefix "$ip6prefix"
|
||||
proto_add_ipv6_route "::" 0 "" "" "" "$ip6prefix"
|
||||
done
|
||||
|
||||
proto_add_tunnel
|
||||
json_add_string mode sit
|
||||
json_add_int mtu "${mtu:-1280}"
|
||||
json_add_int ttl "${ttl:-64}"
|
||||
[ -n "$tos" ] && json_add_string tos "$tos"
|
||||
json_add_string local "$ipaddr"
|
||||
json_add_string remote "$peeraddr"
|
||||
[ -n "$tunlink" ] && json_add_string link "$tunlink"
|
||||
proto_close_tunnel
|
||||
|
||||
proto_send_update "$cfg"
|
||||
|
||||
[ -n "$tunnelid" -a -n "$username" -a \( -n "$password" -o -n "$updatekey" \) ] && {
|
||||
[ -n "$updatekey" ] && password="$updatekey"
|
||||
|
||||
local http="http"
|
||||
local urlget="uclient-fetch"
|
||||
local urlget_opts="-qO-"
|
||||
local ca_path="${SSL_CERT_DIR:-/etc/ssl/certs}"
|
||||
|
||||
[ -f /lib/libustream-ssl.so ] && http=https
|
||||
[ "$http" = "https" -a -z "$(find $ca_path -name "*.0" 2>/dev/null)" ] && {
|
||||
urlget_opts="$urlget_opts --no-check-certificate"
|
||||
}
|
||||
|
||||
local url="$http://ipv4.tunnelbroker.net/nic/update?hostname=$tunnelid"
|
||||
local try=0
|
||||
local max=3
|
||||
|
||||
(
|
||||
set -o pipefail
|
||||
while [ $((++try)) -le $max ]; do
|
||||
if proto_6in4_update $urlget $urlget_opts --user="$username" --password="$password" "$url" 2>&1 | \
|
||||
sed -e 's,^Killed$,timeout,' -e "s,^,update $try/$max: ," | \
|
||||
logger -t "$link";
|
||||
then
|
||||
logger -t "$link" "updated"
|
||||
return 0
|
||||
fi
|
||||
sleep 5
|
||||
done
|
||||
logger -t "$link" "update failed"
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
proto_6in4_teardown() {
|
||||
local cfg="$1"
|
||||
}
|
||||
|
||||
proto_6in4_init_config() {
|
||||
no_device=1
|
||||
available=1
|
||||
|
||||
proto_config_add_string "ipaddr"
|
||||
proto_config_add_string "ip6addr"
|
||||
proto_config_add_array "ip6prefix"
|
||||
proto_config_add_string "peeraddr"
|
||||
proto_config_add_string "tunlink"
|
||||
proto_config_add_string "tunnelid"
|
||||
proto_config_add_string "username"
|
||||
proto_config_add_string "password"
|
||||
proto_config_add_string "updatekey"
|
||||
proto_config_add_string "gateway"
|
||||
proto_config_add_int "mtu"
|
||||
proto_config_add_int "ttl"
|
||||
proto_config_add_string "tos"
|
||||
}
|
||||
|
||||
[ -n "$INCLUDE_ONLY" ] || {
|
||||
add_protocol 6in4
|
||||
}
|
|
@ -1,41 +0,0 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=kmod-aquantia
|
||||
PKG_VERSION:=1.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define KernelPackage/phy-aquantia
|
||||
SUBMENU:=Network Devices
|
||||
TITLE:=aQuantia device support
|
||||
DEPENDS:=@PCI_SUPPORT @TARGET_x86_64 @KERNEL_5_4 +kmod-i2c-core +kmod-i2c-algo-bit +kmod-ptp +kmod-hwmon-core +kmod-libphy
|
||||
KCONFIG:=CONFIG_AQUANTIA_PHY
|
||||
HIDDEN:=1
|
||||
FILES:=$(LINUX_DIR)/drivers/net/phy/aquantia.ko
|
||||
AUTOLOAD:=$(call AutoProbe,aquantia)
|
||||
endef
|
||||
|
||||
define KernelPackage/phy-aquantia/description
|
||||
Kernel modules for aQuantia Ethernet adapters.
|
||||
endef
|
||||
|
||||
define KernelPackage/atlantic
|
||||
SUBMENU:=Network Devices
|
||||
TITLE:=aQuantia AQtion(tm) Support
|
||||
DEPENDS:=@PCI_SUPPORT @TARGET_x86_64 @KERNEL_5_4 +kmod-i2c-core +kmod-i2c-algo-bit +kmod-ptp +kmod-phy-aquantia
|
||||
KCONFIG:=CONFIG_AQTION
|
||||
FILES:=$(LINUX_DIR)/drivers/net/ethernet/aquantia/atlantic/atlantic.ko
|
||||
AUTOLOAD:=$(call AutoProbe,atlantic)
|
||||
endef
|
||||
|
||||
define KernelPackage/atlantic/description
|
||||
Kernel modules for the aQuantia AQtion(tm) Ethernet card
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,phy-aquantia))
|
||||
$(eval $(call KernelPackage,atlantic))
|
|
@ -1,59 +0,0 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=bcm27xx-eeprom
|
||||
PKG_VERSION:=v2022.04.26-138a1
|
||||
PKG_RELEASE:=$(AUTORELEASE)
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/raspberrypi/rpi-eeprom/tar.gz/$(PKG_VERSION)?
|
||||
PKG_HASH:=7c54839e68f226c5853fb63c8a1539b729d84b2e6bac311a51766c601d10a413
|
||||
|
||||
PKG_LICENSE:=BSD-3-Clause Custom
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
PKG_MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
TAR_OPTIONS:=--strip-components 1 $(TAR_OPTIONS)
|
||||
TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)
|
||||
|
||||
define Package/bcm27xx-eeprom
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
DEPENDS:=bcm27xx-userland +blkid +coreutils +coreutils-od +pciutils +python3-light
|
||||
TITLE:=BCM27xx EEPROM tools
|
||||
endef
|
||||
|
||||
define Package/bcm27xx-eeprom/description
|
||||
BCM27xx EEPROM tools.
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
true
|
||||
endef
|
||||
|
||||
define Package/bcm27xx-eeprom/conffiles
|
||||
/etc/bcm27xx-eeprom.conf
|
||||
endef
|
||||
|
||||
define Package/bcm27xx-eeprom/install
|
||||
$(INSTALL_DIR) $(1)/etc
|
||||
$(INSTALL_CONF) $(PKG_BUILD_DIR)/rpi-eeprom-update-default $(1)/etc/bcm27xx-eeprom.conf
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/rpi-eeprom-config $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/rpi-eeprom-digest $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/rpi-eeprom-update $(1)/usr/bin
|
||||
|
||||
$(INSTALL_DIR) $(1)/lib/firmware/raspberrypi/bootloader
|
||||
$(CP) $(PKG_BUILD_DIR)/firmware/release-notes.md $(1)/lib/firmware/raspberrypi/bootloader
|
||||
|
||||
$(INSTALL_DIR) $(1)/lib/firmware/raspberrypi/bootloader/critical
|
||||
$(CP) $(PKG_BUILD_DIR)/firmware/critical/ $(1)/lib/firmware/raspberrypi/bootloader/
|
||||
|
||||
$(INSTALL_DIR) $(1)/lib/firmware/raspberrypi/bootloader/stable
|
||||
$(CP) $(PKG_BUILD_DIR)/firmware/stable/ $(1)/lib/firmware/raspberrypi/bootloader/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,bcm27xx-eeprom))
|
|
@ -1,45 +0,0 @@
|
|||
From da37f7b051fe6833e25e78184cc9217dd4379187 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Mon, 23 Mar 2020 10:10:55 +0100
|
||||
Subject: [PATCH] rpi-eeprom-update: OpenWrt defaults
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
---
|
||||
rpi-eeprom-update | 6 +++---
|
||||
rpi-eeprom-update-default | 5 +++--
|
||||
2 files changed, 6 insertions(+), 5 deletions(-)
|
||||
|
||||
--- a/rpi-eeprom-update
|
||||
+++ b/rpi-eeprom-update
|
||||
@@ -24,12 +24,12 @@ else
|
||||
fi
|
||||
|
||||
# Selects the release sub-directory
|
||||
-FIRMWARE_RELEASE_STATUS=${FIRMWARE_RELEASE_STATUS:-default}
|
||||
+FIRMWARE_RELEASE_STATUS=${FIRMWARE_RELEASE_STATUS:-stable}
|
||||
FIRMWARE_IMAGE_DIR=${FIRMWARE_IMAGE_DIR:-${FIRMWARE_ROOT}/${FIRMWARE_RELEASE_STATUS}}
|
||||
-FIRMWARE_BACKUP_DIR=${FIRMWARE_BACKUP_DIR:-/var/lib/raspberrypi/bootloader/backup}
|
||||
+FIRMWARE_BACKUP_DIR=${FIRMWARE_BACKUP_DIR:-${FIRMWARE_ROOT}/backup}
|
||||
ENABLE_VL805_UPDATES=${ENABLE_VL805_UPDATES:-1}
|
||||
RECOVERY_BIN=${RECOVERY_BIN:-${FIRMWARE_ROOT}/${FIRMWARE_RELEASE_STATUS}/recovery.bin}
|
||||
BOOTFS=${BOOTFS:-/boot}
|
||||
CM4_ENABLE_RPI_EEPROM_UPDATE=${CM4_ENABLE_RPI_EEPROM_UPDATE:-0}
|
||||
RPI_EEPROM_UPDATE_CONFIG_TOOL="${RPI_EEPROM_UPDATE_CONFIG_TOOL:-raspi-config}"
|
||||
|
||||
--- a/rpi-eeprom-update-default
|
||||
+++ b/rpi-eeprom-update-default
|
||||
@@ -1,8 +1,9 @@
|
||||
|
||||
FIRMWARE_ROOT=/lib/firmware/raspberrypi/bootloader
|
||||
-FIRMWARE_RELEASE_STATUS="critical"
|
||||
+FIRMWARE_RELEASE_STATUS="stable"
|
||||
FIRMWARE_IMAGE_DIR="${FIRMWARE_ROOT}/${FIRMWARE_RELEASE_STATUS}"
|
||||
-FIRMWARE_BACKUP_DIR="/var/lib/raspberrypi/bootloader/backup"
|
||||
+FIRMWARE_BACKUP_DIR="${FIRMWARE_ROOT}/backup"
|
||||
BOOTFS=/boot
|
||||
USE_FLASHROM=0
|
||||
EEPROM_CONFIG_HOOK=
|
||||
+VCMAILBOX=/usr/bin/vcmailbox
|
|
@ -1,26 +0,0 @@
|
|||
From 6674d49dea0104031b3f54df4c7a356dc4307bb2 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Wed, 25 Mar 2020 20:58:35 +0100
|
||||
Subject: [PATCH] rpi-eeprom-update: change default include path
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
---
|
||||
rpi-eeprom-update | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
--- a/rpi-eeprom-update
|
||||
+++ b/rpi-eeprom-update
|
||||
@@ -6,8 +6,8 @@ set -e
|
||||
|
||||
script_dir=$(cd "$(dirname "$0")" && pwd)
|
||||
|
||||
-if [ -f /etc/default/rpi-eeprom-update ]; then
|
||||
- . /etc/default/rpi-eeprom-update
|
||||
+if [ -f /etc/bcm27xx-eeprom.conf ]; then
|
||||
+ . /etc/bcm27xx-eeprom.conf
|
||||
fi
|
||||
|
||||
LOCAL_MODE=0
|
|
@ -1,33 +0,0 @@
|
|||
From 8376ac74390af0ad736c88615e128b82a75eebc0 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
||||
Date: Fri, 19 Feb 2021 10:54:23 +0100
|
||||
Subject: [PATCH] rpi-eeprom-update: chmod silent (-f) is not supported
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
---
|
||||
rpi-eeprom-update | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
--- a/rpi-eeprom-update
|
||||
+++ b/rpi-eeprom-update
|
||||
@@ -200,7 +200,7 @@ applyRecoveryUpdate()
|
||||
|| die "Failed to copy ${TMP_EEPROM_IMAGE} to ${BOOTFS}"
|
||||
|
||||
# For NFS mounts ensure that the files are readable to the TFTP user
|
||||
- chmod -f go+r "${BOOTFS}/pieeprom.upd" "${BOOTFS}/pieeprom.sig" \
|
||||
+ chmod go+r "${BOOTFS}/pieeprom.upd" "${BOOTFS}/pieeprom.sig" \
|
||||
|| die "Failed to set permissions on eeprom update files"
|
||||
fi
|
||||
|
||||
@@ -211,7 +211,7 @@ applyRecoveryUpdate()
|
||||
|| die "Failed to copy ${VL805_UPDATE_IMAGE} to ${BOOTFS}/vl805.bin"
|
||||
|
||||
# For NFS mounts ensure that the files are readable to the TFTP user
|
||||
- chmod -f go+r "${BOOTFS}/vl805.bin" "${BOOTFS}/vl805.sig" \
|
||||
+ chmod go+r "${BOOTFS}/vl805.bin" "${BOOTFS}/vl805.sig" \
|
||||
|| die "Failed to set permissions on eeprom update files"
|
||||
fi
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
--- a/rpi-eeprom-config
|
||||
+++ b/rpi-eeprom-config
|
||||
@@ -166,8 +166,8 @@ def edit_config(eeprom=None):
|
||||
"""
|
||||
Implements something like 'git commit' for editing EEPROM configs.
|
||||
"""
|
||||
- # Default to nano if $EDITOR is not defined.
|
||||
- editor = 'nano'
|
||||
+ # Default to vi if $EDITOR is not defined.
|
||||
+ editor = 'vi'
|
||||
if 'EDITOR' in os.environ:
|
||||
editor = os.environ['EDITOR']
|
||||
|
||||
@@ -428,7 +428,7 @@ Operating modes:
|
||||
|
||||
To cancel the pending update run 'sudo rpi-eeprom-update -r'
|
||||
|
||||
- The default text editor is nano and may be overridden by setting the 'EDITOR'
|
||||
+ The default text editor is vi and may be overridden by setting the 'EDITOR'
|
||||
environment variable and passing '-E' to 'sudo' to preserve the environment.
|
||||
|
||||
6. Signing the bootloader config file.
|
|
@ -1,58 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2014 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
# $Id$
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
|
||||
PKG_NAME:=cryptodev-linux
|
||||
PKG_VERSION:=1.12
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/$(PKG_NAME)/$(PKG_NAME)/tar.gz/$(PKG_NAME)-$(PKG_VERSION)?
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_HASH:=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
PKG_LICENSE_FILES:=COPYING
|
||||
|
||||
PKG_MAINTAINER:=Ansuel Smith <ansuelsmth@gmail.com>
|
||||
|
||||
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_NAME)-$(PKG_VERSION)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define KernelPackage/cryptodev
|
||||
SUBMENU:=Cryptographic API modules
|
||||
TITLE:=Driver for cryptographic acceleration
|
||||
URL:=http://cryptodev-linux.org/
|
||||
VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
|
||||
DEPENDS:=+kmod-crypto-authenc +kmod-crypto-hash
|
||||
FILES:=$(PKG_BUILD_DIR)/cryptodev.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,50,cryptodev)
|
||||
MODPARAMS.cryptodev:=cryptodev_verbosity=-1
|
||||
endef
|
||||
|
||||
define KernelPackage/cryptodev/description
|
||||
This is a driver for that allows to use the Linux kernel supported
|
||||
hardware ciphers by user-space applications.
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
$(KERNEL_MAKE_FLAGS) \
|
||||
KERNEL_DIR="$(LINUX_DIR)"
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(STAGING_DIR)/usr/include/crypto
|
||||
$(CP) $(PKG_BUILD_DIR)/crypto/cryptodev.h $(STAGING_DIR)/usr/include/crypto/
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,cryptodev))
|
|
@ -1,62 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2022 Chion Tang <tech@chionlab.moe>
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=fullconenat
|
||||
PKG_RELEASE:=9
|
||||
|
||||
PKG_SOURCE_DATE:=2022-02-13
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://github.com/llccd/netfilter-full-cone-nat.git
|
||||
PKG_SOURCE_VERSION:=108a36cbdca17e68c9e6e7fd5e26156a88f738e8
|
||||
PKG_MIRROR_HASH:=00d749235271dee194dcd23c22e6e85207ea90192a62a110b2af0b4e4de1971f
|
||||
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
PKG_MAINTAINER:=Chion Tang <tech@chionlab.moe>
|
||||
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/iptables-mod-fullconenat
|
||||
SUBMENU:=Firewall
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=FULLCONENAT iptables extension
|
||||
DEPENDS:=+iptables +kmod-ipt-fullconenat
|
||||
endef
|
||||
|
||||
define Package/iptables-mod-fullconenat/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib/iptables
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/libipt_FULLCONENAT.so $(1)/usr/lib/iptables
|
||||
endef
|
||||
|
||||
define KernelPackage/ipt-fullconenat
|
||||
SUBMENU:=Netfilter Extensions
|
||||
TITLE:=FULLCONENAT netfilter module
|
||||
DEPENDS:=+kmod-nf-ipt +kmod-nf-nat
|
||||
KCONFIG:= \
|
||||
CONFIG_NF_CONNTRACK_EVENTS=y \
|
||||
CONFIG_NF_CONNTRACK_CHAIN_EVENTS=y
|
||||
FILES:=$(PKG_BUILD_DIR)/xt_FULLCONENAT.ko
|
||||
endef
|
||||
|
||||
include $(INCLUDE_DIR)/kernel-defaults.mk
|
||||
|
||||
define Build/Compile
|
||||
+$(MAKE) $(PKG_JOBS) -C "$(LINUX_DIR)" \
|
||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||
ARCH="$(LINUX_KARCH)" \
|
||||
M="$(PKG_BUILD_DIR)" \
|
||||
EXTRA_CFLAGS="$(BUILDFLAGS)" \
|
||||
modules
|
||||
$(call Build/Compile/Default)
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,ipt-fullconenat))
|
||||
$(eval $(call BuildPackage,iptables-mod-fullconenat))
|
|
@ -1,20 +0,0 @@
|
|||
--- a/libip6t_FULLCONENAT.c
|
||||
+++ b/libip6t_FULLCONENAT.c
|
||||
@@ -214,6 +214,7 @@ static struct xtables_target fullconenat_tg_reg = {
|
||||
.x6_options = FULLCONENAT_opts,
|
||||
};
|
||||
|
||||
+#define _init __attribute__((constructor)) _INIT
|
||||
void _init(void)
|
||||
{
|
||||
xtables_register_target(&fullconenat_tg_reg);
|
||||
--- a/libipt_FULLCONENAT.c
|
||||
+++ b/libipt_FULLCONENAT.c
|
||||
@@ -235,6 +235,7 @@ static struct xtables_target fullconenat_tg_reg = {
|
||||
.x6_options = FULLCONENAT_opts,
|
||||
};
|
||||
|
||||
+#define _init __attribute__((constructor)) _INIT
|
||||
void _init(void)
|
||||
{
|
||||
xtables_register_target(&fullconenat_tg_reg);
|
|
@ -1,26 +0,0 @@
|
|||
--- a/xt_FULLCONENAT.c
|
||||
+++ b/xt_FULLCONENAT.c
|
||||
@@ -325,7 +325,11 @@
|
||||
/* for now we do the same thing for both --random and --random-fully */
|
||||
|
||||
/* select a random starting point */
|
||||
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
|
||||
+ start = (uint16_t)(get_random_u32() % (u32)range_size);
|
||||
+#else
|
||||
start = (uint16_t)(prandom_u32() % (u32)range_size);
|
||||
+#endif
|
||||
} else {
|
||||
|
||||
if ((original_port >= min && original_port <= min + range_size - 1)
|
||||
@@ -995,7 +999,11 @@
|
||||
/* for now we do the same thing for both --random and --random-fully */
|
||||
|
||||
/* select a random starting point */
|
||||
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
|
||||
+ start = (uint16_t)(get_random_u32() % (u32)range_size);
|
||||
+#else
|
||||
start = (uint16_t)(prandom_u32() % (u32)range_size);
|
||||
+#endif
|
||||
} else {
|
||||
|
||||
if ((original_port >= min && original_port <= min + range_size - 1)
|
|
@ -1,6 +0,0 @@
|
|||
libipt_FULLCONENAT.so: libipt_FULLCONENAT.o
|
||||
$(CC) -shared -lxtables -o $@ $^;
|
||||
libipt_FULLCONENAT.o: libipt_FULLCONENAT.c
|
||||
$(CC) ${CFLAGS} -fPIC -D_INIT=$*_init -c -o $@ $<;
|
||||
|
||||
obj-m += xt_FULLCONENAT.o
|
|
@ -1,36 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2018-2019 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=ipcalc
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE_URL:=https://github.com/nmav/ipcalc.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=e9f88461f2585575d12fc95f5eeb9996b863f5af
|
||||
PKG_MAINTAINER:=Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
MAKE_FLAGS += USE_GEOIP=no USE_MAXMIND=no
|
||||
|
||||
define Package/ipcalc
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
MAINTAINER:=Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
TITLE:=Modern tool to assist in network address calculations for IPv4 and IPv6.
|
||||
endef
|
||||
|
||||
define Package/ipcalc/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ipcalc $(1)/usr/sbin/ipcalc
|
||||
endef
|
||||
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
|
@ -1,490 +0,0 @@
|
|||
if PACKAGE_lcd4linux-custom
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libdbus
|
||||
bool
|
||||
|
||||
#config LCD4LINUX_CUSTOM_NEEDS_libftdi
|
||||
# bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libiconv
|
||||
bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libjpeg
|
||||
bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libmpdclient
|
||||
bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libmysqlclient
|
||||
bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libncurses
|
||||
bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libnmeap
|
||||
bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libsqlite3
|
||||
bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
bool
|
||||
|
||||
#config LCD4LINUX_CUSTOM_NEEDS_libX11
|
||||
# bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_ppp
|
||||
bool
|
||||
|
||||
config LCD4LINUX_CUSTOM_NEEDS_python
|
||||
bool
|
||||
|
||||
|
||||
comment "Drivers ---"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_ASTUSB
|
||||
bool
|
||||
prompt "ASTUSB"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_BeckmannEgle
|
||||
bool
|
||||
prompt "BeckmannEgle"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_BWCT
|
||||
bool
|
||||
prompt "BWCT"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_CrystalFontz
|
||||
bool
|
||||
prompt "CrystalFontz"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_Curses
|
||||
bool
|
||||
prompt "Curses"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libncurses
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_Cwlinux
|
||||
bool
|
||||
prompt "Cwlinux"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_D4D
|
||||
bool
|
||||
prompt "D4D"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_dpf
|
||||
bool
|
||||
prompt "dpf"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_EA232graphic
|
||||
bool
|
||||
prompt "EA232graphic"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_EFN
|
||||
bool
|
||||
prompt "EFN"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_FutabaVFD
|
||||
bool
|
||||
prompt "FutabaVFD"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_FW8888
|
||||
bool
|
||||
prompt "FW8888"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_G15
|
||||
bool
|
||||
prompt "G15"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_GLCD2USB
|
||||
bool
|
||||
prompt "GLCD2USB"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_HD44780
|
||||
bool
|
||||
prompt "HD44780"
|
||||
depends on BROKEN
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_HD44780-I2C
|
||||
bool
|
||||
prompt "HD44780-I2C"
|
||||
depends on BROKEN
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_IRLCD
|
||||
bool
|
||||
prompt "IRLCD"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_LCD2USB
|
||||
bool
|
||||
prompt "LCD2USB"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_LCDLinux
|
||||
bool
|
||||
prompt "LCDLinux"
|
||||
depends on BROKEN
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_LCDTerm
|
||||
bool
|
||||
prompt "LCDTerm"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_LEDMatrix
|
||||
bool
|
||||
prompt "LEDMatrix"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_LPH7508
|
||||
bool
|
||||
prompt "LPH7508"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_LUIse
|
||||
bool
|
||||
prompt "LUIse"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
#select LCD4LINUX_CUSTOM_NEEDS_libluise
|
||||
depends on BROKEN
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_LW_ABP
|
||||
bool
|
||||
prompt "LW_ABP"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_M50530
|
||||
bool
|
||||
prompt "M50530"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_MatrixOrbital
|
||||
bool
|
||||
prompt "MatrixOrbital"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_MatrixOrbitalGX
|
||||
bool
|
||||
prompt "MatrixOrbitalGX"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_mdm166a
|
||||
bool
|
||||
prompt "mdm166a"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_MilfordInstruments
|
||||
bool
|
||||
prompt "MilfordInstruments"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_Newhaven
|
||||
bool
|
||||
prompt "Newhaven"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_Noritake
|
||||
bool
|
||||
prompt "Noritake"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_NULL
|
||||
bool
|
||||
prompt "NULL"
|
||||
default y
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_Pertelian
|
||||
bool
|
||||
prompt "Pertelian"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_PHAnderson
|
||||
bool
|
||||
prompt "PHAnderson"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_PICGraphic
|
||||
bool
|
||||
prompt "PICGraphic"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_picoLCD
|
||||
bool
|
||||
prompt "picoLCD"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_picoLCDGraphic
|
||||
bool
|
||||
prompt "picoLCDGraphic"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_PNG
|
||||
bool
|
||||
prompt "PNG"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_PPM
|
||||
bool
|
||||
prompt "PPM"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_RouterBoard
|
||||
bool
|
||||
prompt "RouterBoard"
|
||||
depends on TARGET_rb532
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_SamsungSPF
|
||||
bool
|
||||
prompt "SamsungSPF"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libjpeg
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_serdisplib
|
||||
bool
|
||||
prompt "serdisplib"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
select LCD4LINUX_CUSTOM_NEEDS_serdisplib
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_ShuttleVFD
|
||||
bool
|
||||
prompt "ShuttleVFD"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_SimpleLCD
|
||||
bool
|
||||
prompt "SimpleLCD"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_st2205
|
||||
bool
|
||||
prompt "st2205"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
select LCD4LINUX_CUSTOM_NEEDS_st2205tool
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_T6963
|
||||
bool
|
||||
prompt "T6963"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_TeakLCM
|
||||
bool
|
||||
prompt "TeakLCM"
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_TEW673GRU
|
||||
bool
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
depends on TARGET_ar71xx
|
||||
default TARGET_ar71xx
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_Trefon
|
||||
bool
|
||||
prompt "Trefon"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
#config LCD4LINUX_CUSTOM_DRIVER_ULA200
|
||||
# bool
|
||||
# prompt "ULA200"
|
||||
# select LCD4LINUX_CUSTOM_NEEDS_libftdi
|
||||
# select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_USBHUB
|
||||
bool
|
||||
prompt "USBHUB"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_USBLCD
|
||||
bool
|
||||
prompt "USBLCD"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libusb
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_VNC
|
||||
bool
|
||||
prompt "VNC"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libvncserver
|
||||
|
||||
config LCD4LINUX_CUSTOM_DRIVER_WincorNixdorf
|
||||
bool
|
||||
prompt "WincorNixdorf"
|
||||
|
||||
#config LCD4LINUX_CUSTOM_DRIVER_X11
|
||||
# bool
|
||||
# prompt "X11"
|
||||
# select LCD4LINUX_CUSTOM_NEEDS_libgd
|
||||
# select LCD4LINUX_CUSTOM_NEEDS_libX11
|
||||
|
||||
|
||||
comment "Plugins ---"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_apm
|
||||
bool
|
||||
prompt "apm"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_asterisk
|
||||
bool
|
||||
prompt "asterisk"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_button_exec
|
||||
bool
|
||||
prompt "button_exec"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_cpuinfo
|
||||
bool
|
||||
prompt "cpuinfo"
|
||||
default y
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_dbus
|
||||
bool
|
||||
prompt "dbus"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libdbus
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_diskstats
|
||||
bool
|
||||
prompt "diskstats"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_dvb
|
||||
bool
|
||||
prompt "dvb"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_event
|
||||
bool
|
||||
prompt "event"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_exec
|
||||
bool
|
||||
prompt "exec"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_fifo
|
||||
bool
|
||||
prompt "fifo"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_file
|
||||
bool
|
||||
prompt "file"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_gps
|
||||
bool
|
||||
prompt "gps"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libnmeap
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_hddtemp
|
||||
bool
|
||||
prompt "hddtemp"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_huawei
|
||||
bool
|
||||
prompt "huawei"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_i2c_sensors
|
||||
bool
|
||||
prompt "i2c_sensors"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_iconv
|
||||
bool
|
||||
prompt "iconv"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libiconv
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_imon
|
||||
bool
|
||||
prompt "imon"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_isdn
|
||||
bool
|
||||
prompt "isdn"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_kvv
|
||||
bool
|
||||
prompt "kvv"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_loadavg
|
||||
bool
|
||||
prompt "loadavg"
|
||||
default y
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_meminfo
|
||||
bool
|
||||
prompt "meminfo"
|
||||
default y
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_mpd
|
||||
bool
|
||||
prompt "mpd"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libmpdclient
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_mpris_dbus
|
||||
bool
|
||||
prompt "mpris_dbus"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libdbus
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_mysql
|
||||
bool
|
||||
prompt "mysql"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libmysqlclient
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_netdev
|
||||
bool
|
||||
prompt "netdev"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_netinfo
|
||||
bool
|
||||
prompt "netinfo"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_pop3
|
||||
bool
|
||||
prompt "pop3"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_ppp
|
||||
bool
|
||||
prompt "ppp"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_ppp
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_proc_stat
|
||||
bool
|
||||
prompt "proc_stat"
|
||||
default y
|
||||
|
||||
#config LCD4LINUX_CUSTOM_PLUGIN_python
|
||||
# bool
|
||||
# prompt "python"
|
||||
# select LCD4LINUX_CUSTOM_NEEDS_python
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_qnaplog
|
||||
bool
|
||||
prompt "qnaplog"
|
||||
select LCD4LINUX_CUSTOM_NEEDS_libsqlite3
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_seti
|
||||
bool
|
||||
prompt "seti"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_statfs
|
||||
bool
|
||||
prompt "statfs"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_uname
|
||||
bool
|
||||
prompt "uname"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_uptime
|
||||
bool
|
||||
prompt "uptime"
|
||||
default y
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_w1retap
|
||||
bool
|
||||
prompt "w1retap"
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_wireless
|
||||
bool
|
||||
prompt "wireless"
|
||||
depends on BROKEN
|
||||
|
||||
config LCD4LINUX_CUSTOM_PLUGIN_xmms
|
||||
bool
|
||||
prompt "xmms"
|
||||
|
||||
endif
|
|
@ -1,306 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2007-2015 OpenWrt.org
|
||||
# Copyright (C) 2019 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=lcd4linux
|
||||
PKG_REV:=f13470faf00e52d1458f2a88d498716240edc272
|
||||
PKG_VERSION:=r$(PKG_REV)
|
||||
PKG_RELEASE:=4
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
#PKG_SOURCE_URL:=https://ssl.bulix.org/svn/lcd4linux/trunk/
|
||||
PKG_SOURCE_URL:=https://github.com/redblue-pkt/lcd4linux.git
|
||||
#PKG_SOURCE_SUBDIR:=lcd4linux-$(PKG_VERSION)
|
||||
PKG_SOURCE_VERSION:=$(PKG_REV)
|
||||
PKG_SOURCE_PROTO:=git
|
||||
|
||||
LCD4LINUX_DRIVERS:= \
|
||||
ASTUSB \
|
||||
BeckmannEgle \
|
||||
BWCT \
|
||||
CrystalFontz \
|
||||
Curses \
|
||||
Cwlinux \
|
||||
D4D \
|
||||
DPF \
|
||||
EA232graphic \
|
||||
EFN \
|
||||
FutabaVFD \
|
||||
FW8888 \
|
||||
GLCD2USB \
|
||||
IRLCD \
|
||||
$(if $(CONFIG_BROKEN),HD44780) \
|
||||
$(if $(CONFIG_BROKEN),HD44780-I2C) \
|
||||
LCD2USB \
|
||||
$(if $(CONFIG_BROKEN),LCDLinux) \
|
||||
LCDTerm \
|
||||
LEDMatrix \
|
||||
LPH7508 \
|
||||
$(if $(CONFIG_BROKEN),LUIse) \
|
||||
LW_ABP \
|
||||
M50530 \
|
||||
MatrixOrbital \
|
||||
MatrixOrbitalGX \
|
||||
MilfordInstruments \
|
||||
Newhaven \
|
||||
Noritake \
|
||||
NULL \
|
||||
Pertelian \
|
||||
PHAnderson \
|
||||
PICGraphic \
|
||||
picoLCD \
|
||||
picoLCDGraphic \
|
||||
PNG \
|
||||
PPM \
|
||||
$(if $(CONFIG_TARGET_rb532),RouterBoard) \
|
||||
$(if $(CONFIG_BROKEN),SamsungSPF) \
|
||||
ShuttleVFD \
|
||||
SimpleLCD \
|
||||
st2205 \
|
||||
T6963 \
|
||||
TeakLCM \
|
||||
$(if $(CONFIG_TARGET_ar71xx),TEW673GRU) \
|
||||
Trefon \
|
||||
USBHUB \
|
||||
USBLCD \
|
||||
VNC \
|
||||
WincorNixdorf \
|
||||
serdisplib \
|
||||
# G15 \
|
||||
# ULA200 \
|
||||
# X11 \
|
||||
|
||||
LCD4LINUX_PLUGINS:= \
|
||||
apm \
|
||||
asterisk \
|
||||
button_exec \
|
||||
cpuinfo \
|
||||
dbus \
|
||||
diskstats \
|
||||
dvb \
|
||||
event \
|
||||
exec \
|
||||
fifo \
|
||||
file \
|
||||
gps \
|
||||
hddtemp \
|
||||
huawei \
|
||||
i2c_sensors \
|
||||
iconv \
|
||||
imon \
|
||||
isdn \
|
||||
kvv \
|
||||
loadavg \
|
||||
netdev \
|
||||
netinfo \
|
||||
meminfo \
|
||||
mpris_dbus \
|
||||
netdev \
|
||||
pop3 \
|
||||
ppp \
|
||||
proc_stat \
|
||||
qnaplog \
|
||||
seti \
|
||||
statfs \
|
||||
uname \
|
||||
uptime \
|
||||
w1retap \
|
||||
$(if $(CONFIG_BROKEN),wireless) \
|
||||
xmms \
|
||||
# mpd \
|
||||
# mysql \
|
||||
# python \
|
||||
|
||||
PKG_FIXUP:=autoreconf
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
|
||||
PKG_BUILD_DEPENDS:= \
|
||||
# ppp \
|
||||
# libftdi \
|
||||
# libX11 \
|
||||
# python \
|
||||
|
||||
PKG_CONFIG_DEPENDS:= \
|
||||
$(patsubst %,CONFIG_LCD4LINUX_CUSTOM_DRIVER_%,$(LCD4LINUX_DRIVERS)) \
|
||||
$(patsubst %,CONFIG_LCD4LINUX_CUSTOM_PLUGIN_%,$(LCD4LINUX_PLUGINS)) \
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include $(INCLUDE_DIR)/nls.mk
|
||||
|
||||
define Package/lcd4linux/Default
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
PKG_MAINTAINER:=Jonathan McCrohan <jmccrohan@gmail.com>
|
||||
TITLE:=LCD display utility
|
||||
URL:=http://lcd4linux.bulix.org/
|
||||
endef
|
||||
|
||||
define Package/lcd4linux/Default/description
|
||||
LCD4Linux is a small program that grabs information from the kernel and
|
||||
some subsystems and displays it on an external liquid crystal display.
|
||||
endef
|
||||
|
||||
|
||||
define Package/lcd4linux-custom
|
||||
$(call Package/lcd4linux/Default)
|
||||
DEPENDS:= \
|
||||
+LCD4LINUX_CUSTOM_NEEDS_libdbus:libdbus \
|
||||
+LCD4LINUX_CUSTOM_NEEDS_libgd:libgd \
|
||||
$(if $(ICONV_FULL),+LCD4LINUX_CUSTOM_NEEDS_libiconv:libiconv-full) \
|
||||
+LCD4LINUX_CUSTOM_NEEDS_libjpeg:libjpeg \
|
||||
+LCD4LINUX_CUSTOM_NEEDS_libncurses:libncurses \
|
||||
+LCD4LINUX_CUSTOM_NEEDS_libsqlite3:libsqlite3 \
|
||||
+LCD4LINUX_CUSTOM_NEEDS_libusb:libusb-compat \
|
||||
# +LCD4LINUX_CUSTOM_NEEDS_libmpdclient:libmpdclient \
|
||||
# +LCD4LINUX_CUSTOM_NEEDS_libmysqlclient:libmysqlclient \
|
||||
# +LCD4LINUX_CUSTOM_NEEDS_libftdi:libftdi \
|
||||
# +LCD4LINUX_CUSTOM_NEEDS_libX11:libX11 \
|
||||
# +LCD4LINUX_CUSTOM_NEEDS_python:python
|
||||
MENU:=1
|
||||
PROVIDES:=lcd4linux
|
||||
VARIANT=custom
|
||||
endef
|
||||
|
||||
define Package/lcd4linux-custom/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
define Package/lcd4linux-custom/description
|
||||
$(call Package/lcd4linux/Default/description)
|
||||
.
|
||||
This package contains a customized version of LCD4Linux.
|
||||
endef
|
||||
|
||||
|
||||
define Package/lcd4linux-full
|
||||
$(call Package/lcd4linux/Default)
|
||||
DEPENDS:= \
|
||||
+libdbus \
|
||||
+libgd \
|
||||
$(if $(ICONV_FULL),+libiconv-full) \
|
||||
+libncurses \
|
||||
+libsqlite3 \
|
||||
+libusb-compat \
|
||||
+serdisplib
|
||||
# +libmpdclient \
|
||||
# +libmysqlclient \
|
||||
# +libftdi \
|
||||
# +libX11 \
|
||||
# +python
|
||||
PROVIDES:=lcd4linux
|
||||
VARIANT=full
|
||||
endef
|
||||
|
||||
define Package/lcd4linux-full/description
|
||||
$(call Package/lcd4linux/Default/description)
|
||||
.
|
||||
This package contains a version of LCD4Linux built with all supported
|
||||
drivers and plugins.
|
||||
endef
|
||||
|
||||
|
||||
CONFIGURE_ARGS+= \
|
||||
--disable-rpath \
|
||||
|
||||
EXTRA_LDFLAGS+= -Wl,-rpath-link,$(STAGING_DIR)/usr/lib
|
||||
|
||||
ifeq ($(BUILD_VARIANT),custom)
|
||||
|
||||
LCD4LINUX_CUSTOM_DRIVERS:= $(strip $(foreach c, $(LCD4LINUX_DRIVERS), \
|
||||
$(if $(CONFIG_LCD4LINUX_CUSTOM_DRIVER_$(c)),$(c),) \
|
||||
))
|
||||
ifeq ($(LCD4LINUX_CUSTOM_DRIVERS),)
|
||||
LCD4LINUX_CUSTOM_DRIVERS:=Sample
|
||||
endif
|
||||
|
||||
LCD4LINUX_CUSTOM_PLUGINS:= $(strip $(foreach c, $(LCD4LINUX_PLUGINS), \
|
||||
$(if $(CONFIG_LCD4LINUX_CUSTOM_PLUGIN_$(c)),$(c)) \
|
||||
))
|
||||
ifeq ($(LCD4LINUX_CUSTOM_PLUGINS),)
|
||||
LCD4LINUX_CUSTOM_PLUGINS:=sample
|
||||
endif
|
||||
|
||||
CONFIGURE_ARGS+= \
|
||||
--with-drivers="$(LCD4LINUX_CUSTOM_DRIVERS)" \
|
||||
--with-plugins="$(LCD4LINUX_CUSTOM_PLUGINS)" \
|
||||
|
||||
ifneq ($(CONFIG_LCD4LINUX_CUSTOM_NEEDS_libiconv),)
|
||||
CONFIGURE_ARGS+= --with-libiconv-prefix="$(ICONV_PREFIX)"
|
||||
else
|
||||
CONFIGURE_ARGS+= --without-libiconv-prefix
|
||||
endif
|
||||
|
||||
ifneq ($(CONFIG_LCD4LINUX_CUSTOM_NEEDS_libmysqlclient),)
|
||||
EXTRA_LDFLAGS+= -L$(STAGING_DIR)/usr/lib/mysql
|
||||
endif
|
||||
|
||||
# ifneq ($(CONFIG_LCD4LINUX_CUSTOM_NEEDS_python),)
|
||||
# CONFIGURE_ARGS+= --with-python
|
||||
# else
|
||||
CONFIGURE_ARGS+= --without-python
|
||||
# endif
|
||||
|
||||
# ifneq ($(CONFIG_LCD4LINUX_CUSTOM_NEEDS_libX11),)
|
||||
# CONFIGURE_ARGS+= --with-x
|
||||
# else
|
||||
CONFIGURE_ARGS+= --without-x
|
||||
# endif
|
||||
|
||||
endif
|
||||
|
||||
ifeq ($(BUILD_VARIANT),full)
|
||||
|
||||
LCD4LINUX_FULL_DRIVERS:= $(strip $(foreach c, $(LCD4LINUX_DRIVERS), \
|
||||
$(c) \
|
||||
))
|
||||
|
||||
LCD4LINUX_FULL_PLUGINS:= $(strip $(foreach c, $(LCD4LINUX_PLUGINS), \
|
||||
$(c) \
|
||||
))
|
||||
|
||||
CONFIGURE_ARGS+= \
|
||||
--with-drivers="$(LCD4LINUX_FULL_DRIVERS)" \
|
||||
--with-plugins="$(LCD4LINUX_FULL_PLUGINS)" \
|
||||
--with-libiconv-prefix="$(ICONV_PREFIX)" \
|
||||
--without-python \
|
||||
--without-x \
|
||||
|
||||
EXTRA_LDFLAGS+= -L$(STAGING_DIR)/usr/lib/mysql
|
||||
|
||||
endif
|
||||
|
||||
|
||||
define Package/lcd4linux/conffiles
|
||||
/etc/lcd4linux.conf
|
||||
endef
|
||||
|
||||
define Package/lcd4linux/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/lcd4linux $(1)/usr/bin/
|
||||
$(INSTALL_DIR) $(1)/etc
|
||||
$(INSTALL_CONF) $(PKG_BUILD_DIR)/lcd4linux.conf.sample $(1)/etc/lcd4linux.conf
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/lcd4linux.init $(1)/etc/init.d/lcd4linux
|
||||
$(SED) "s|^\(Display 'GLCD2USB'\)|#\1|g" \
|
||||
-e "s|^\(Layout 'TestLayer'\)|#\1|g" \
|
||||
-e "s|^#\(Display 'Image'\)|\1|g" \
|
||||
-e "s|^#\(Layout 'Default'\)|\1|g" \
|
||||
$(1)/etc/lcd4linux.conf
|
||||
endef
|
||||
|
||||
Package/lcd4linux-custom/conffiles = $(Package/lcd4linux/conffiles)
|
||||
Package/lcd4linux-custom/install = $(Package/lcd4linux/install)
|
||||
|
||||
Package/lcd4linux-full/conffiles = $(Package/lcd4linux/conffiles)
|
||||
Package/lcd4linux-full/install = $(Package/lcd4linux/install)
|
||||
|
||||
$(eval $(call BuildPackage,lcd4linux-custom))
|
||||
$(eval $(call BuildPackage,lcd4linux-full))
|
|
@ -1,15 +0,0 @@
|
|||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2007-2015 OpenWrt.org
|
||||
|
||||
START=98
|
||||
|
||||
SERVICE_USE_PID=1
|
||||
|
||||
start() {
|
||||
service_start /usr/bin/lcd4linux -o /tmp/lcd4linux.png -q
|
||||
}
|
||||
|
||||
stop() {
|
||||
service_stop /usr/bin/lcd4linux
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -18,7 +18,7 @@ ACLOCAL_AMFLAGS=-I m4
|
||||
# use this for lots of warnings
|
||||
#AM_CFLAGS = -D_GNU_SOURCE -std=c99 -m64 -Wall -W -pedantic -Wno-variadic-macros -fno-strict-aliasing
|
||||
|
||||
-lcd4linux_LDFLAGS ="-Wl,--as-needed"
|
||||
+lcd4linux_LDFLAGS =
|
||||
lcd4linux_LDADD = @DRIVERS@ @PLUGINS@ @DRVLIBS@ @PLUGINLIBS@
|
||||
lcd4linux_DEPENDENCIES = @DRIVERS@ @PLUGINS@
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
--- a/drv_T6963.c
|
||||
+++ b/drv_T6963.c
|
||||
@@ -114,7 +114,9 @@ static void drv_T6_status1(void)
|
||||
/* wait for STA0=1 and STA1=1 */
|
||||
n = 0;
|
||||
do {
|
||||
+#if 0
|
||||
rep_nop();
|
||||
+#endif
|
||||
if (++n > 1000) {
|
||||
debug("hang in status1");
|
||||
bug = 1;
|
||||
@@ -150,7 +152,9 @@ static void drv_T6_status2(void)
|
||||
/* wait for STA3=1 */
|
||||
n = 0;
|
||||
do {
|
||||
+#if 0
|
||||
rep_nop();
|
||||
+#endif
|
||||
if (++n > 1000) {
|
||||
debug("hang in status2");
|
||||
bug = 1;
|
File diff suppressed because it is too large
Load diff
|
@ -1,24 +0,0 @@
|
|||
--- a/drv_G15.c
|
||||
+++ b/drv_G15.c
|
||||
@@ -42,6 +42,7 @@
|
||||
|
||||
#include <usb.h>
|
||||
#include <fcntl.h>
|
||||
+#include <linux/version.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/uinput.h>
|
||||
|
||||
@@ -269,8 +270,13 @@ void drv_G15_initKeyHandling(char *devic
|
||||
}
|
||||
memset(&device, 0, sizeof(device));
|
||||
strncpy(device.name, "G15 Keys", UINPUT_MAX_NAME_SIZE);
|
||||
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
|
||||
device.id.bustype = BUS_USB;
|
||||
device.id.version = 4;
|
||||
+#else
|
||||
+ device.idbus = BUS_USB;
|
||||
+ device.idversion = 4;
|
||||
+#endif
|
||||
|
||||
ioctl(uinput_fd, UI_SET_EVBIT, EV_KEY);
|
||||
|
|
@ -1,195 +0,0 @@
|
|||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -71,6 +71,8 @@ drv_generic_i2c.c \
|
||||
drv_generic_i2c.h \
|
||||
drv_generic_keypad.c \
|
||||
drv_generic_keypad.h \
|
||||
+drv_generic_spidev.c \
|
||||
+drv_generic_spidev.h \
|
||||
drv_ASTUSB.c \
|
||||
drv_BeckmannEgle.c \
|
||||
drv_BWCT.c \
|
||||
--- /dev/null
|
||||
+++ b/drv_generic_spidev.c
|
||||
@@ -0,0 +1,89 @@
|
||||
+/* $Id$
|
||||
+ * $URL$
|
||||
+ *
|
||||
+ * generic driver helper for displays connected via SPI bus
|
||||
+ *
|
||||
+ * Copyright (C) 2012 Gabor Juhos <juhosg@openwrt.org>
|
||||
+ *
|
||||
+ * This file is part of LCD4Linux.
|
||||
+ *
|
||||
+ * LCD4Linux is free software; you can redistribute it and/or modify
|
||||
+ * it under the terms of the GNU General Public License as published by
|
||||
+ * the Free Software Foundation; either version 2, or (at your option)
|
||||
+ * any later version.
|
||||
+ *
|
||||
+ * LCD4Linux is distributed in the hope that it will be useful,
|
||||
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
+ * GNU General Public License for more details.
|
||||
+ *
|
||||
+ * You should have received a copy of the GNU General Public License
|
||||
+ * along with this program; if not, write to the Free Software
|
||||
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
+ *
|
||||
+ */
|
||||
+
|
||||
+#include "config.h"
|
||||
+
|
||||
+#include <stdlib.h>
|
||||
+#include <stdio.h>
|
||||
+#include <string.h>
|
||||
+#include <errno.h>
|
||||
+#include <unistd.h>
|
||||
+#include <fcntl.h>
|
||||
+#include <sys/types.h>
|
||||
+#include <sys/ioctl.h>
|
||||
+
|
||||
+#include "debug.h"
|
||||
+#include "qprintf.h"
|
||||
+#include "cfg.h"
|
||||
+#include "drv_generic_spidev.h"
|
||||
+
|
||||
+static char *generic_spidev_section = "";
|
||||
+static char *generic_spidev_driver = "";
|
||||
+static int generic_spidev_fd;
|
||||
+
|
||||
+int drv_generic_spidev_open(const char *section, const char *driver)
|
||||
+{
|
||||
+ char *spidev;
|
||||
+
|
||||
+ udelay_init();
|
||||
+
|
||||
+ generic_spidev_section = (char *) section;
|
||||
+ generic_spidev_driver = (char *) driver;
|
||||
+
|
||||
+ spidev = cfg_get(generic_spidev_section, "Port", NULL);
|
||||
+
|
||||
+ info("%s: initializing SPI device %s", generic_spidev_driver, spidev);
|
||||
+ generic_spidev_fd = open(spidev, O_WRONLY);
|
||||
+ if (generic_spidev_fd < 0) {
|
||||
+ error("%s: unable to open SPI device %s!\n", generic_spidev_driver, spidev);
|
||||
+ goto exit_error;
|
||||
+ }
|
||||
+
|
||||
+ return 0;
|
||||
+
|
||||
+ exit_error:
|
||||
+ free(spidev);
|
||||
+ return -1;
|
||||
+}
|
||||
+
|
||||
+int drv_generic_spidev_close(void)
|
||||
+{
|
||||
+ close(generic_spidev_fd);
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+int drv_generic_spidev_transfer(const int count, struct spi_ioc_transfer *tr)
|
||||
+{
|
||||
+ int ret;
|
||||
+
|
||||
+ ret = ioctl(generic_spidev_fd, SPI_IOC_MESSAGE(count), tr);
|
||||
+ if (ret < count) {
|
||||
+ error("%s: can't send SPI message! (%s)\n",
|
||||
+ generic_spidev_driver, strerror(errno));
|
||||
+ return -1;
|
||||
+ }
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
--- /dev/null
|
||||
+++ b/drv_generic_spidev.h
|
||||
@@ -0,0 +1,54 @@
|
||||
+/* $Id$
|
||||
+ * $URL$
|
||||
+ *
|
||||
+ * generic driver helper for displays connected via SPI bus
|
||||
+ *
|
||||
+ * Copyright (C) 2012 Gabor Juhos <juhosg@openwrt.org>
|
||||
+ * Copyright (C) 2012 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
|
||||
+ *
|
||||
+ * This file is part of LCD4Linux.
|
||||
+ *
|
||||
+ * LCD4Linux is free software; you can redistribute it and/or modify
|
||||
+ * it under the terms of the GNU General Public License as published by
|
||||
+ * the Free Software Foundation; either version 2, or (at your option)
|
||||
+ * any later version.
|
||||
+ *
|
||||
+ * LCD4Linux is distributed in the hope that it will be useful,
|
||||
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
+ * GNU General Public License for more details.
|
||||
+ *
|
||||
+ * You should have received a copy of the GNU General Public License
|
||||
+ * along with this program; if not, write to the Free Software
|
||||
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
+ *
|
||||
+ */
|
||||
+
|
||||
+/*
|
||||
+ *
|
||||
+ * exported fuctions:
|
||||
+ *
|
||||
+ * int drv_generic_spidev_open (const char *section, const char *driver)
|
||||
+ * reads 'Port' entry from config and opens
|
||||
+ * the SPI device
|
||||
+ * returns 0 if ok, -1 on failure
|
||||
+ *
|
||||
+ * int drv_generic_spidev_close (void)
|
||||
+ * closes SPI device
|
||||
+ * returns 0 if ok, -1 on failure
|
||||
+ *
|
||||
+ * void drv_generic_spidev_transfer (int count, struct spi_ioc_transfer *tr)
|
||||
+ * transfer data to/from the SPI device
|
||||
+ *
|
||||
+ */
|
||||
+
|
||||
+#ifndef _DRV_GENERIC_SPIDEV_H_
|
||||
+#define _DRV_GENERIC_SPIDEV_H_
|
||||
+
|
||||
+#include <linux/spi/spidev.h>
|
||||
+
|
||||
+int drv_generic_spidev_open(const char *section, const char *driver);
|
||||
+int drv_generic_spidev_close(void);
|
||||
+int drv_generic_spidev_transfer(const int count, struct spi_ioc_transfer *tr);
|
||||
+
|
||||
+#endif /* _DRV_GENERIC_SPIDEV_H_ */
|
||||
--- a/drivers.m4
|
||||
+++ b/drivers.m4
|
||||
@@ -301,6 +301,7 @@ PARPORT="no"
|
||||
SERIAL="no"
|
||||
I2C="no"
|
||||
KEYPAD="no"
|
||||
+SPIDEV="no"
|
||||
|
||||
# generic libraries
|
||||
LIBUSB="no"
|
||||
@@ -936,6 +937,12 @@ if test "$LIBJPEG" = "yes"; then
|
||||
DRVLIBS="$DRVLIBS -ljpeg"
|
||||
fi
|
||||
|
||||
+# generic spidev driver
|
||||
+if test "$SPIDEV" = "yes"; then
|
||||
+ DRIVERS="$DRIVERS drv_generic_spidev.o"
|
||||
+ AC_DEFINE(WITH_SPIDEV, 1, [SPIDEV driver])
|
||||
+fi
|
||||
+
|
||||
# libusb
|
||||
if test "$LIBUSB" = "yes"; then
|
||||
DRVLIBS="$DRVLIBS -lusb"
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -115,6 +115,9 @@ AC_ARG_WITH(outb,
|
||||
|
||||
AC_CHECK_HEADERS([asm/io.h] [linux/parport.h linux/ppdev.h], [has_parport="true"], [has_parport="false"])
|
||||
|
||||
+# check for spidev
|
||||
+AC_CHECK_HEADERS([linux/spi/spidev.h], [has_spidev="true"], [has_spidev="false"])
|
||||
+
|
||||
# drivers
|
||||
sinclude(drivers.m4)
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
--- a/drv_GLCD2USB.c
|
||||
+++ b/drv_GLCD2USB.c
|
||||
@@ -48,6 +48,7 @@
|
||||
#include <fcntl.h>
|
||||
#include <sys/time.h>
|
||||
#include <usb.h>
|
||||
+#include <endian.h>
|
||||
|
||||
#include "debug.h"
|
||||
#include "cfg.h"
|
||||
@@ -487,6 +488,9 @@ static int drv_GLCD2USB_start(const char
|
||||
return -1;
|
||||
}
|
||||
|
||||
+ buffer.display_info.width = le16toh(buffer.display_info.width);
|
||||
+ buffer.display_info.height = le16toh(buffer.display_info.height);
|
||||
+
|
||||
info("%s: display name = %s", Name, buffer.display_info.name);
|
||||
info("%s: display resolution = %d * %d", Name, buffer.display_info.width, buffer.display_info.height);
|
||||
info("%s: display flags: %x", Name, buffer.display_info.flags);
|
|
@ -1,44 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2020-2021 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=ell
|
||||
PKG_VERSION:=0.41
|
||||
PKG_RELEASE:=1
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||
PKG_HASH:=4e8dba6c53cf152dbd0fd1dc3d4c7b04abf79e20a948895f85943e586870505c
|
||||
PKG_SOURCE_URL:=@KERNEL/linux/libs/ell
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
PKG_LICENSE_FILES:=GPL
|
||||
PKG_INSTALL:=1
|
||||
PKG_MAINTAINER:=Ycarus <ycarus@zugaina.org>
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/libell
|
||||
SECTION:=libs
|
||||
CATEGORY:=Libraries
|
||||
TITLE:=Embedded Linux library
|
||||
URL:=https://git.kernel.org/pub/scm/libs/ell/ell.git
|
||||
endef
|
||||
|
||||
define Package/libell/description
|
||||
Embeded Linux library
|
||||
endef
|
||||
|
||||
define Package/libell/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libell*.so* $(1)/usr/lib
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(1)
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,libell))
|
|
@ -1,14 +0,0 @@
|
|||
# Copyright 2020 Wojciech Jowsa (wojciech.jowsa@gmail.com)
|
||||
# This is free software, licensed under the Apache License, Version 2.0
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=Packet capture application
|
||||
LUCI_DEPENDS:=+luci-mod-admin-full +tcpdump +uhttpd-mod-ubus +coreutils +coreutils-timeout
|
||||
|
||||
PKG_MAINTAINER:=Wojciech Jowsa <wojciech.jowsa@gmail.com>
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signatureet
|
|
@ -1,287 +0,0 @@
|
|||
'use strict';
|
||||
'require rpc';
|
||||
'require uci';
|
||||
'require ui';
|
||||
'require fs';
|
||||
'require form';
|
||||
'require network';
|
||||
'require tools.widgets as widgets';
|
||||
|
||||
var eventSource,
|
||||
captureFilePoll,
|
||||
hostName;
|
||||
|
||||
function stopTcpdump() {
|
||||
fs.exec("/usr/libexec/packet_capture_stop").then(function(replay) {
|
||||
if (eventSource)
|
||||
eventSource.close();
|
||||
}.bind(this)).catch(function(error) {
|
||||
console.log(error);
|
||||
});
|
||||
}
|
||||
|
||||
window.addEventListener('beforeunload', stopTcpdump);
|
||||
|
||||
var callLuciProcessList = rpc.declare({
|
||||
object: 'luci',
|
||||
method: 'getProcessList',
|
||||
expect: { result: [] }
|
||||
});
|
||||
|
||||
var callInitAction = rpc.declare({
|
||||
object: 'luci',
|
||||
method: 'setInitAction',
|
||||
params: [ 'name', 'action' ],
|
||||
expect: { result: false }
|
||||
});
|
||||
|
||||
function addOutput() {
|
||||
var tcpdumpOut = document.querySelectorAll('[id$="tcpdump_out"]')[0];
|
||||
if (tcpdumpOut)
|
||||
return;
|
||||
|
||||
var frameEl = E('div', {'class': 'cbi-value'});
|
||||
|
||||
frameEl.appendChild(E('textarea', {
|
||||
'id': 'tcpdump_out',
|
||||
'class': 'cbi-input-textarea',
|
||||
'readonly': '',
|
||||
'style': 'width:100%',
|
||||
'rows': 30,
|
||||
}));
|
||||
|
||||
frameEl.firstElementChild.style.fontFamily = 'monospace';
|
||||
|
||||
var downloadBtn = document.querySelectorAll('[id$="download_file"]')[0];
|
||||
if (downloadBtn)
|
||||
downloadBtn.parentNode.insertBefore(frameEl, downloadBtn.nextSibling);
|
||||
}
|
||||
|
||||
var downloadCaptureFile = function(ev) {
|
||||
var form = E('form', {
|
||||
method: 'post',
|
||||
action: '/cgi-bin/cgi-download',
|
||||
enctype: 'application/x-www-form-urlencoded'
|
||||
}, E('input', { type: 'hidden', name: 'sessionid', value: rpc.getSessionID()},
|
||||
E('input', { type: 'hidden', name: 'path', value: "/tmp/capture.pcap"},
|
||||
E('input', { type: 'hidden', name: 'filename', value: hostName + "-" + Date.now() + ".pcap"},
|
||||
E('input', { type: 'hidden', name: 'mimetype', value: 'application/vnd.tcpdump.pcap'}
|
||||
)))));
|
||||
|
||||
ev.currentTarget.parentNode.appendChild(form);
|
||||
form.submit();
|
||||
form.parentNode.removeChild(form);
|
||||
}
|
||||
|
||||
function subscribeTcpdump() {
|
||||
if (eventSource)
|
||||
eventSource.close();
|
||||
|
||||
eventSource = new EventSource('/ubus/subscribe/tcpdump' + '?' + rpc.getSessionID());
|
||||
eventSource.onerror = function(event) {
|
||||
eventSource.close();
|
||||
console.log(event);
|
||||
};
|
||||
|
||||
addOutput();
|
||||
var textOut = document.querySelectorAll('[id$="tcpdump_out"]')[0];
|
||||
textOut.value = "";
|
||||
eventSource.addEventListener("tcpdump.data", function(event) {
|
||||
textOut.value = textOut.value + "\n" + JSON.parse(event.data).data;
|
||||
});
|
||||
}
|
||||
|
||||
function updateButtons() {
|
||||
var tasks = [];
|
||||
tasks.push(fs.stat("/var/run/packet_capture.pid").then(L.bind(function(res) {
|
||||
var downloadBtn = document.querySelectorAll('[id$="download_file"]')[0];
|
||||
if (!downloadBtn)
|
||||
return;
|
||||
if (!eventSource || eventSource.readyState == 2)
|
||||
subscribeTcpdump();
|
||||
var textOut = document.querySelectorAll('[id$="tcpdump_out"]')[0];
|
||||
if (textOut)
|
||||
textOut.style.borderColor = "green";
|
||||
var startBtn = document.querySelectorAll('[id$="start_tcpdump"]')[0];
|
||||
if (startBtn)
|
||||
startBtn.hidden = true;
|
||||
var stopBtn = document.querySelectorAll('[id$="stop_tcpdump"]')[0];
|
||||
if (stopBtn)
|
||||
stopBtn.hidden = false;
|
||||
return;
|
||||
})).catch(function(error) {
|
||||
var textOut = document.querySelectorAll('[id$="tcpdump_out"]')[0];
|
||||
if (textOut)
|
||||
textOut.style.borderColor = "red";
|
||||
var startBtn = document.querySelectorAll('[id$="start_tcpdump"]')[0];
|
||||
if (startBtn)
|
||||
startBtn.hidden = false;
|
||||
var stopBtn = document.querySelectorAll('[id$="stop_tcpdump"]')[0];
|
||||
if (stopBtn)
|
||||
stopBtn.hidden = true;
|
||||
if (eventSource)
|
||||
eventSource.close();
|
||||
}));
|
||||
|
||||
return Promise.all(tasks);
|
||||
}
|
||||
|
||||
function updatePollCheckCaptureFileExists() {
|
||||
checkCaptureFileExists();
|
||||
L.Poll.remove(captureFilePoll);
|
||||
L.Poll.add(L.bind(checkCaptureFileExists, m),5);
|
||||
}
|
||||
|
||||
function checkCaptureFileExists() {
|
||||
var tasks = [];
|
||||
tasks.push(fs.stat("/tmp/capture.pcap").then(L.bind(function(res) {
|
||||
var downloadBtn = document.querySelector('[data-action="download"]');
|
||||
if (!downloadBtn)
|
||||
return;
|
||||
var downloadCheckBox = document.querySelectorAll('[data-widget-id$="file"]')[0].checked;
|
||||
if (!downloadCheckBox) {
|
||||
fs.remove("/tmp/capture.pcap").then(function(replay) {
|
||||
downloadBtn.disabled = true;;
|
||||
}.bind(this)).catch(function(error) {
|
||||
console.log(error);
|
||||
});
|
||||
} else {
|
||||
downloadBtn.disabled = false;
|
||||
}
|
||||
})).catch(function(error) {
|
||||
var downloadBtn = document.querySelector('[data-action="download"]');
|
||||
if (downloadBtn)
|
||||
downloadBtn.disabled = true;
|
||||
}));
|
||||
|
||||
return Promise.all(tasks);
|
||||
}
|
||||
|
||||
return L.view.extend({
|
||||
|
||||
load: function() {
|
||||
return Promise.all([
|
||||
uci.load('system')
|
||||
]);
|
||||
},
|
||||
|
||||
handleDownload: function(ev) {
|
||||
downloadCaptureFile(ev);
|
||||
},
|
||||
|
||||
render: function(processes) {
|
||||
var m, s, o;
|
||||
|
||||
hostName = uci.get('system', '@system[0]', 'hostname');
|
||||
|
||||
m = new form.Map('packet_capture', _('Packet Capture - Tcpdump'), _('Capture packets with tcpdump.'));
|
||||
s = m.section(form.TypedSection, 'tcpdump');
|
||||
s.anonymous = 1;
|
||||
|
||||
o = s.option(widgets.DeviceSelect, 'interface', _('Interface'), _(''));
|
||||
o.noaliases = true;
|
||||
o.modalonly = true;
|
||||
o.rmempty = false;
|
||||
o.filter = function(section_id, value) {
|
||||
return true;
|
||||
}
|
||||
|
||||
o = s.option(form.Value, 'filter', _('Filter'), _('Tcpdump filter like protocol, port etc.'));
|
||||
o.modalonly = false;
|
||||
o.datatype = 'and(minlength(1),maxlength(1024))';
|
||||
|
||||
o = s.option(form.Value, 'duration', _('Duration'), _('Duration of packet capturing in seconds.'));
|
||||
o.modalonly = false;
|
||||
o.datatype = 'range(1,4294967296)';
|
||||
|
||||
o = s.option(form.Value, 'packets', _('Packets'), _('Number of packets to be captured.'));
|
||||
o.modalonly = false;
|
||||
o.datatype = 'range(1,4294967296)';
|
||||
|
||||
o = s.option(form.Flag, 'domains', _('Resolve domains'), _("Convert host addresses to names."));
|
||||
|
||||
o = s.option(form.Flag, 'verbose', _('Verbose output'), _("Print the link-level header on each dump line."));
|
||||
|
||||
o = s.option(form.Flag, 'file', _('Save to file'), _("Save capture to pcap file."));
|
||||
|
||||
o = s.option(form.Button, 'start_tcpdump', _('Start tcpdump'), _(''));
|
||||
o.inputstyle = 'apply';
|
||||
o.onclick = ui.createHandlerFn(this, function(section_id, ev) {
|
||||
var downloadBtn = document.querySelector('[data-action="download"]');
|
||||
if (!downloadBtn)
|
||||
return;
|
||||
fs.remove("/tmp/capture.pcap").then(function(replay) {
|
||||
downloadBtn.disabled = true;;
|
||||
}.bind(this)).catch(function(error) {
|
||||
console.log(error);
|
||||
});
|
||||
|
||||
var iface = document.querySelectorAll('[id$="interface"]')[1].value,
|
||||
filter = document.querySelectorAll('[id$="filter"]')[2].value,
|
||||
packets = document.querySelectorAll('[id$="packets"]')[2].value,
|
||||
duration = document.querySelectorAll('[id$="duration"]')[2].value,
|
||||
verbose = document.querySelectorAll('[data-widget-id$="verbose"]')[0].checked,
|
||||
domains = document.querySelectorAll('[data-widget-id$="domains"]')[0].checked,
|
||||
file = document.querySelectorAll('[data-widget-id$="file"]')[0].checked
|
||||
|
||||
var args = {
|
||||
"interface": iface,
|
||||
"filter": filter,
|
||||
"packets": packets,
|
||||
"duration": duration,
|
||||
"verbose": verbose,
|
||||
"domains": domains,
|
||||
"file": file
|
||||
}
|
||||
|
||||
return fs.exec_direct('/usr/libexec/packet_capture_start', [JSON.stringify(args)]).then(function(replay) {
|
||||
var error_position = replay.search("error:");
|
||||
if (error_position != -1){
|
||||
ui.showModal(_(replay.substring(error_position + 6, replay.length)), [
|
||||
E('div', { 'class': 'right' }, [
|
||||
E('button', {
|
||||
'class': 'cbi-button cbi-button-negative important',
|
||||
'click': function(ev) {
|
||||
ui.hideModal();
|
||||
}
|
||||
}, _('Close')),
|
||||
])
|
||||
]);
|
||||
return;
|
||||
}
|
||||
rpc.list.apply(rpc).then(function(res) {
|
||||
for (var k in res) {
|
||||
if (res[k] == "tcpdump" )
|
||||
subscribeTcpdump()
|
||||
}
|
||||
}.bind(this));
|
||||
}.bind(this)).catch(function(error) {
|
||||
console.log(error);
|
||||
});
|
||||
});
|
||||
|
||||
o = s.option(form.Button, 'stop_tcpdump', _('Stop tcpdump'), _(''));
|
||||
o.inputstyle = 'apply';
|
||||
o.onclick = ui.createHandlerFn(this, function(section_id, ev) {
|
||||
if (!eventSource)
|
||||
return;
|
||||
return fs.exec("/usr/libexec/packet_capture_stop").then(function(replay) {
|
||||
eventSource.close();
|
||||
}.bind(this)).catch(function(error) {
|
||||
console.log(error);
|
||||
});
|
||||
});
|
||||
|
||||
o = s.option(form.Button, 'download_file', _('Download capture file'));
|
||||
o.inputstyle = 'action important';
|
||||
o.inputtitle = _('Download');
|
||||
o.data_action = 'download'
|
||||
o.onclick = this.handleDownload;
|
||||
|
||||
L.Poll.add(L.bind(updateButtons, m),1);
|
||||
captureFilePoll = L.bind(updatePollCheckCaptureFileExists, m);
|
||||
L.Poll.add(captureFilePoll,1);
|
||||
|
||||
return m.render();
|
||||
},
|
||||
});
|
|
@ -1,99 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-03-31 15:07+0000\n"
|
||||
"Last-Translator: Weblate Admin <contact@openmptcprouter.com>\n"
|
||||
"Language-Team: French <http://weblate.openmptcprouter.com/projects/omr/"
|
||||
"luciapplicationspacket-capture/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.5.2\n"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:177
|
||||
msgid "Capture packets with tcpdump."
|
||||
msgstr "Capturez des paquets avec tcpdump."
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:247
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:201
|
||||
msgid "Convert host addresses to names."
|
||||
msgstr "Convertissez les adresses d'hôte en noms."
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:277
|
||||
msgid "Download"
|
||||
msgstr "Téléchargement"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:275
|
||||
msgid "Download capture file"
|
||||
msgstr "Télécharger le fichier de capture"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:193
|
||||
msgid "Duration"
|
||||
msgstr "Durée"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:193
|
||||
msgid "Duration of packet capturing in seconds."
|
||||
msgstr "Durée de la capture des paquets en secondes."
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:189
|
||||
msgid "Filter"
|
||||
msgstr "Filtre"
|
||||
|
||||
#: luci-app-packet-capture/root/usr/share/rpcd/acl.d/luci-app-packet-capture.json:3
|
||||
msgid "Grant access to tcpdump ubus object"
|
||||
msgstr "Accorder l'accès à l'objet ubus tcpdump"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:181
|
||||
msgid "Interface"
|
||||
msgstr "Interface"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:197
|
||||
msgid "Number of packets to be captured."
|
||||
msgstr "Nombre de paquets à capturer."
|
||||
|
||||
#: luci-app-packet-capture/root/usr/share/luci/menu.d/luci-app-packet-capture.json:3
|
||||
msgid "Packet Capture"
|
||||
msgstr "Capture de paquets"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:177
|
||||
msgid "Packet Capture - Tcpdump"
|
||||
msgstr "Capture de paquets - Tcpdump"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:197
|
||||
msgid "Packets"
|
||||
msgstr "Paquets"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:203
|
||||
msgid "Print the link-level header on each dump line."
|
||||
msgstr "Imprimez l'en-tête du lien sur chaque ligne de capture."
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:201
|
||||
msgid "Resolve domains"
|
||||
msgstr "Résoudre les domaines"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:205
|
||||
msgid "Save capture to pcap file."
|
||||
msgstr "Enregistrez la capture dans le fichier pcap."
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:205
|
||||
msgid "Save to file"
|
||||
msgstr "Enregistrer dans un fichier"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:207
|
||||
msgid "Start tcpdump"
|
||||
msgstr "Démarrez tcpdump"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:263
|
||||
msgid "Stop tcpdump"
|
||||
msgstr "Arrêter tcpdump"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:189
|
||||
msgid "Tcpdump filter like protocol, port etc."
|
||||
msgstr "Filtre pour tcpdump comme le protocole, le port, etc."
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:203
|
||||
msgid "Verbose output"
|
||||
msgstr "Sortie verbeuse"
|
|
@ -1,90 +0,0 @@
|
|||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:177
|
||||
msgid "Capture packets with tcpdump."
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:247
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:201
|
||||
msgid "Convert host addresses to names."
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:277
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:275
|
||||
msgid "Download capture file"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:193
|
||||
msgid "Duration"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:193
|
||||
msgid "Duration of packet capturing in seconds."
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:189
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/root/usr/share/rpcd/acl.d/luci-app-packet-capture.json:3
|
||||
msgid "Grant access to tcpdump ubus object"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:181
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:197
|
||||
msgid "Number of packets to be captured."
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/root/usr/share/luci/menu.d/luci-app-packet-capture.json:3
|
||||
msgid "Packet Capture"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:177
|
||||
msgid "Packet Capture - Tcpdump"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:197
|
||||
msgid "Packets"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:203
|
||||
msgid "Print the link-level header on each dump line."
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:201
|
||||
msgid "Resolve domains"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:205
|
||||
msgid "Save capture to pcap file."
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:205
|
||||
msgid "Save to file"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:207
|
||||
msgid "Start tcpdump"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:263
|
||||
msgid "Stop tcpdump"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:189
|
||||
msgid "Tcpdump filter like protocol, port etc."
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:203
|
||||
msgid "Verbose output"
|
||||
msgstr ""
|
|
@ -1,99 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-04-30 16:03+0000\n"
|
||||
"Last-Translator: niergouge <1150108426@qq.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <http://weblate.openmptcprouter.com/"
|
||||
"projects/omr/luciapplicationspacket-capture/zh_Hans/>\n"
|
||||
"Language: zh_Hans\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.5.2\n"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:177
|
||||
msgid "Capture packets with tcpdump."
|
||||
msgstr "使用tcpdump捕获数据包。"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:247
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:201
|
||||
msgid "Convert host addresses to names."
|
||||
msgstr "将主机地址转换为名称。"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:277
|
||||
msgid "Download"
|
||||
msgstr "下载"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:275
|
||||
msgid "Download capture file"
|
||||
msgstr "下载抓包文件"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:193
|
||||
msgid "Duration"
|
||||
msgstr "持续时间"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:193
|
||||
msgid "Duration of packet capturing in seconds."
|
||||
msgstr "抓包时间(以秒为单位)。"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:189
|
||||
msgid "Filter"
|
||||
msgstr "过滤器"
|
||||
|
||||
#: luci-app-packet-capture/root/usr/share/rpcd/acl.d/luci-app-packet-capture.json:3
|
||||
msgid "Grant access to tcpdump ubus object"
|
||||
msgstr "授权访问tcpdump ubus对象"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:181
|
||||
msgid "Interface"
|
||||
msgstr "接口"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:197
|
||||
msgid "Number of packets to be captured."
|
||||
msgstr "需要抓包的个数。"
|
||||
|
||||
#: luci-app-packet-capture/root/usr/share/luci/menu.d/luci-app-packet-capture.json:3
|
||||
msgid "Packet Capture"
|
||||
msgstr "数据包捕获"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:177
|
||||
msgid "Packet Capture - Tcpdump"
|
||||
msgstr "Tcpdump抓包"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:197
|
||||
msgid "Packets"
|
||||
msgstr "包"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:203
|
||||
msgid "Print the link-level header on each dump line."
|
||||
msgstr "打印每个转储行上的链接标题。"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:201
|
||||
msgid "Resolve domains"
|
||||
msgstr "解决域"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:205
|
||||
msgid "Save capture to pcap file."
|
||||
msgstr "保存捕获到pcap文件。"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:205
|
||||
msgid "Save to file"
|
||||
msgstr "保存到文件"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:207
|
||||
msgid "Start tcpdump"
|
||||
msgstr "开始tcp转存"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:263
|
||||
msgid "Stop tcpdump"
|
||||
msgstr "停止tcp转存"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:189
|
||||
msgid "Tcpdump filter like protocol, port etc."
|
||||
msgstr "Tcp转存过滤协议,端口等。"
|
||||
|
||||
#: luci-app-packet-capture/htdocs/luci-static/resources/view/packet_capture/tcpdump.js:203
|
||||
msgid "Verbose output"
|
||||
msgstr "详细输出"
|
|
@ -1 +0,0 @@
|
|||
config tcpdump
|
|
@ -1,64 +0,0 @@
|
|||
#!/usr/bin/env lua
|
||||
|
||||
local ubus = require "ubus"
|
||||
local fs = require "nixio.fs"
|
||||
|
||||
local conn = ubus.connect()
|
||||
if not conn then
|
||||
error("Failed to connect to ubus")
|
||||
return
|
||||
end
|
||||
|
||||
local args = "-n"
|
||||
local duration = ""
|
||||
|
||||
if arg[1] ~= nil then
|
||||
args = arg[1]
|
||||
if arg[2] ~= "" then
|
||||
duration = arg[2]
|
||||
end
|
||||
end
|
||||
|
||||
local filter = fs.stat("/tmp/tcpdump_filter")
|
||||
if filter then
|
||||
args = args .. " -F /tmp/tcpdump_filter"
|
||||
end
|
||||
|
||||
local ubus_objects = {
|
||||
tcpdump = {
|
||||
}
|
||||
}
|
||||
|
||||
conn:add( ubus_objects )
|
||||
|
||||
os.execute("sleep 1")
|
||||
|
||||
local command = "tcpdump -l " .. args .. " 2>&1"
|
||||
|
||||
if duration ~= "" then
|
||||
command = "timeout " .. duration .. " " .. command
|
||||
end
|
||||
|
||||
local pipe = io.popen(command)
|
||||
|
||||
for line in pipe:lines() do
|
||||
local params = {
|
||||
data = line
|
||||
}
|
||||
conn:notify(ubus_objects.tcpdump.__ubusobj, "tcpdump.data", params)
|
||||
end
|
||||
|
||||
local pcap = fs.stat("/tmp/capture.pcap0")
|
||||
if pcap then
|
||||
fs.move("/tmp/capture.pcap0","/tmp/capture.pcap")
|
||||
fs.remove("/tmp/capture.pcap1")
|
||||
end
|
||||
|
||||
if filter then
|
||||
fs.remove("/tmp/tcpdump_filter")
|
||||
end
|
||||
|
||||
conn:close()
|
||||
pipe:close()
|
||||
|
||||
fs.remove("/var/run/packet_capture.pid")
|
|
@ -1,69 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
. /usr/share/libubox/jshn.sh
|
||||
|
||||
PIDFILE="/var/run/packet_capture.pid"
|
||||
|
||||
if [ -f "$PIDFILE"];then
|
||||
echo "error: Packet capture is running"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
json_load "$1"
|
||||
json_get_var interface interface
|
||||
json_get_var filter filter
|
||||
json_get_var duration duration
|
||||
json_get_var packets packets
|
||||
json_get_var verbose verbose
|
||||
json_get_var domains domains
|
||||
json_get_var file file
|
||||
|
||||
args="-n"
|
||||
|
||||
if [ "$domains" == "1" ];then
|
||||
args=""
|
||||
fi
|
||||
|
||||
if [ -n "$interface" ];then
|
||||
ip a show "$interface" > /dev/null 2>&1
|
||||
if [ "$?" == "1" ]; then
|
||||
echo "error: Incorrect format of an interface"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
args="$args -i $interface"
|
||||
fi
|
||||
|
||||
if [ -n "$packets" ];then
|
||||
echo "$packets" | egrep '^[0-9]*$'
|
||||
if [ "$?" -eq 0 ];then
|
||||
args="$args -c $packets"
|
||||
else
|
||||
echo "error: Incorrect packets argument"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$verbose" == "1" ];then
|
||||
args="$args -e"
|
||||
fi
|
||||
|
||||
if [ "$file" == "1" ];then
|
||||
mem=$(awk '/MemTotal/ {print $2}' /proc/meminfo)
|
||||
args="$args -W 2 -C $((mem/(1024 * 10))) -w /tmp/capture.pcap -z /usr/libexec/packet_capture_stop"
|
||||
fi
|
||||
|
||||
if [ -n "$filter" ];then
|
||||
tcpdump -i lo -d "$filter" >/dev/null 2>/dev/null
|
||||
if [ $? -eq 1 ];then
|
||||
echo "error: Incorrect filter argument"
|
||||
exit 1
|
||||
fi
|
||||
echo "$filter" > /tmp/tcpdump_filter
|
||||
fi
|
||||
|
||||
(/usr/libexec/packet_capture "$args" "$duration")&
|
||||
|
||||
echo $! > /var/run/packet_capture.pid
|
||||
|
||||
exit 0
|
|
@ -1,9 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
pid=$(cat /var/run/packet_capture.pid)
|
||||
if [ -n "$pid" ] && grep -sq packet_capture "/proc/$pid/cmdline"; then
|
||||
ppid=$(pgrep -P $pid)
|
||||
kill -TERM $ppid
|
||||
fi
|
||||
|
||||
exit 0
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"admin/services/packet_capture": {
|
||||
"title": "Packet Capture",
|
||||
"order": 90,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "packet_capture/tcpdump"
|
||||
},
|
||||
"depends" : {
|
||||
"acl": [ "luci-app-packet-capture" ],
|
||||
"uci": { "packet_capture": true },
|
||||
"fs": { "/usr/libexec/packet_capture": "executable",
|
||||
"/usr/libexec/packet_capture_start": "executable",
|
||||
"/usr/libexec/packet_capture_stop": "executable"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"luci-app-packet-capture": {
|
||||
"description": "Grant access to tcpdump ubus object",
|
||||
"read": {
|
||||
"cgi-io": [ "download", "exec" ],
|
||||
"ubus": {
|
||||
"tcpdump": [ "*" ],
|
||||
"luci": [ "getProcessList" ]
|
||||
},
|
||||
"uci": [ "packet_capture", "system" ],
|
||||
"file": {
|
||||
"/tmp/capture.pcap": [ "read" ]
|
||||
}
|
||||
},
|
||||
"write": {
|
||||
"uci": [ "packet_capture" ],
|
||||
"file": {
|
||||
"/usr/libexec/packet_capture_start": [ "exec" ],
|
||||
"/usr/libexec/packet_capture_stop": [ "exec" ],
|
||||
"/usr/libexec/packet_capture": [ "exec" ],
|
||||
"/tmp/capture.pcap": [ "write" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
# See /LICENSE for more information.
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=LuCI support for sysupgrades
|
||||
LUCI_DEPENDS:=+luci-base +uhttpd-mod-ubus +rpcd +rpcd-mod-rpcsys +cgi-io
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
|
@ -1,126 +0,0 @@
|
|||
<%
|
||||
-- all lua code provided by https://github.com/jow-/
|
||||
-- thank you very much!
|
||||
|
||||
function apply_acls(filename, session)
|
||||
local json = require "luci.jsonc"
|
||||
local util = require "luci.util"
|
||||
local fs = require "nixio.fs"
|
||||
|
||||
local grants = { }
|
||||
|
||||
local acl = json.parse(fs.readfile(filename))
|
||||
if type(acl) ~= "table" then
|
||||
return
|
||||
end
|
||||
|
||||
local group, perms
|
||||
for group, perms in pairs(acl) do
|
||||
local perm, scopes
|
||||
for perm, scopes in pairs(perms) do
|
||||
if type(scopes) == "table" then
|
||||
local scope, objects
|
||||
for scope, objects in pairs(scopes) do
|
||||
if type(objects) == "table" then
|
||||
if not grants[scope] then
|
||||
grants[scope] = { }
|
||||
end
|
||||
|
||||
if next(objects) == 1 then
|
||||
local _, object
|
||||
for _, object in ipairs(objects) do
|
||||
if not grants[scope][object] then
|
||||
grants[scope][object] = { }
|
||||
end
|
||||
table.insert(grants[scope][object], perm)
|
||||
end
|
||||
else
|
||||
local object, funcs
|
||||
for object, funcs in pairs(objects) do
|
||||
if type(funcs) == "table" then
|
||||
local _, func
|
||||
for _, func in ipairs(funcs) do
|
||||
if not grants[scope][object] then
|
||||
grants[scope][object] = { }
|
||||
end
|
||||
table.insert(grants[scope][object], func)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local _, scope, object, func
|
||||
for scope, _ in pairs(grants) do
|
||||
local objects = { }
|
||||
for object, _ in pairs(_) do
|
||||
for _, func in ipairs(_) do
|
||||
table.insert(objects, { object, func })
|
||||
end
|
||||
end
|
||||
|
||||
util.ubus("session", "grant", {
|
||||
ubus_rpc_session = session,
|
||||
scope = scope, objects = objects
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
apply_acls("/usr/share/rpcd/acl.d/sysupgrade.json", luci.dispatcher.context.authsession)
|
||||
%>
|
||||
<%+header%>
|
||||
<h2 name="content"><%:Sysupgrade%></h2>
|
||||
<div class="cbi-map-descr">
|
||||
<%:Easily search and install new releases and package upgrades.%>
|
||||
</div>
|
||||
<div style="display: none" id="status_box" class="alert-message info"></div>
|
||||
<div style="display: none" id="packages" class="alert-message success"></div>
|
||||
<p>
|
||||
<textarea style="display: none; width: 100%;" id="edit_packages" rows="15"></textarea>
|
||||
</p>
|
||||
<fieldset class="cbi-section">
|
||||
<form method="post" action="">
|
||||
<div class="cbi-selection-node">
|
||||
<div class="cbi-value" id="keep_container" style="display: none">
|
||||
<div class="cbi-section-descr">
|
||||
<%:Check "Keep settings" to retain the current configuration.%>
|
||||
</div>
|
||||
<label class="cbi-value-title" for="keep"><%:Keep settings:%></label>
|
||||
<div class="cbi-value-field">
|
||||
<input name="keep" id="keep" checked="checked" type="checkbox">
|
||||
</div>
|
||||
</div>
|
||||
<div class="cbi-value" id="edit_button" style="display: none">
|
||||
<div class="cbi-value-field">
|
||||
<input class="cbi-button" value="<%:Edit installed packages%>" onclick="edit_packages()" type="button">
|
||||
</div>
|
||||
</div>
|
||||
<div class="cbi-value cbi-value" id="server_div" style="display:none">
|
||||
<!--
|
||||
<label class="cbi-value-title" for="server"><%:Server:%></label>
|
||||
<div class="cbi-value-field">
|
||||
<input onclick="edit_server()" class="cbi-button cbi-button-edit" value="" type="button" id="server" name="server">
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
<input type="hidden" value="" id="server" name="server">
|
||||
<div class="cbi-value cbi-value-last">
|
||||
<div class="cbi-value-field">
|
||||
<input class="cbi-button cbi-button-apply" value="<%:Search for upgrades%>" style="display: none" onclick="upgrade_check()" type="button" id="upgrade_button">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</fieldset>
|
||||
<script type="text/javascript">
|
||||
data = {};
|
||||
data["ubus_rpc_session"] = "<%=luci.dispatcher.context.authsession%>"
|
||||
origin = document.location.href.replace(location.pathname, "")
|
||||
ubus_url = origin + "/ubus/"
|
||||
</script>
|
||||
<script type="text/javascript" src="<%=resource%>/sysupgrade.js"></script>
|
||||
<%+footer%>
|
|
@ -1,97 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-03-31 15:07+0000\n"
|
||||
"Last-Translator: Weblate Admin <contact@openmptcprouter.com>\n"
|
||||
"Language-Team: French <http://weblate.openmptcprouter.com/projects/omr/"
|
||||
"luciapplicationssysupgrade/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.5.2\n"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:90
|
||||
msgid "Check \"Keep settings\" to retain the current configuration."
|
||||
msgstr ""
|
||||
"Cochez \"Conserver les paramètres\" pour conserver la configuration actuelle."
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:344
|
||||
msgid "Downloading firmware to web browser memory"
|
||||
msgstr "Téléchargement du micrologiciel dans la mémoire du navigateur Web"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:78
|
||||
msgid "Easily search and install new releases and package upgrades."
|
||||
msgstr ""
|
||||
"Recherchez et installez facilement les nouvelles versions et les mises à "
|
||||
"niveau des paquets."
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:99
|
||||
msgid "Edit installed packages"
|
||||
msgstr "Modifier les packages installés"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:269
|
||||
msgid "Flashing firmware. Don't unpower device"
|
||||
msgstr "Mise à jour du micrologiciel. Ne débranchez pas l'appareil"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:192
|
||||
msgid "Installed version:"
|
||||
msgstr "Version installée :"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:92
|
||||
msgid "Keep settings:"
|
||||
msgstr "Conserver les paramètres :"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:215
|
||||
msgid "No upgrades available"
|
||||
msgstr "Pas de mise à jour disponible"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:285
|
||||
msgid "Rebooting device - please wait!"
|
||||
msgstr "Redémarrage de l'appareil - veuillez patienter !"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:209
|
||||
msgid "Request firmware"
|
||||
msgstr "Demander le micrologiciel"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:113
|
||||
msgid "Search for upgrades"
|
||||
msgstr "Rechercher des mises à jour"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:165
|
||||
msgid "Searching for upgrades"
|
||||
msgstr "Recherche des mises à jour"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:104
|
||||
msgid "Server:"
|
||||
msgstr "Serveur :"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:289
|
||||
msgid "Success! Please reload web interface"
|
||||
msgstr "Succès ! Veuillez recharger l'interface Web"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:76
|
||||
#: luci-app-sysupgrade/root/usr/share/luci/menu.d/luci-app-sysupgrade.json:3
|
||||
msgid "Sysupgrade"
|
||||
msgstr "Mise à jour système"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:320
|
||||
msgid "Upload of firmware failed, please retry by reloading web interface"
|
||||
msgstr ""
|
||||
"Le téléchargement du micrologiciel a échoué, veuillez réessayer en "
|
||||
"rechargeant l'interface Web"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:305
|
||||
msgid "Uploading firmware to device"
|
||||
msgstr "Téléchargement du micrologiciel sur l'appareil"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:299
|
||||
msgid ""
|
||||
"Web interface could not reconnect to your device. Please reload web "
|
||||
"interface or check device manually"
|
||||
msgstr ""
|
||||
"L'interface Web n'a pas pu se reconnecter à votre appareil. Recharger "
|
||||
"l'interface"
|
||||
|
||||
#: luci-app-sysupgrade/root/usr/share/rpcd/acl.d/sysupgrade.json:3
|
||||
msgid "sysupgrade via rpcd and luci"
|
||||
msgstr "Mise à jour système via rpcd et luci"
|
|
@ -1,97 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-03-31 15:07+0000\n"
|
||||
"Last-Translator: Weblate Admin <contact@openmptcprouter.com>\n"
|
||||
"Language-Team: French <http://weblate.openmptcprouter.com/projects/omr/"
|
||||
"luciapplicationssysupgrade/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.5.2\n"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:90
|
||||
msgid "Check \"Keep settings\" to retain the current configuration."
|
||||
msgstr ""
|
||||
"Cochez \"Conserver les paramètres\" pour conserver la configuration actuelle."
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:344
|
||||
msgid "Downloading firmware to web browser memory"
|
||||
msgstr "Téléchargement du micrologiciel dans la mémoire du navigateur Web"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:78
|
||||
msgid "Easily search and install new releases and package upgrades."
|
||||
msgstr ""
|
||||
"Recherchez et installez facilement les nouvelles versions et les mises à "
|
||||
"niveau des paquets."
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:99
|
||||
msgid "Edit installed packages"
|
||||
msgstr "Modifier les packages installés"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:269
|
||||
msgid "Flashing firmware. Don't unpower device"
|
||||
msgstr "Mise à jour du micrologiciel. Ne débranchez pas l'appareil"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:192
|
||||
msgid "Installed version:"
|
||||
msgstr "Version installée :"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:92
|
||||
msgid "Keep settings:"
|
||||
msgstr "Conserver les paramètres :"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:215
|
||||
msgid "No upgrades available"
|
||||
msgstr "Pas de mise à jour disponible"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:285
|
||||
msgid "Rebooting device - please wait!"
|
||||
msgstr "Redémarrage de l'appareil - veuillez patienter !"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:209
|
||||
msgid "Request firmware"
|
||||
msgstr "Demander le micrologiciel"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:110
|
||||
msgid "Search for upgrades"
|
||||
msgstr "Rechercher des mises à jour"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:165
|
||||
msgid "Searching for upgrades"
|
||||
msgstr "Recherche des mises à jour"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:103
|
||||
msgid "Server:"
|
||||
msgstr "Serveur :"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:289
|
||||
msgid "Success! Please reload web interface"
|
||||
msgstr "Succès ! Veuillez recharger l'interface Web"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:76
|
||||
#: luci-app-sysupgrade/root/usr/share/luci/menu.d/luci-app-sysupgrade.json:3
|
||||
msgid "Sysupgrade"
|
||||
msgstr "Mise à jour système"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:320
|
||||
msgid "Upload of firmware failed, please retry by reloading web interface"
|
||||
msgstr ""
|
||||
"Le téléchargement du micrologiciel a échoué, veuillez réessayer en "
|
||||
"rechargeant l'interface Web"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:305
|
||||
msgid "Uploading firmware to device"
|
||||
msgstr "Téléchargement du micrologiciel sur l'appareil"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:299
|
||||
msgid ""
|
||||
"Web interface could not reconnect to your device. Please reload web "
|
||||
"interface or check device manually"
|
||||
msgstr ""
|
||||
"L'interface Web n'a pas pu se reconnecter à votre appareil. Recharger "
|
||||
"l'interface"
|
||||
|
||||
#: luci-app-sysupgrade/root/usr/share/rpcd/acl.d/sysupgrade.json:3
|
||||
msgid "sysupgrade via rpcd and luci"
|
||||
msgstr "Mise à jour système via rpcd et luci"
|
|
@ -1,94 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-06-16 10:51+0000\n"
|
||||
"Last-Translator: Dmitry Galenko <d@monteops.com>\n"
|
||||
"Language-Team: Russian <http://weblate.openmptcprouter.com/projects/omr/"
|
||||
"luciapplicationssysupgrade/ru/>\n"
|
||||
"Language: ru\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.6.1\n"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:90
|
||||
msgid "Check \"Keep settings\" to retain the current configuration."
|
||||
msgstr ""
|
||||
"Поставьте \"Сохранить настройки\", чтобы сохранить текущую конфигурацию."
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:344
|
||||
msgid "Downloading firmware to web browser memory"
|
||||
msgstr "Загружаем ПО в память вашего браузера"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:78
|
||||
msgid "Easily search and install new releases and package upgrades."
|
||||
msgstr "Легко ищите и устанавливайте новые версии ПО и обновления пакетов."
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:99
|
||||
msgid "Edit installed packages"
|
||||
msgstr "Редактировать список установленных пакетов"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:269
|
||||
msgid "Flashing firmware. Don't unpower device"
|
||||
msgstr "Обновляем ПО маршрутизатора. Не выключайте питание вашего устройства"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:192
|
||||
msgid "Installed version:"
|
||||
msgstr "Установленная версия:"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:92
|
||||
msgid "Keep settings:"
|
||||
msgstr "Сохранить настройки:"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:215
|
||||
msgid "No upgrades available"
|
||||
msgstr "Обновления не найдены"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:285
|
||||
msgid "Rebooting device - please wait!"
|
||||
msgstr "Перезагружаем роутер, пожалуйста подождите!"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:209
|
||||
msgid "Request firmware"
|
||||
msgstr "Загрузить ПО"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:113
|
||||
msgid "Search for upgrades"
|
||||
msgstr "Поиск обновлений"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:165
|
||||
msgid "Searching for upgrades"
|
||||
msgstr "Поиск обновлений"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:104
|
||||
msgid "Server:"
|
||||
msgstr "Сервер:"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:289
|
||||
msgid "Success! Please reload web interface"
|
||||
msgstr "Успешно! Пожалуйста обновите страницу"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:76
|
||||
#: luci-app-sysupgrade/root/usr/share/luci/menu.d/luci-app-sysupgrade.json:3
|
||||
msgid "Sysupgrade"
|
||||
msgstr "sysupgrade"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:320
|
||||
msgid "Upload of firmware failed, please retry by reloading web interface"
|
||||
msgstr ""
|
||||
"Ошибка при загрузке обновлений ПО. Для продолжения, пожалуйста обновите "
|
||||
"страницу"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:305
|
||||
msgid "Uploading firmware to device"
|
||||
msgstr "Загружаем обновления ПО в память роутера"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:299
|
||||
msgid ""
|
||||
"Web interface could not reconnect to your device. Please reload web "
|
||||
"interface or check device manually"
|
||||
msgstr "Проблема при подключении к роутеру. Пожалуйста обновите страницу"
|
||||
|
||||
#: luci-app-sysupgrade/root/usr/share/rpcd/acl.d/sysupgrade.json:3
|
||||
msgid "sysupgrade via rpcd and luci"
|
||||
msgstr "sysupgrade с использованием RPCd и LUCI"
|
|
@ -1,81 +0,0 @@
|
|||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:90
|
||||
msgid "Check \"Keep settings\" to retain the current configuration."
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:344
|
||||
msgid "Downloading firmware to web browser memory"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:78
|
||||
msgid "Easily search and install new releases and package upgrades."
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:99
|
||||
msgid "Edit installed packages"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:269
|
||||
msgid "Flashing firmware. Don't unpower device"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:192
|
||||
msgid "Installed version:"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:92
|
||||
msgid "Keep settings:"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:215
|
||||
msgid "No upgrades available"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:285
|
||||
msgid "Rebooting device - please wait!"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:209
|
||||
msgid "Request firmware"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:113
|
||||
msgid "Search for upgrades"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:165
|
||||
msgid "Searching for upgrades"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:104
|
||||
msgid "Server:"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:289
|
||||
msgid "Success! Please reload web interface"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:76
|
||||
#: luci-app-sysupgrade/root/usr/share/luci/menu.d/luci-app-sysupgrade.json:3
|
||||
msgid "Sysupgrade"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:320
|
||||
msgid "Upload of firmware failed, please retry by reloading web interface"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:305
|
||||
msgid "Uploading firmware to device"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:299
|
||||
msgid ""
|
||||
"Web interface could not reconnect to your device. Please reload web "
|
||||
"interface or check device manually"
|
||||
msgstr ""
|
||||
|
||||
#: luci-app-sysupgrade/root/usr/share/rpcd/acl.d/sysupgrade.json:3
|
||||
msgid "sysupgrade via rpcd and luci"
|
||||
msgstr ""
|
|
@ -1,90 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-05-03 07:27+0000\n"
|
||||
"Last-Translator: niergouge <1150108426@qq.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <http://weblate.openmptcprouter.com/"
|
||||
"projects/omr/luciapplicationssysupgrade/zh_Hans/>\n"
|
||||
"Language: zh_Hans\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.5.2\n"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:90
|
||||
msgid "Check \"Keep settings\" to retain the current configuration."
|
||||
msgstr "勾选保持当前配置。"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:344
|
||||
msgid "Downloading firmware to web browser memory"
|
||||
msgstr "下载固件到网页浏览器内存"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:78
|
||||
msgid "Easily search and install new releases and package upgrades."
|
||||
msgstr "轻松搜索和安装新版本升级固件包。"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:99
|
||||
msgid "Edit installed packages"
|
||||
msgstr "编辑安装包"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:269
|
||||
msgid "Flashing firmware. Don't unpower device"
|
||||
msgstr "设备升级中。请不要断开电源"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:192
|
||||
msgid "Installed version:"
|
||||
msgstr "安装的版本:"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:92
|
||||
msgid "Keep settings:"
|
||||
msgstr "保持设置:"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:215
|
||||
msgid "No upgrades available"
|
||||
msgstr "没有升级"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:285
|
||||
msgid "Rebooting device - please wait!"
|
||||
msgstr "正在重启设备-请稍候!"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:209
|
||||
msgid "Request firmware"
|
||||
msgstr "请求固件"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:113
|
||||
msgid "Search for upgrades"
|
||||
msgstr "搜索升级"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:165
|
||||
msgid "Searching for upgrades"
|
||||
msgstr "搜索升级"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:104
|
||||
msgid "Server:"
|
||||
msgstr "服务器:"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:289
|
||||
msgid "Success! Please reload web interface"
|
||||
msgstr "成功!请重新加载web界面"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:76
|
||||
#: luci-app-sysupgrade/root/usr/share/luci/menu.d/luci-app-sysupgrade.json:3
|
||||
msgid "Sysupgrade"
|
||||
msgstr "系统升级"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:320
|
||||
msgid "Upload of firmware failed, please retry by reloading web interface"
|
||||
msgstr "轻松搜索和安装新版本的系统进行升级"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:305
|
||||
msgid "Uploading firmware to device"
|
||||
msgstr "上传固件到设备"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:299
|
||||
msgid ""
|
||||
"Web interface could not reconnect to your device. Please reload web "
|
||||
"interface or check device manually"
|
||||
msgstr "网络界面无法重新连接到您的设备。请重新加载web界面或手动检查设备"
|
||||
|
||||
#: luci-app-sysupgrade/root/usr/share/rpcd/acl.d/sysupgrade.json:3
|
||||
msgid "sysupgrade via rpcd and luci"
|
||||
msgstr "通过RPCD和luci进行升级"
|
|
@ -1,90 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-04-30 16:03+0000\n"
|
||||
"Last-Translator: niergouge <1150108426@qq.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <http://weblate.openmptcprouter.com/"
|
||||
"projects/omr/luciapplicationssysupgrade/zh_Hans/>\n"
|
||||
"Language: zh_Hans\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.5.2\n"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:90
|
||||
msgid "Check \"Keep settings\" to retain the current configuration."
|
||||
msgstr "勾选保持当前配置。"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:344
|
||||
msgid "Downloading firmware to web browser memory"
|
||||
msgstr "下载固件到网页浏览器内存"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:78
|
||||
msgid "Easily search and install new releases and package upgrades."
|
||||
msgstr "轻松搜索和安装新版本和包升级。"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:99
|
||||
msgid "Edit installed packages"
|
||||
msgstr "编辑安装包"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:269
|
||||
msgid "Flashing firmware. Don't unpower device"
|
||||
msgstr "设备升级中。请不要断开电源"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:192
|
||||
msgid "Installed version:"
|
||||
msgstr "安装的版本:"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:92
|
||||
msgid "Keep settings:"
|
||||
msgstr "保持设置:"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:215
|
||||
msgid "No upgrades available"
|
||||
msgstr "没有升级"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:285
|
||||
msgid "Rebooting device - please wait!"
|
||||
msgstr "正在重启设备-请稍候!"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:209
|
||||
msgid "Request firmware"
|
||||
msgstr "请求固件"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:110
|
||||
msgid "Search for upgrades"
|
||||
msgstr "搜索升级"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:165
|
||||
msgid "Searching for upgrades"
|
||||
msgstr "搜索升级"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:103
|
||||
msgid "Server:"
|
||||
msgstr "服务器:"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:289
|
||||
msgid "Success! Please reload web interface"
|
||||
msgstr "成功!请重新加载web界面"
|
||||
|
||||
#: luci-app-sysupgrade/luasrc/view/sysupgrade.htm:76
|
||||
#: luci-app-sysupgrade/root/usr/share/luci/menu.d/luci-app-sysupgrade.json:3
|
||||
msgid "Sysupgrade"
|
||||
msgstr "系统升级"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:320
|
||||
msgid "Upload of firmware failed, please retry by reloading web interface"
|
||||
msgstr "轻松搜索和安装新版本的系统进行升级"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:305
|
||||
msgid "Uploading firmware to device"
|
||||
msgstr "上传固件到设备"
|
||||
|
||||
#: luci-app-sysupgrade/root/www/luci-static/resources/sysupgrade.js:299
|
||||
msgid ""
|
||||
"Web interface could not reconnect to your device. Please reload web "
|
||||
"interface or check device manually"
|
||||
msgstr "网络界面无法重新连接到您的设备。请重新加载web界面或手动检查设备"
|
||||
|
||||
#: luci-app-sysupgrade/root/usr/share/rpcd/acl.d/sysupgrade.json:3
|
||||
msgid "sysupgrade via rpcd and luci"
|
||||
msgstr "通过RPCD和luci进行升级"
|
|
@ -1,20 +0,0 @@
|
|||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2020-2021 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
# Released under GPL 3. See LICENSE for the full terms.
|
||||
|
||||
{
|
||||
START=99
|
||||
STOP=10
|
||||
USE_PROCD=1
|
||||
}
|
||||
|
||||
start_service()
|
||||
{
|
||||
if [ -f /etc/backup/installed_packages.txt ]; then
|
||||
if [ "$(opkg -V0 update 2>&1)" = "" ]; then
|
||||
grep "\toverlay" /etc/backup/installed_packages.txt | cut -f1 | xargs -r opkg -V0 install
|
||||
rm /etc/backup/installed_packages.txt
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
/etc/init.d/uhttpd restart
|
||||
/etc/init.d/rpcd reload
|
||||
|
||||
[ -e /etc/config/sysupgrade ] && return 0
|
||||
|
||||
touch /etc/config/sysupgrade
|
||||
|
||||
uci -q batch <<EOF
|
||||
set sysupgrade.server=server
|
||||
set sysupgrade.server.url='https://download.openmptcprouter.com'
|
||||
set sysupgrade.client=client
|
||||
set sysupgrade.client.upgrade_packages='0'
|
||||
set sysupgrade.client.auto_search='0'
|
||||
set sysupgrade.client.advanced_mode='0'
|
||||
commit sysupgrade
|
||||
EOF
|
||||
|
||||
return 0
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"admin/system/sysupgrade": {
|
||||
"title": "Sysupgrade",
|
||||
"order": 1,
|
||||
"action": {
|
||||
"type": "template",
|
||||
"path": "sysupgrade"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [ "sysupgrade" ]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"sysupgrade": {
|
||||
"description": "sysupgrade via rpcd and luci",
|
||||
"read": {
|
||||
"ubus": {
|
||||
"rpc-sys": [
|
||||
"upgrade_start",
|
||||
"packagelist"
|
||||
],
|
||||
"system": [
|
||||
"board",
|
||||
"info"
|
||||
],
|
||||
"openmptcprouter": [
|
||||
"rootfs"
|
||||
],
|
||||
"uci": [
|
||||
"get", "set", "commit"
|
||||
]
|
||||
},
|
||||
"uci": [
|
||||
"sysupgrade"
|
||||
]
|
||||
},
|
||||
"write": {
|
||||
"cgi-io": [
|
||||
"upload"
|
||||
],
|
||||
"uci": [
|
||||
"sysupgrade"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,389 +0,0 @@
|
|||
'require ui';
|
||||
function $(s) {
|
||||
return document.getElementById(s.substring(1));
|
||||
}
|
||||
|
||||
function show(s) {
|
||||
$(s).style.display = 'block';
|
||||
}
|
||||
|
||||
function hide(s) {
|
||||
$(s).style.display = 'none';
|
||||
}
|
||||
|
||||
function set_server() {
|
||||
hide("#status_box");
|
||||
data.url = $("#server").value;
|
||||
ubus_call("uci", "set", {
|
||||
"config": "sysupgrade",
|
||||
"section": "server",
|
||||
values: {
|
||||
"url": data.url
|
||||
}
|
||||
})
|
||||
ubus_call("uci", "commit", {
|
||||
"config": "sysupgrade"
|
||||
})
|
||||
var server_button = $("#server")
|
||||
server_button.type = 'button';
|
||||
server_button.className = 'cbi-button cbi-button-edit';
|
||||
server_button.parentElement.removeChild($("#button_set"));
|
||||
server_button.onclick = edit_server;
|
||||
}
|
||||
|
||||
function edit_server() {
|
||||
$("#server").type = 'text';
|
||||
$("#server").onkeydown = function(event) {
|
||||
if (event.key === 'Enter') {
|
||||
set_server();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
$("#server").className = '';
|
||||
$("#server").onclick = null;
|
||||
|
||||
var button_set = document.createElement("input");
|
||||
button_set.type = "button";
|
||||
button_set.value = "Save";
|
||||
button_set.name = "button_set";
|
||||
button_set.id = "button_set";
|
||||
button_set.className = 'cbi-button cbi-button-save';
|
||||
button_set.onclick = set_server
|
||||
$("#server").parentElement.appendChild(button_set);
|
||||
}
|
||||
|
||||
function edit_packages() {
|
||||
data.edit_packages = true
|
||||
hide("#edit_button");
|
||||
$("#edit_packages").value = data.packages.join("\n");
|
||||
show("#edit_packages");
|
||||
}
|
||||
|
||||
// initial setup, get system information
|
||||
function setup() {
|
||||
ubus_call("rpc-sys", "packagelist", {}, "packages");
|
||||
ubus_call("system", "board", {}, "release");
|
||||
ubus_call("system", "board", {}, "board_name");
|
||||
ubus_call("system", "info", {}, "memory");
|
||||
ubus_call("openmptcprouter", "getrootfs", {}, "format");
|
||||
ubus_call("openmptcprouter", "getefi", {}, "efi_enabled");
|
||||
uci_get({
|
||||
"config": "sysupgrade",
|
||||
"section": "server",
|
||||
"option": "url"
|
||||
})
|
||||
uci_get({
|
||||
"config": "sysupgrade",
|
||||
"section": "client",
|
||||
"option": "upgrade_packages"
|
||||
})
|
||||
uci_get({
|
||||
"config": "sysupgrade",
|
||||
"section": "client",
|
||||
"option": "advanced_mode"
|
||||
})
|
||||
uci_get({
|
||||
"config": "sysupgrade",
|
||||
"section": "client",
|
||||
"option": "auto_search"
|
||||
})
|
||||
setup_ready();
|
||||
}
|
||||
|
||||
function setup_ready() {
|
||||
// checks if a async ubus calls have finished
|
||||
if (ubus_counter != ubus_closed) {
|
||||
setTimeout(setup_ready, 300)
|
||||
} else {
|
||||
if (data.auto_search == 1) {
|
||||
upgrade_check();
|
||||
} else {
|
||||
show("#upgrade_button");
|
||||
//show("#server_div");
|
||||
$("#server").value = data.url;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function uci_get(option) {
|
||||
// simple wrapper to get a uci value store in data.<option>
|
||||
ubus_call("uci", "get", option, option["option"])
|
||||
}
|
||||
|
||||
ubus_counter = 0;
|
||||
ubus_closed = 0;
|
||||
|
||||
function ubus_call(command, argument, params, variable) {
|
||||
var request_data = {};
|
||||
request_data.jsonrpc = "2.0";
|
||||
request_data.id = ubus_counter;
|
||||
request_data.method = "call";
|
||||
request_data.params = [data.ubus_rpc_session, command, argument, params]
|
||||
var request_json = JSON.stringify(request_data)
|
||||
ubus_counter++;
|
||||
var request = new XMLHttpRequest();
|
||||
request.open("POST", ubus_url, true);
|
||||
request.setRequestHeader("Content-type", "application/json");
|
||||
request.onload = function(event) {
|
||||
if (request.status === 200) {
|
||||
var response = JSON.parse(request.responseText)
|
||||
if (!("error" in response) && "result" in response) {
|
||||
if (response.result.length === 2) {
|
||||
if (command === "uci") {
|
||||
data[variable] = response.result[1].value
|
||||
} else {
|
||||
data[variable] = response.result[1][variable]
|
||||
}
|
||||
}
|
||||
} else {
|
||||
set_status("danger", "<b>Ubus call failed:</b><br />Request: " + request_json + "<br />Response: " + JSON.stringify(response))
|
||||
}
|
||||
ubus_closed++;
|
||||
}
|
||||
}
|
||||
request.send(request_json);
|
||||
}
|
||||
|
||||
function set_status(type, message, loading, show_log) {
|
||||
$("#status_box").className = "alert-message " + type;
|
||||
var loading_image = '';
|
||||
if (loading) {
|
||||
loading_image = '<img src="/luci-static/resources/icons/loading.gif" alt="Loading" style="vertical-align:middle"> ';
|
||||
}
|
||||
if (data.buildlog_url && show_log) {
|
||||
message += ' <p><a target="_blank" href="' + data.buildlog_url + '">Build log</a></p>'
|
||||
}
|
||||
$("#status_box").innerHTML = loading_image + message;
|
||||
show("#status_box")
|
||||
}
|
||||
|
||||
function upgrade_check() {
|
||||
var current_version = data.release.version.toLowerCase();
|
||||
var current_branch = current_version.split('-')[0].split('.').slice(0, 2).join('.')
|
||||
var candidates = []
|
||||
hide("#status_box");
|
||||
hide("#server_div");
|
||||
set_status("info", _("Searching for upgrades"), true);
|
||||
fetch(data.url + "/api/versions?v=" + Date.now())
|
||||
.then(response => response.json())
|
||||
.then(response => {
|
||||
var branches = response["branches"]
|
||||
for (i in branches) {
|
||||
// handle snapshots in a special way - as always
|
||||
if (current_version == "snapshot" && branches[i]["latest"] == "snapshot") {
|
||||
candidates.unshift(branches[i])
|
||||
break
|
||||
}
|
||||
|
||||
if (current_version == branches[i]["latest"]) {
|
||||
break
|
||||
}
|
||||
if (current_branch != branches[i]["name"]) {
|
||||
branches[i]["warn_branch_jump"] = true
|
||||
}
|
||||
candidates.unshift(branches[i])
|
||||
if (current_branch == branches[i]["name"]) {
|
||||
// don't offer branches older than the current
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
if (candidates.length > 0) {
|
||||
var info_output = "<h3>New release <b>" + candidates[0].latest + "</b> available</h3>"
|
||||
info_output += _('Installed version:') + " " + data.release.version
|
||||
|
||||
// tell server the currently installed version
|
||||
request_dict.current_version = request_dict.version;
|
||||
// tell server what version to install
|
||||
request_dict.version = candidates[0].latest;
|
||||
// tell server to diff the requested packages with the default packages
|
||||
// this allows to not automatically re-install default packages which
|
||||
// where dropped in later releases
|
||||
request_dict.diff_packages = true;
|
||||
|
||||
set_status("success", info_output)
|
||||
|
||||
if (data.advanced_mode == 1) {
|
||||
show("#edit_button");
|
||||
}
|
||||
var upgrade_button = $("#upgrade_button")
|
||||
upgrade_button.value = _("Request firmware");
|
||||
upgrade_button.style.display = "block";
|
||||
upgrade_button.disabled = false;
|
||||
upgrade_button.onclick = upgrade_request;
|
||||
|
||||
} else {
|
||||
set_status("success", _("No upgrades available"))
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function upgrade_request() {
|
||||
// Request firmware using the following parameters
|
||||
// distro, version, target, board_name, packages
|
||||
$("#upgrade_button").disabled = true;
|
||||
hide("#edit_packages");
|
||||
hide("#edit_button");
|
||||
hide("#keep_container");
|
||||
|
||||
// add board info to let server determine profile
|
||||
request_dict.target = data.release.target
|
||||
request_dict.profile = data.board_name
|
||||
request_dict.rootfs = data.format
|
||||
request_dict.efi = data.efi_enabled
|
||||
|
||||
if (data.edit_packages == true) {
|
||||
request_dict.packages = $("#edit_packages").value.split("\n")
|
||||
} else {
|
||||
request_dict.packages = Object.keys(data.packages);
|
||||
}
|
||||
server_request()
|
||||
}
|
||||
|
||||
function upgrade_request_callback(response) {
|
||||
var sysupgrade_file = "";
|
||||
console.log(response)
|
||||
for (i in response.images) {
|
||||
if (response.images[i].type == "sysupgrade") {
|
||||
sysupgrade_file = response.images[i].name;
|
||||
}
|
||||
}
|
||||
if (sysupgrade_file != "") {
|
||||
data.sysupgrade_url = data.url + '/release/' + response.bin_dir + '/' + sysupgrade_file
|
||||
var info_output = '<h3>Firmware searched</h3><p>File: <a href="' + data.sysupgrade_url + '">' + sysupgrade_file + '</p></a>'
|
||||
set_status("success", info_output, false, true);
|
||||
|
||||
show("#keep_container");
|
||||
var upgrade_button = $("#upgrade_button")
|
||||
upgrade_button.disabled = false;
|
||||
upgrade_button.style.display = "block";
|
||||
upgrade_button.value = "Flash firmware";
|
||||
upgrade_button.onclick = download_image;
|
||||
} else {
|
||||
set_status("danger", "Device not sysupgrade compatible!")
|
||||
}
|
||||
}
|
||||
|
||||
function flash_image() {
|
||||
// Flash image via rpc-sys upgrade_start
|
||||
set_status("warning", _("Flashing firmware. Don't unpower device"), true)
|
||||
ubus_call("rpc-sys", "upgrade_start", {
|
||||
"keep": $("#keep").checked
|
||||
}, 'message');
|
||||
ping_max = 3600; // in seconds
|
||||
setTimeout(ping_ubus, 10000)
|
||||
}
|
||||
|
||||
function ping_ubus() {
|
||||
// Tries to connect to ubus. If the connection fails the device is likely still rebooting.
|
||||
// If more time than ping_max passes update may failed
|
||||
if (ping_max > 0) {
|
||||
ping_max--;
|
||||
var request = new XMLHttpRequest();
|
||||
request.open("GET", ubus_url, true);
|
||||
request.addEventListener('error', function(event) {
|
||||
set_status("warning", _("Rebooting device - please wait!"), true);
|
||||
setTimeout(ping_ubus, 5000)
|
||||
});
|
||||
request.addEventListener('load', function(event) {
|
||||
set_status("success", _("Success! Please reload web interface"));
|
||||
$("#upgrade_button").value = "Reload page";
|
||||
show("#upgrade_button");
|
||||
$("#upgrade_button").disabled = false;
|
||||
$("#upgrade_button").onclick = function() {
|
||||
location.reload();
|
||||
}
|
||||
});
|
||||
request.send();
|
||||
} else {
|
||||
set_status("danger", _("Web interface could not reconnect to your device. Please reload web interface or check device manually"))
|
||||
}
|
||||
}
|
||||
|
||||
function upload_image(blob) {
|
||||
// Uploads received blob data to the server using cgi-io
|
||||
set_status("info", _("Uploading firmware to device"), true);
|
||||
var request = new XMLHttpRequest();
|
||||
var form_data = new FormData();
|
||||
|
||||
form_data.append("sessionid", data.ubus_rpc_session)
|
||||
form_data.append("filename", "/tmp/firmware.bin")
|
||||
form_data.append("filemode", 755) // insecure?
|
||||
form_data.append("filedata", blob)
|
||||
|
||||
request.addEventListener('load', function(event) {
|
||||
request_json = JSON.parse(request.responseText)
|
||||
flash_image();
|
||||
});
|
||||
|
||||
request.addEventListener('error', function(event) {
|
||||
set_status("danger", _("Upload of firmware failed, please retry by reloading web interface"))
|
||||
});
|
||||
|
||||
request.open('POST', origin + '/cgi-bin/cgi-upload');
|
||||
request.send(form_data);
|
||||
}
|
||||
|
||||
|
||||
function download_image() {
|
||||
// Download image from server once the url was received by upgrade_request
|
||||
hide("#keep_container");
|
||||
hide("#upgrade_button");
|
||||
var download_request = new XMLHttpRequest();
|
||||
download_request.open("GET", data.sysupgrade_url);
|
||||
download_request.responseType = "arraybuffer";
|
||||
|
||||
download_request.onload = function() {
|
||||
if (this.status === 200) {
|
||||
var blob = new Blob([download_request.response], {
|
||||
type: "application/octet-stream"
|
||||
});
|
||||
upload_image(blob)
|
||||
}
|
||||
};
|
||||
set_status("info", _("Downloading firmware to web browser memory"), true);
|
||||
download_request.send();
|
||||
}
|
||||
|
||||
function server_request() {
|
||||
fetch(data.url + "/api/build?v=" + Date.now(), {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
body: JSON.stringify(request_dict)
|
||||
})
|
||||
.then(response => {
|
||||
switch (response.status) {
|
||||
case 200:
|
||||
response.json()
|
||||
.then(response => {
|
||||
upgrade_request_callback(response)
|
||||
});
|
||||
break;
|
||||
case 202:
|
||||
set_status("info", "Processing request", true);
|
||||
setTimeout(function() {
|
||||
server_request()
|
||||
}, 5000)
|
||||
break;
|
||||
case 400: // bad request
|
||||
case 422: // bad package
|
||||
case 500: // build failed
|
||||
console.log('error (' + response.status + ')');
|
||||
response.json()
|
||||
.then(response => {
|
||||
if (response.buildlog) {
|
||||
data.buildlog_url = data.url + '/' + response.bin_dir + '/buildlog.txt';
|
||||
}
|
||||
set_status("danger", response.message);
|
||||
});
|
||||
break;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
request_dict = {}
|
||||
document.onload = setup()
|
|
@ -1,18 +0,0 @@
|
|||
#
|
||||
# Copyright 2019-2020 ZHANG Zhao <Zhao.Zhang2@etu.univ-grenoble-alpes.fr>
|
||||
#
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=LuCI Dashboard Pages
|
||||
LUCI_DEPENDS:=+luci-base +libiwinfo
|
||||
|
||||
PKG_BUILD_DEPENDS:=iwinfo
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
||||
|
|
@ -1,285 +0,0 @@
|
|||
/**
|
||||
* Dashboard Principals Styles
|
||||
**/
|
||||
|
||||
.Dashboard {
|
||||
color: #212529!important;
|
||||
}
|
||||
|
||||
.Dashboard h3 {
|
||||
color:#000;
|
||||
}
|
||||
|
||||
.Dashboard hr {
|
||||
border: 0;
|
||||
height: 0;
|
||||
overflow: visible;
|
||||
margin: 0;
|
||||
box-sizing: content-box;
|
||||
border-top: 1px solid rgba(0,0,0,.1);
|
||||
}
|
||||
|
||||
.Dashboard .box-s1 {
|
||||
min-height: 466px;
|
||||
}
|
||||
|
||||
.Dashboard .internet-status-self .internet-status-info .title {
|
||||
height: 97px;
|
||||
}
|
||||
|
||||
.Dashboard .dashboard-bg {
|
||||
border-radius: 16px;
|
||||
background-color: #e0e0e0;
|
||||
}
|
||||
|
||||
.Dashboard .title {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.Dashboard .section-content {
|
||||
display: flex;
|
||||
vertical-align: top;
|
||||
padding: 20px 0 0 0;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.Dashboard .section-content > div {
|
||||
width:100%;
|
||||
padding:1.5em;
|
||||
}
|
||||
|
||||
.Dashboard .section-content .settings-info {
|
||||
padding-top:1em;
|
||||
}
|
||||
|
||||
.Dashboard .section-content .internet-status-info .settings-info {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.Dashboard .section-content .internet-status-info .settings-info > div > p > i{
|
||||
padding: 0 0 0 5px;
|
||||
}
|
||||
|
||||
.Dashboard .section-content > div:nth-child(2) {
|
||||
margin-left:20px;
|
||||
}
|
||||
|
||||
.Dashboard .devices-list .devices-info {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.Dashboard .devices-list .devices-info .tr .td{
|
||||
padding:0px 0 0 10px;
|
||||
}
|
||||
|
||||
.Dashboard .devices-list .devices-info .tr .td:first-child {
|
||||
width: 33%;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.Dashboard .devices-list hr:nth-child(4) {
|
||||
margin-top: 0;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-lan .devices-list .table-titles .th:first-child {
|
||||
width: 35%;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-self .router-status-info .settings-info {
|
||||
padding-left:27px;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-self .router-status-info .title h3 {
|
||||
margin-top:-2px;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-info svg {
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
.Dashboard .internet-status-self .settings-info p:first-child span:first-child{
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.Dashboard .internet-status-self .settings-info p:nth-child(2) span:first-child,
|
||||
.Dashboard .router-status-wifi .wifi-info .settings-info p:first-child span:first-child,
|
||||
.Dashboard .router-status-wifi .wifi-info .settings-info p:nth-child(2) span:first-child{
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.Dashboard .settings-info p span:first-child {
|
||||
width: 35%;
|
||||
font-size: 12px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.Dashboard .settings-info p span:nth-child(2){
|
||||
display: inline-block;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.Dashboard .settings-info p span:nth-child(2).label {
|
||||
padding: 1px 4px 1px 4px;
|
||||
font-size: 9.75px;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-info .settings-info p span:nth-child(2){
|
||||
max-width: 283px;
|
||||
}
|
||||
|
||||
.Dashboard .settings-info p span.ssid {
|
||||
max-height: 18px;
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
.Dashboard .settings-info p span.encryption {
|
||||
max-width: 82px;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .settings-info,
|
||||
.Dashboard .router-status-lan .lan-info .settings-info
|
||||
{
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td {
|
||||
padding: 0 10px 0 10px;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td:first-child {
|
||||
width: 30%;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td:nth-child(2) {
|
||||
width: 21%;
|
||||
overflow: hidden;
|
||||
padding-left:0;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .settings-info{
|
||||
padding:1em 0 1em 0;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td:nth-child(3) {
|
||||
width: 22%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td:nth-child(5) {
|
||||
width: initial;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info > hr:last-child {
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .devices-info .device-info .progress {
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.Dashboard .wifi-info .devices-info .table-titles {
|
||||
border-bottom:1px solid rgba(0,0,0,.1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Responsive
|
||||
**/
|
||||
@media screen and (min-width: 200px) and (max-width: 640px) {
|
||||
|
||||
.Dashboard .cbi-section-1 > .section-content {
|
||||
padding-top:10px;
|
||||
}
|
||||
|
||||
.Dashboard .section-content {
|
||||
display:block;
|
||||
}
|
||||
|
||||
.Dashboard .section-content > div{
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
.Dashboard .section-content > div:first-child {
|
||||
margin-bottom:10px;
|
||||
}
|
||||
|
||||
.Dashboard .section-content > div:nth-child(2) {
|
||||
margin:0;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-self .router-status-info .settings-info {
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.Dashboard .section-content .internet-status-info .settings-info {
|
||||
display:block;
|
||||
}
|
||||
|
||||
.Dashboard .section-content .internet-status-info .settings-info > div:first-child {
|
||||
margin-bottom: 10px;
|
||||
border-bottom: 1px solid rgba(0,0,0,.1);
|
||||
}
|
||||
|
||||
.Dashboard .section-content .router-status-lan .devices-info .table-titles {
|
||||
display:block;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .settings-info > div{
|
||||
flex:1;
|
||||
}
|
||||
|
||||
.Dashboard .section-content .router-status-lan .devices-info .table-titles .th:last-child{
|
||||
padding-left: 70px;
|
||||
}
|
||||
|
||||
.Dashboard .section-content .router-status-lan .devices-info .td:first-child{
|
||||
flex: 2 2 31%;
|
||||
}
|
||||
|
||||
.Dashboard .section-content .router-status-lan .devices-info .td:nth-child(2){
|
||||
flex: 1 1 24%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.Dashboard .section-content .router-status-lan .devices-info .td:last-child{
|
||||
word-wrap: normal;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-wifi .wifi-info .settings-info > div p:nth-child(6) > span:last-child{
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
height: 14px;
|
||||
width: 52%;
|
||||
word-break: break-word;
|
||||
line-height: 15px;
|
||||
}
|
||||
|
||||
.Dashboard .wifi-info .devices-info .table-titles {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
border-radius: initial;
|
||||
}
|
||||
|
||||
.Dashboard .wifi-info .devices-info .table-titles .th {
|
||||
flex: 2 2 24%;
|
||||
}
|
||||
|
||||
.Dashboard .wifi-info .devices-info .tr .td {
|
||||
flex: 2 2 10%;
|
||||
}
|
||||
|
||||
.Dashboard .wifi-info hr:nth-child(4) {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 32 32"><g stroke="#000" fill="none"><defs><symbol id="0"><path d="M6 11l0 -2 -4 0c-1,0 -1,-1 -1,-1l0 -6c0,-1 1,-1 1,-1l10 0c1,0 1,1 1,1l0 6c0,1 -1,1 -1,1l-4 0 0 2m-2 -2l2 0m-5 2l8 0"/></symbol></defs><use xlink:href="#0" x="9" y="2"/><use xlink:href="#0" x="0" y="18"/><use xlink:href="#0" x="18" y="18"/><path d="M16 14l0 3m-8 1l0 -1 16 0 0 1"/></g></svg>
|
Before Width: | Height: | Size: 452 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g stroke="#5b5" fill="none"><circle cx="16" cy="16" r="15"/><ellipse cx="16" cy="16" rx="8" ry="15"/><path d="M4 25c6,-3 18,-3 24,0m-27 -9l30 0m-27 -9c6,3 18,3 24,0m-12 -6l0 30"/></g></svg>
|
Before Width: | Height: | Size: 250 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g stroke="#000" fill="none"><circle cx="16" cy="16" r="15"/><ellipse cx="16" cy="16" rx="8" ry="15"/><path d="M4 25c6,-3 18,-3 24,0m-27 -9l30 0m-27 -9c6,3 18,3 24,0m-12 -6l0 30"/></g></svg>
|
Before Width: | Height: | Size: 250 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path stroke="#000" fill="none" d="M6 22l-4 0c-1,0 -1,1 -1,1l0 4c0,1 1,1 1,1l28 0c1,0 1,-1 1,-1l0 -4c0,-1 -1,-1 -1,-1l-24 0 -2 -18c-0.2,-2 -2.2,-2 -2,0l2 18m22 0l2 -18c0.2,-2 2.2,-2 2,0l-2 18m-2 4l2 0m-5 0l2 0m-12 0l2 0m-5 0l2 0m-5 0l2 0m-5 0l2 0"/></svg>
|
Before Width: | Height: | Size: 315 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path stroke="#000" fill="none" d="M4 15l-3 -3c8.4,-8.3 21.6,-8.3 30,0l-3 3c-6.6,-6.6 -17.4,-6.6 -24,0zm6 6l-3 -3c5,-5 13,-5 18,0l-3 3c-3.3,-3.3 -8.7,-3.3 -12,0zm6 6l-3 -3c1.6,-1.7 4.4,-1.7 6,0l-3 3z"/></svg>
|
Before Width: | Height: | Size: 268 B |
|
@ -1,324 +0,0 @@
|
|||
'use strict';
|
||||
'require baseclass';
|
||||
'require fs';
|
||||
'require rpc';
|
||||
'require network';
|
||||
|
||||
var callSystemBoard = rpc.declare({
|
||||
object: 'system',
|
||||
method: 'board'
|
||||
});
|
||||
|
||||
var callSystemInfo = rpc.declare({
|
||||
object: 'system',
|
||||
method: 'info'
|
||||
});
|
||||
|
||||
return baseclass.extend({
|
||||
|
||||
params: [],
|
||||
|
||||
load: function() {
|
||||
return Promise.all([
|
||||
network.getWANNetworks(),
|
||||
network.getWAN6Networks(),
|
||||
L.resolveDefault(callSystemBoard(), {}),
|
||||
L.resolveDefault(callSystemInfo(), {})
|
||||
]);
|
||||
},
|
||||
|
||||
renderHtml: function(data, type) {
|
||||
|
||||
var icon = type;
|
||||
var title = 'router' == type ? _('System') : _('Internet');
|
||||
var container_wapper = E('div', { 'class': type + '-status-self dashboard-bg box-s1'});
|
||||
var container_box = E('div', { 'class': type + '-status-info'});
|
||||
var container_item = E('div', { 'class': 'settings-info'});
|
||||
|
||||
if ('internet' == type) {
|
||||
icon = (data.v4.connected.value || data.v6.connected.value) ? type : 'not-internet';
|
||||
}
|
||||
|
||||
container_box.appendChild(E('div', { 'class': 'title'}, [
|
||||
E('img', {
|
||||
'src': L.resource('view/dashboard/icons/' + icon + '.svg'),
|
||||
'width': 'router' == type ? 64 : 54,
|
||||
'title': title,
|
||||
'class': 'middle'
|
||||
}),
|
||||
E('h3', title)
|
||||
]));
|
||||
|
||||
container_box.appendChild(E('hr'));
|
||||
|
||||
if ('internet' == type) {
|
||||
var container_internet_v4 = E('div');
|
||||
var container_internet_v6 = E('div');
|
||||
|
||||
for(var idx in data) {
|
||||
|
||||
for(var ver in data[idx]) {
|
||||
var classname = ver,
|
||||
suppelements = '',
|
||||
visible = data[idx][ver].visible;
|
||||
|
||||
if('connected' === ver) {
|
||||
classname = data[idx][ver].value ? 'label label-success' : 'label label-danger';
|
||||
data[idx][ver].value = data[idx][ver].value ? _('yes') : _('no');
|
||||
}
|
||||
|
||||
if ('v4' === idx) {
|
||||
|
||||
if ('title' === ver) {
|
||||
container_internet_v4.appendChild(
|
||||
E('p', { 'class': 'mt-2'}, [
|
||||
E('span', {'class': ''}, [ data[idx].title ]),
|
||||
])
|
||||
);
|
||||
continue;
|
||||
}
|
||||
|
||||
if ('addrsv4' === ver) {
|
||||
var addrs = data[idx][ver].value;
|
||||
if(Array.isArray(addrs) && addrs.length) {
|
||||
for(var ip in addrs) {
|
||||
data[idx][ver].value = addrs[ip].split('/')[0];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (visible) {
|
||||
container_internet_v4.appendChild(
|
||||
E('p', { 'class': 'mt-2'}, [
|
||||
E('span', {'class': ''}, [ data[idx][ver].title + ':' ]),
|
||||
E('span', {'class': classname }, [ data[idx][ver].value ]),
|
||||
suppelements
|
||||
])
|
||||
);
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
if ('title' === ver) {
|
||||
container_internet_v6.appendChild(
|
||||
E('p', { 'class': 'mt-2'}, [
|
||||
E('span', {'class': ''}, [ data[idx].title ]),
|
||||
])
|
||||
);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (visible) {
|
||||
container_internet_v6.appendChild(
|
||||
E('p', {'class': 'mt-2'}, [
|
||||
E('span', {'class': ''}, [data[idx][ver].title + ':']),
|
||||
E('span', {'class': classname}, [data[idx][ver].value]),
|
||||
suppelements
|
||||
])
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
container_item.appendChild(container_internet_v4);
|
||||
container_item.appendChild(container_internet_v6);
|
||||
} else {
|
||||
for(var idx in data) {
|
||||
container_item.appendChild(
|
||||
E('p', { 'class': 'mt-2'}, [
|
||||
E('span', {'class': ''}, [ data[idx].title + ':' ]),
|
||||
E('span', {'class': ''}, [ data[idx].value ])
|
||||
])
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
container_box.appendChild(container_item);
|
||||
container_box.appendChild(E('hr'));
|
||||
container_wapper.appendChild(container_box);
|
||||
return container_wapper;
|
||||
},
|
||||
|
||||
renderUpdateWanData: function(data, v6) {
|
||||
|
||||
for (var i = 0; i < data.length; i++) {
|
||||
var ifc = data[i];
|
||||
|
||||
if (v6) {
|
||||
var uptime = ifc.getUptime();
|
||||
this.params.internet.v6.uptime.value = (uptime > 0) ? '%t'.format(uptime) : '-';
|
||||
this.params.internet.v6.ipprefixv6.value = ifc.getIP6Prefix() || '-';
|
||||
this.params.internet.v6.gatewayv6.value = ifc.getGateway6Addr() || '-';
|
||||
this.params.internet.v6.protocol.value= ifc.getI18n() || E('em', _('Not connected'));
|
||||
this.params.internet.v6.addrsv6.value = ifc.getIP6Addrs() || [ '-' ];
|
||||
this.params.internet.v6.dnsv6.value = ifc.getDNS6Addrs() || [ '-' ];
|
||||
this.params.internet.v6.connected.value = ifc.isUp();
|
||||
} else {
|
||||
var uptime = ifc.getUptime();
|
||||
this.params.internet.v4.uptime.value = (uptime > 0) ? '%t'.format(uptime) : '-';
|
||||
this.params.internet.v4.protocol.value= ifc.getI18n() || E('em', _('Not connected'));
|
||||
this.params.internet.v4.gatewayv4.value = ifc.getGatewayAddr() || '0.0.0.0';
|
||||
this.params.internet.v4.connected.value = ifc.isUp();
|
||||
this.params.internet.v4.addrsv4.value = ifc.getIPAddrs() || [ '-'];
|
||||
this.params.internet.v4.dnsv4.value = ifc.getDNSAddrs() || [ '-' ];
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
renderInternetBox: function(data) {
|
||||
|
||||
this.params.internet = {
|
||||
|
||||
v4: {
|
||||
title: _('IPv4 Internet'),
|
||||
|
||||
connected: {
|
||||
title: _('Connected'),
|
||||
visible: true,
|
||||
value: false
|
||||
},
|
||||
|
||||
uptime: {
|
||||
title: _('Uptime'),
|
||||
visible: true,
|
||||
value: '-'
|
||||
},
|
||||
|
||||
protocol: {
|
||||
title: _('Protocol'),
|
||||
visible: true,
|
||||
value: '-'
|
||||
},
|
||||
|
||||
addrsv4: {
|
||||
title: _('IPv4'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
},
|
||||
|
||||
gatewayv4: {
|
||||
title: _('GatewayV4'),
|
||||
visible: true,
|
||||
value: '-'
|
||||
},
|
||||
|
||||
dnsv4: {
|
||||
title: _('DNSv4'),
|
||||
visible: true,
|
||||
value: ['-']
|
||||
}
|
||||
},
|
||||
|
||||
v6: {
|
||||
title: _('IPv6 Internet'),
|
||||
|
||||
connected: {
|
||||
title: _('Connected'),
|
||||
visible: true,
|
||||
value: false
|
||||
},
|
||||
|
||||
uptime: {
|
||||
title: _('Uptime'),
|
||||
visible: true,
|
||||
value: '-'
|
||||
},
|
||||
|
||||
protocol: {
|
||||
title: _('Protocol'),
|
||||
visible: true,
|
||||
value: ' - '
|
||||
},
|
||||
|
||||
ipprefixv6 : {
|
||||
title: _('IPv6 prefix'),
|
||||
visible: true,
|
||||
value: ' - '
|
||||
},
|
||||
|
||||
addrsv6: {
|
||||
title: _('IPv6'),
|
||||
visible: false,
|
||||
value: [ '-' ]
|
||||
},
|
||||
|
||||
gatewayv6: {
|
||||
title: _('GatewayV6'),
|
||||
visible: true,
|
||||
value: '-'
|
||||
},
|
||||
|
||||
dnsv6: {
|
||||
title: _('DNSv6'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
this.renderUpdateWanData(data[0], false);
|
||||
this.renderUpdateWanData(data[1], true);
|
||||
|
||||
return this.renderHtml(this.params.internet, 'internet');
|
||||
},
|
||||
|
||||
renderRouterBox: function(data) {
|
||||
|
||||
var boardinfo = data[2],
|
||||
systeminfo = data[3];
|
||||
|
||||
var datestr = null;
|
||||
|
||||
if (systeminfo.localtime) {
|
||||
var date = new Date(systeminfo.localtime * 1000);
|
||||
|
||||
datestr = '%04d-%02d-%02d %02d:%02d:%02d'.format(
|
||||
date.getUTCFullYear(),
|
||||
date.getUTCMonth() + 1,
|
||||
date.getUTCDate(),
|
||||
date.getUTCHours(),
|
||||
date.getUTCMinutes(),
|
||||
date.getUTCSeconds()
|
||||
);
|
||||
}
|
||||
|
||||
this.params.router = {
|
||||
uptime: {
|
||||
title: _('Uptime'),
|
||||
value: systeminfo.uptime ? '%t'.format(systeminfo.uptime) : null,
|
||||
},
|
||||
|
||||
localtime: {
|
||||
title: _('Local Time'),
|
||||
value: datestr
|
||||
},
|
||||
|
||||
kernel: {
|
||||
title: _('Kernel Version'),
|
||||
value: boardinfo.kernel
|
||||
},
|
||||
|
||||
model: {
|
||||
title: _('Model'),
|
||||
value: boardinfo.model
|
||||
},
|
||||
|
||||
system: {
|
||||
title: _('Architecture'),
|
||||
value: boardinfo.system
|
||||
},
|
||||
|
||||
release: {
|
||||
title: _('Firmware Version'),
|
||||
value: boardinfo.release.description
|
||||
}
|
||||
};
|
||||
|
||||
return this.renderHtml(this.params.router, 'router');
|
||||
},
|
||||
|
||||
render: function(data) {
|
||||
return [this.renderInternetBox(data), this.renderRouterBox(data)];
|
||||
}
|
||||
});
|
|
@ -1,150 +0,0 @@
|
|||
'use strict';
|
||||
'require baseclass';
|
||||
'require rpc';
|
||||
'require network';
|
||||
|
||||
var callLuciDHCPLeases = rpc.declare({
|
||||
object: 'luci-rpc',
|
||||
method: 'getDHCPLeases',
|
||||
expect: { '': {} }
|
||||
});
|
||||
|
||||
return baseclass.extend({
|
||||
title: _('DHCP Devices'),
|
||||
|
||||
params: {},
|
||||
|
||||
load: function() {
|
||||
return Promise.all([
|
||||
callLuciDHCPLeases(),
|
||||
network.getDevices()
|
||||
]);
|
||||
},
|
||||
|
||||
renderHtml: function() {
|
||||
|
||||
var container_wapper = E('div', { 'class': 'router-status-lan dashboard-bg box-s1' });
|
||||
var container_box = E('div', { 'class': 'lan-info devices-list' });
|
||||
var container_devices = E('table', { 'class': 'table assoclist devices-info' }, [
|
||||
E('tr', { 'class': 'tr table-titles dashboard-bg' }, [
|
||||
E('th', { 'class': 'th nowrap' }, _('Hostname')),
|
||||
E('th', { 'class': 'th' }, _('IP Address')),
|
||||
E('th', { 'class': 'th' }, _('MAC')),
|
||||
])
|
||||
]);
|
||||
|
||||
var container_deviceslist = E('table', { 'class': 'table assoclist devices-info' });
|
||||
|
||||
container_box.appendChild(E('div', { 'class': 'title'}, [
|
||||
E('img', {
|
||||
'src': L.resource('view/dashboard/icons/devices.svg'),
|
||||
'width': 55,
|
||||
'title': this.title,
|
||||
'class': 'middle'
|
||||
}),
|
||||
E('h3', this.title)
|
||||
]));
|
||||
|
||||
for(var idx in this.params.lan.devices) {
|
||||
var deivce = this.params.lan.devices[idx];
|
||||
|
||||
container_deviceslist.appendChild(E('tr', { 'class': 'tr cbi-rowstyle-1'}, [
|
||||
|
||||
E('td', { 'class': 'td device-info'}, [
|
||||
E('p', {}, [
|
||||
E('span', { 'class': 'd-inline-block'}, [ deivce.hostname ]),
|
||||
]),
|
||||
]),
|
||||
|
||||
E('td', { 'class': 'td device-info'}, [
|
||||
E('p', {}, [
|
||||
E('span', { 'class': 'd-inline-block'}, [ deivce.ipv4 ]),
|
||||
]),
|
||||
]),
|
||||
|
||||
E('td', { 'class': 'td device-info'}, [
|
||||
E('p', {}, [
|
||||
E('span', { 'class': 'd-inline-block'}, [ deivce.macaddr ]),
|
||||
]),
|
||||
])
|
||||
]));
|
||||
}
|
||||
|
||||
container_box.appendChild(E('hr'));
|
||||
container_box.appendChild(container_devices);
|
||||
container_box.appendChild(E('hr'));
|
||||
container_box.appendChild(container_deviceslist);
|
||||
container_wapper.appendChild(container_box);
|
||||
|
||||
return container_wapper;
|
||||
},
|
||||
|
||||
renderUpdateData: function(data, leases) {
|
||||
|
||||
for(var item in data) {
|
||||
if (/lan|br-lan/ig.test(data[item].ifname) && (typeof data[item].dev == 'object' && !data[item].dev.wireless)) {
|
||||
var lan_device = data[item];
|
||||
var ipv4addr = lan_device.dev.ipaddrs.toString().split('/');
|
||||
|
||||
this.params.lan.ipv4 = ipv4addr[0] || '?';
|
||||
this.params.lan.ipv6 = ipv4addr[0] || '?';
|
||||
this.params.lan.macaddr = lan_device.dev.macaddr || '00:00:00:00:00:00';
|
||||
this.params.lan.rx_bytes = lan_device.dev.stats.rx_bytes ? '%.2mB'.format(lan_device.dev.stats.rx_bytes) : '-';
|
||||
this.params.lan.tx_bytes = lan_device.dev.stats.tx_bytes ? '%.2mB'.format(lan_device.dev.stats.tx_bytes) : '-';
|
||||
}
|
||||
}
|
||||
|
||||
var devices = [];
|
||||
leases.map(function(lease) {
|
||||
devices[lease.expires] = {
|
||||
hostname: lease.hostname || '?',
|
||||
ipv4: lease.ipaddr || '-',
|
||||
macaddr: lease.macaddr || '00:00:00:00:00:00',
|
||||
};
|
||||
});
|
||||
this.params.lan.devices = devices;
|
||||
},
|
||||
|
||||
renderLeases: function(data) {
|
||||
|
||||
var leases = Array.isArray(data[0].dhcp_leases) ? data[0].dhcp_leases : [];
|
||||
|
||||
this.params.lan = {
|
||||
ipv4: {
|
||||
title: _('IPv4'),
|
||||
value: '?'
|
||||
},
|
||||
|
||||
macaddr: {
|
||||
title: _('Mac'),
|
||||
value: '00:00:00:00:00:00'
|
||||
},
|
||||
|
||||
rx_bytes: {
|
||||
title: _('Upload'),
|
||||
value: '-'
|
||||
},
|
||||
|
||||
tx_bytes: {
|
||||
title: _('Download'),
|
||||
value: '-'
|
||||
},
|
||||
|
||||
devices: {
|
||||
title: _('Devices'),
|
||||
value: []
|
||||
}
|
||||
};
|
||||
|
||||
this.renderUpdateData(data[1], leases);
|
||||
|
||||
return this.renderHtml();
|
||||
},
|
||||
|
||||
render: function(data) {
|
||||
if (L.hasSystemFeature('dnsmasq') || L.hasSystemFeature('odhcpd'))
|
||||
return this.renderLeases(data);
|
||||
|
||||
return E([]);
|
||||
}
|
||||
});
|
|
@ -1,269 +0,0 @@
|
|||
'use strict';
|
||||
'require baseclass';
|
||||
'require dom';
|
||||
'require network';
|
||||
'require rpc';
|
||||
|
||||
return baseclass.extend({
|
||||
|
||||
title: _('Wireless'),
|
||||
|
||||
params: [],
|
||||
|
||||
load: function() {
|
||||
return Promise.all([
|
||||
network.getWifiDevices(),
|
||||
network.getWifiNetworks(),
|
||||
network.getHostHints()
|
||||
]).then(function(radios_networks_hints) {
|
||||
var tasks = [];
|
||||
|
||||
for (var i = 0; i < radios_networks_hints[1].length; i++)
|
||||
tasks.push(L.resolveDefault(radios_networks_hints[1][i].getAssocList(), []).then(L.bind(function(net, list) {
|
||||
net.assoclist = list.sort(function(a, b) { return a.mac > b.mac });
|
||||
}, this, radios_networks_hints[1][i])));
|
||||
|
||||
return Promise.all(tasks).then(function() {
|
||||
return radios_networks_hints;
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
renderHtml: function() {
|
||||
|
||||
var container_wapper = E('div', { 'class': 'router-status-wifi dashboard-bg box-s1' });
|
||||
var container_box = E('div', { 'class': 'wifi-info devices-list' });
|
||||
var container_radio = E('div', { 'class': 'settings-info' });
|
||||
var container_radio_item;
|
||||
|
||||
container_box.appendChild(E('div', { 'class': 'title'}, [
|
||||
E('img', {
|
||||
'src': L.resource('view/dashboard/icons/wireless.svg'),
|
||||
'width': 55,
|
||||
'title': this.title,
|
||||
'class': 'middle'
|
||||
}),
|
||||
E('h3', this.title)
|
||||
]));
|
||||
|
||||
container_box.appendChild(E('hr'));
|
||||
|
||||
for (var i =0; i < this.params.wifi.radios.length; i++) {
|
||||
|
||||
container_radio_item = E('div', { 'class': 'radio-info' })
|
||||
|
||||
for(var idx in this.params.wifi.radios[i]) {
|
||||
var classname = idx,
|
||||
radio = this.params.wifi.radios[i];
|
||||
|
||||
if (!radio[idx].visible) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ('actived' === idx) {
|
||||
classname = radio[idx].value ? 'label label-success' : 'label label-danger';
|
||||
radio[idx].value = radio[idx].value ? _('yes') : _('no');
|
||||
}
|
||||
|
||||
container_radio_item.appendChild(
|
||||
E('p', {}, [
|
||||
E('span', { 'class': ''}, [ radio[idx].title + ':']),
|
||||
E('span', { 'class': classname }, [ radio[idx].value ]),
|
||||
])
|
||||
);
|
||||
}
|
||||
|
||||
container_radio.appendChild(container_radio_item);
|
||||
}
|
||||
|
||||
container_box.appendChild(container_radio);
|
||||
|
||||
var container_devices = E('table', { 'class': 'table assoclist devices-info' }, [
|
||||
E('tr', { 'class': 'tr table-titles dashboard-bg' }, [
|
||||
E('th', { 'class': 'th nowrap' }, _('Hostname')),
|
||||
E('th', { 'class': 'th' }, _('Wireless')),
|
||||
E('th', { 'class': 'th' }, _('Signal')),
|
||||
E('th', { 'class': 'th' }, '%s / %s'.format( _('Up.'), _('Down.')))
|
||||
])
|
||||
]);
|
||||
|
||||
var container_devices_item;
|
||||
var container_devices_list = E('table', { 'class': 'table assoclist devices-info' });
|
||||
|
||||
for (var i =0; i < this.params.wifi.devices.length; i++) {
|
||||
container_devices_item = E('tr', { 'class': 'tr cbi-rowstyle-1' });
|
||||
|
||||
for(var idx in this.params.wifi.devices[i]) {
|
||||
var device = this.params.wifi.devices[i];
|
||||
|
||||
if (!device[idx].visible) {
|
||||
continue;
|
||||
}
|
||||
|
||||
var container_content;
|
||||
|
||||
if ('progress' == idx) {
|
||||
container_content = E('div', { 'class' : 'td device-info' }, [
|
||||
E('div', { 'class': 'progress' }, [
|
||||
E('div', { 'class': 'progress-bar ' + device[idx].value.style, role: 'progressbar', style: 'width:'+device[idx].value.qualite+'%', 'aria-valuenow': device[idx].value.qualite, 'aria-valuemin': 0, 'aria-valuemax': 100 }),
|
||||
])
|
||||
]);
|
||||
} else if ('rate' == idx) {
|
||||
container_content = E('td', { 'class': 'td device-info' }, [
|
||||
E('p', {}, [
|
||||
E('span', { 'class': ''}, [ device[idx].value.rx ]),
|
||||
E('br'),
|
||||
E('span', { 'class': ''}, [ device[idx].value.tx ])
|
||||
])
|
||||
]);
|
||||
} else {
|
||||
container_content = E('td', { 'class': 'td device-info'}, [
|
||||
E('p', {}, [
|
||||
E('span', { 'class': ''}, [ device[idx].value ]),
|
||||
])
|
||||
]);
|
||||
}
|
||||
|
||||
container_devices_item.appendChild(container_content);
|
||||
}
|
||||
|
||||
container_devices_list.appendChild(container_devices_item);
|
||||
}
|
||||
|
||||
container_devices.appendChild(container_devices_list);
|
||||
container_box.appendChild(E('hr'));
|
||||
container_box.appendChild(container_devices);
|
||||
container_box.appendChild(container_devices_list);
|
||||
container_wapper.appendChild(container_box);
|
||||
|
||||
return container_wapper;
|
||||
},
|
||||
|
||||
renderUpdateData: function(radios, networks, hosthints) {
|
||||
|
||||
for (var i = 0; i < radios.sort(function(a, b) { a.getName() > b.getName() }).length; i++) {
|
||||
var network_items = networks.filter(function(net) { return net.getWifiDeviceName() == radios[i].getName() });
|
||||
|
||||
for (var j = 0; j < network_items.length; j++) {
|
||||
var net = network_items[j],
|
||||
is_assoc = (net.getBSSID() != '00:00:00:00:00:00' && net.getChannel() && !net.isDisabled()),
|
||||
chan = net.getChannel(),
|
||||
freq = net.getFrequency(),
|
||||
rate = net.getBitRate();
|
||||
|
||||
this.params.wifi.radios.push(
|
||||
{
|
||||
ssid : {
|
||||
title: _('SSID'),
|
||||
visible: true,
|
||||
value: net.getActiveSSID() || '?'
|
||||
},
|
||||
|
||||
actived : {
|
||||
title: _('Active'),
|
||||
visible: true,
|
||||
value: !net.isDisabled()
|
||||
},
|
||||
|
||||
chan : {
|
||||
title: _('Channel'),
|
||||
visible: true,
|
||||
value: chan ? '%d (%.3f %s)'.format(chan, freq, _('GHz')) : '-'
|
||||
},
|
||||
|
||||
rate : {
|
||||
title: _('Bitrate'),
|
||||
visible: true,
|
||||
value: rate ? '%d %s'.format(rate, _('Mbit/s')) : '-'
|
||||
},
|
||||
|
||||
bssid : {
|
||||
title: _('BSSID'),
|
||||
visible: true,
|
||||
value: is_assoc ? (net.getActiveBSSID() || '-') : '-'
|
||||
},
|
||||
|
||||
encryption : {
|
||||
title: _('Encryption'),
|
||||
visible: true,
|
||||
value: is_assoc ? net.getActiveEncryption() : '-'
|
||||
},
|
||||
|
||||
associations : {
|
||||
title: _('Devices Connected'),
|
||||
visible: true,
|
||||
value: is_assoc ? (net.assoclist.length || '0') : 0
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
for (var i = 0; i < networks.length; i++) {
|
||||
for (var k = 0; k < networks[i].assoclist.length; k++) {
|
||||
var bss = networks[i].assoclist[k],
|
||||
name = hosthints.getHostnameByMACAddr(bss.mac);
|
||||
|
||||
var progress_style;
|
||||
var q = Math.min((bss.signal + 110) / 70 * 100, 100);
|
||||
|
||||
if (q == 0 || q < 25)
|
||||
progress_style = 'bg-danger';
|
||||
else if (q < 50)
|
||||
progress_style = 'bg-warning';
|
||||
else if (q < 75)
|
||||
progress_style = 'bg-success';
|
||||
else
|
||||
progress_style = 'bg-success';
|
||||
|
||||
this.params.wifi.devices.push(
|
||||
{
|
||||
hostname : {
|
||||
title: _('Hostname'),
|
||||
visible: true,
|
||||
value: name || '?'
|
||||
},
|
||||
|
||||
ssid : {
|
||||
title: _('SSID'),
|
||||
visible: true,
|
||||
value: networks[i].getActiveSSID()
|
||||
},
|
||||
|
||||
progress : {
|
||||
title: _('Channel'),
|
||||
visible: true,
|
||||
value: {
|
||||
qualite: q,
|
||||
style: progress_style
|
||||
}
|
||||
},
|
||||
|
||||
rate : {
|
||||
title: _('Bitrate'),
|
||||
visible: true,
|
||||
value: {
|
||||
rx: '%s'.format('%.2mB'.format(bss.rx.bytes)),
|
||||
tx: '%s'.format('%.2mB'.format(bss.tx.bytes)),
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
render: function(data) {
|
||||
|
||||
this.params.wifi = {
|
||||
radios: [],
|
||||
devices: []
|
||||
};
|
||||
|
||||
this.renderUpdateData(data[0], data[1], data[2]);
|
||||
|
||||
if (this.params.wifi.radios.length)
|
||||
return this.renderHtml();
|
||||
return E([]);
|
||||
}
|
||||
});
|
|
@ -1,110 +0,0 @@
|
|||
'use strict';
|
||||
'require view';
|
||||
'require dom';
|
||||
'require poll';
|
||||
'require fs';
|
||||
'require network';
|
||||
|
||||
document.querySelector('head').appendChild(E('link', {
|
||||
'rel': 'stylesheet',
|
||||
'type': 'text/css',
|
||||
'href': L.resource('view/dashboard/css/custom.css')
|
||||
}));
|
||||
|
||||
function invokeIncludesLoad(includes) {
|
||||
var tasks = [], has_load = false;
|
||||
|
||||
for (var i = 0; i < includes.length; i++) {
|
||||
if (typeof(includes[i].load) == 'function') {
|
||||
tasks.push(includes[i].load().catch(L.bind(function() {
|
||||
this.failed = true;
|
||||
}, includes[i])));
|
||||
|
||||
has_load = true;
|
||||
}
|
||||
else {
|
||||
tasks.push(null);
|
||||
}
|
||||
}
|
||||
|
||||
return has_load ? Promise.all(tasks) : Promise.resolve(null);
|
||||
}
|
||||
|
||||
function startPolling(includes, containers) {
|
||||
var step = function() {
|
||||
return network.flushCache().then(function() {
|
||||
return invokeIncludesLoad(includes);
|
||||
}).then(function(results) {
|
||||
for (var i = 0; i < includes.length; i++) {
|
||||
var content = null;
|
||||
|
||||
if (includes[i].failed)
|
||||
continue;
|
||||
|
||||
if (typeof(includes[i].render) == 'function')
|
||||
content = includes[i].render(results ? results[i] : null);
|
||||
else if (includes[i].content != null)
|
||||
content = includes[i].content;
|
||||
|
||||
if (content != null) {
|
||||
|
||||
if (i > 1) {
|
||||
dom.append(containers[1], content);
|
||||
} else {
|
||||
containers[i].parentNode.style.display = '';
|
||||
containers[i].parentNode.classList.add('fade-in');
|
||||
containers[i].parentNode.classList.add('Dashboard');
|
||||
dom.content(containers[i], content);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var ssi = document.querySelector('div.includes');
|
||||
if (ssi) {
|
||||
ssi.style.display = '';
|
||||
ssi.classList.add('fade-in');
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
return step().then(function() {
|
||||
poll.add(step);
|
||||
});
|
||||
}
|
||||
|
||||
return view.extend({
|
||||
load: function() {
|
||||
return L.resolveDefault(fs.list('/www' + L.resource('view/dashboard/include')), []).then(function(entries) {
|
||||
return Promise.all(entries.filter(function(e) {
|
||||
return (e.type == 'file' && e.name.match(/\.js$/));
|
||||
}).map(function(e) {
|
||||
return 'view.dashboard.include.' + e.name.replace(/\.js$/, '');
|
||||
}).sort().map(function(n) {
|
||||
return L.require(n);
|
||||
}));
|
||||
});
|
||||
},
|
||||
|
||||
render: function(includes) {
|
||||
var rv = E([]), containers = [];
|
||||
|
||||
for (var i = 0; i < includes.length - 1; i++) {
|
||||
|
||||
var container = E('div', { 'class': 'section-content' });
|
||||
|
||||
rv.appendChild(E('div', { 'class': 'cbi-section-' + i, 'style': 'display:none' }, [
|
||||
container
|
||||
]));
|
||||
|
||||
containers.push(container);
|
||||
}
|
||||
|
||||
return startPolling(includes, containers).then(function() {
|
||||
return rv;
|
||||
});
|
||||
},
|
||||
|
||||
handleSaveApply: null,
|
||||
handleSave: null,
|
||||
handleReset: null
|
||||
});
|
|
@ -1,215 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-08-27 12:56+0000\n"
|
||||
"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n"
|
||||
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/bg/>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.8.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Активен"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Архитектура"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Битрейт"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Канал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Свързан"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP Устройства"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Табло"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Устройства"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Свързани устройства"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Долу."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Сваляне"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Криптиране"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Версия на firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "ГейтауейV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Разрешаване достъп до DHCP статус екран"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Разрешаване достъп до главен статус екран"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Разрешаване достъп до екран със системни маршрути"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Разрешаване достъп до екран с безжичен статус"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Хостнейм"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP адрес"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Интернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Интернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 префикс"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Интернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Версия на ядрото"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Местно време"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Модел"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Не е свързан"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Протокол"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Сигнал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Система"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Горе."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Качване"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Ъптайм"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Безжичен"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "не"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "да"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Свързан от"
|
|
@ -1,219 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-10-08 17:53+0000\n"
|
||||
"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n"
|
||||
"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/lucimodulesluci-mod-dashboard/bn_BD/>\n"
|
||||
"Language: bn_BD\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.9-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "হোস্টনেম"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "আইপি এড্রেস"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "প্রোটোকল"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "সংকেত"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "সিস্টেম"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
|
@ -1,219 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-03-08 10:38+0000\n"
|
||||
"Last-Translator: Roger Pueyo Centelles <roger.pueyo@guifi.net>\n"
|
||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/ca/>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.16.2-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arquitectura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositius"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Puja"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-01-18 00:56+0000\n"
|
||||
"Last-Translator: Lukáš Wagner <lukaswagner1@gmail.com>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktivní"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Přenosová rychlost"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanál"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Připojeno"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP zařízení"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Řídicí panel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Zařízení"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Připojená zařízení"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Šifrování"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Verze firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Brána v4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Brána v6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Poskytnout přístup k zobrazení stavu DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Poskytnout přístup k zobrazení stavu bezdrátové sítě"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Název počítače"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP adresa"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Verze kernelu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Místní čas"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nepřipojeno"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signál"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Systém"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Doba běhu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Bezdrátová síť"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "ne"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ano"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Připojeno od"
|
|
@ -1,220 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-12-08 22:46+0000\n"
|
||||
"Last-Translator: drax red <drax@outlook.dk>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/da/>\n"
|
||||
"Language: da\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.10-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arkitektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Tilsluttet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-enheder"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Dashboard"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Enheder"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Enheder tilsluttet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Ned."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Kryptering"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware-version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Giver adgang til visning af DHCP-status"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Giver adgang til hovedstatusdisplayet"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Giv adgang til systemets rutestatus"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Giv adgang til trådløs statusvisning"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Værtsnavn"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-adresse"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6-præfiks"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kerneversion"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Lokal tid"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Ikke tilsluttet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Op."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Oppetid"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Trådløs"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nej"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Tilsluttet siden"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-20 16:23+0000\n"
|
||||
"Last-Translator: ssantos <ssantos@web.de>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/de/>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.18.1\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Verbunden"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-Geräte"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Übersicht"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Geräte"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Verbundene Geräte"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Runter."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Herunterladen"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Verschlüsselung"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware-Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Zugriff auf die DHCP-Statusanzeige gewähren"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Zugriff zur Hauptstatusanzeige gewähren"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Zugriff auf den Status der Systemroute gewähren"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Zugriff auf Wireless-Statusanzeige gewähren"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-Adresse"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4-Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6-Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6-Präfix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kernel-Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Ortszeit"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nicht verbunden"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Aktiv."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Hochladen"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Laufzeit"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "WLAN"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nein"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Verbunden seit"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-05-15 17:04+0000\n"
|
||||
"Last-Translator: MarioK239 <marios.k239@gmail.com>\n"
|
||||
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.13-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Ενεργό"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Αρχιτεκτονική"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Ρυθμός bit"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Κανάλι"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Συνδεδεμένο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Συσκευές DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Ταμπλό"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Συσκευές"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Συσκευές Συνδεδεμένες"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Κάτω."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Λήψη"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Κρυπτογράφηση"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Έκδοση υλικολογισμικού"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Παραχωρήστε πρόσβαση στην οθόνη κατάστασης DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Παραχωρήστε πρόσβαση στην κύρια οθόνη κατάστασης"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Παραχωρήστε πρόσβαση στην κατάσταση διαδρομής συστήματος"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Παραχωρήστε πρόσβαση στην οθόνη ασύρματης κατάστασης"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Διεύθυνση IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Ίντερνετ IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Ίντερνετ IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Πρόθεμα IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Διαδίκτυο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Έκδοση kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Τοπική ώρα"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Μοντέλο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Μη συνδεδεμένο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Πρωτόκολλο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Σήμα"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Σύστημα"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Πάνω."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Μεταφόρτωση"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Χρόνος λειτουργίας"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Ασύρματο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "όχι"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ναί"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Συνδεδεμένο από"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-06-24 07:45+0000\n"
|
||||
"Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n"
|
||||
"Language-Team: English <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/en/>\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.7.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architecture"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Channel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Connected"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP Devices"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Dashboard"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Devices"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Devices Connected"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Down."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Encryption"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Grant access to DHCP status display"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Grant access to main status display"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Grant access to the system route status"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Grant access to wireless status display"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP Address"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kernel Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Local Time"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Not connected"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Up."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Uptime"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "no"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "yes"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Connected since"
|
|
@ -1,223 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-04-17 08:10+0000\n"
|
||||
"Last-Translator: Juan <benitesjn@gmail.com>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arquitectura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Tasa de bits"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispositivos DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Tablero"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositivos"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispositivos conectados"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Desc."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Descargar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Encriptación"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versión del firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Otorgar acceso a la pantalla de estado de DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Otorgar acceso a la pantalla de estado principal"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
#, fuzzy
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Otorgar acceso al estado de la ruta del sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Otorgar acceso a la pantalla de estado de Wi-Fi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nombre de host"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Dirección IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefijo IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versión del núcleo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Hora local"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "No conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocolo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Señal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Carga"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Cargar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Tiempo de actividad"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "no"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "sí"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Conectado desde"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-03-13 23:17+0000\n"
|
||||
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
|
||||
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.12-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktiivinen"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arkkitehtuuri"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bittinopeus"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanava"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Yhdistetty"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-laitteet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Kojelauta"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Laitteet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Yhdisteyt laitteet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Lataus"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Lataus"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Salaus"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Laiteohjelmiston versio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Salli pääsy DHCP-tilanäyttöön"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Salli pääsy päätilanäyttöön"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Salli pääsy järjestelmän reitin tilaan"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Salli pääsy langattoman tilan näyttöön"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Laitenimi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-osoite"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6-etuliite"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Ytimen versio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Paikallinen aika"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Malli"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Ei yhdistetty"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokolla"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signaali"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Järjestelmä"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Lähetys"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Lähetys"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Toiminta-aika"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Langaton"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "ei"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "kyllä"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Yhdistetty lähtien"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-11 13:51+0000\n"
|
||||
"Last-Translator: Edouard Choinière <e-c@live.ca>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.18-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architecture"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Débit"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Connecté"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Appareils DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNS v6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Tableau de bord"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Appareils"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Appareils connectés"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Déconnecté."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Télécharger"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Chiffrement"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Version du micrologiciel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "Ghz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Passerelle V4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Passerelle V6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Permettre l'accès à l'affichage de l'état DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Permettre l'accès à l'affichage de l'état principal"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Autoriser l'accès à l'état de l'itinéraire du système"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Permettre l'accès au status WIFI"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nom d'hôte"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Adresse IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Préfixe IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Version du noyau"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Heure locale"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modèle"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Non connecté"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocole"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Système"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Connecté."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Téléverser"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Disponibilité"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Sans fil"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "non"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "oui"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Connecté depuis"
|
|
@ -1,216 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
|
@ -1,215 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
|
@ -1,223 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-08-12 12:55+0000\n"
|
||||
"Last-Translator: Tudós Péter <tudi.sk@gmail.com>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/hu/>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.8-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktív"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektúra"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitráta"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Csatorna"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Csatlakoztatott"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP eszközök"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Kezelőfelület"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Eszközök"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Csatlakozott eszközök"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Le."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Letöltés"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Titkosítás"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware verzió"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Átjáró V4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Átjáró V6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Gépnév"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP cím"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kernel Verzió"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Helyi idő"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nincs csatlakoztatva"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Jel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Rendszer"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Fel."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Feltöltés"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Futási idő"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Vezeték nélküli"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "igen"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Ennyi ideje csatlakoztatva"
|
|
@ -1,220 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2023-03-12 20:08+0000\n"
|
||||
"Last-Translator: Biangkerok32 <appblok@gmail.com>\n"
|
||||
"Language-Team: Indonesian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/id/>\n"
|
||||
"Language: id\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.16.2-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arsitektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Terhubung"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Perangkat DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Dasbor"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Perangkat"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Perangkat Terhubung"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Turun."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Unduh"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Enkripsi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versi Firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Berikan akses ke tampilan status DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Berikan akses ke tampilan status utama"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Berikan akses ke status rute sistem"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Berikan akses ke tampilan status wifi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Alamat IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versi Kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Waktu setempat"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/detik"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Tidak terhubung"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sinyal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Naik."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Waktu terkini"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Wifi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "tidak"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ya"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Terhubung sejak"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-12-26 08:48+0000\n"
|
||||
"Last-Translator: Daniele Luisetto <daniele.luisetto1@gmail.com>\n"
|
||||
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/it/>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architettura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canale"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Connesso"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispositivi DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Pannello di controllo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositivi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispositivi connessi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Disconesso."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Crittografia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versione del Firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Consentire la visualizzazione dello stato del DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Consentire la visualizzazione dello stato generale"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Consentire l'accesso allo stato delle route di sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Consentire la visualizzazione dello stato del wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nome host"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Indirizzo IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefisso IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versione del Kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Data/ora locale"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modello"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Non connesso"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocollo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Segnale"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "SIstema"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "In funzione."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Carica"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Tempo di attività"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "no"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "sì"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Connesso da"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-06-11 06:32+0000\n"
|
||||
"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n"
|
||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/ja/>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.7-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "アクティブ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "アーキテクチャ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "ビットレート"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "チャンネル"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "接続中"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP デバイス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNS (v4)"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNS (v6)"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "ダッシュボード"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "デバイス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "接続中のデバイス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "ダウン"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "ダウンロード"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "暗号化"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "ファームウェア バージョン"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "ゲートウェイ (v4)"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "ゲートウェイ (v6)"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "DHCPステータス表示へのアクセスを許可"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "メインステータス表示へのアクセスを許可"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "システムルートステータスへのアクセスを許可"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "無線ステータス表示へのアクセスを許可"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "ホスト名"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP アドレス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 インターネット"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 インターネット"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 プレフィックス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "インターネット"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "カーネル バージョン"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "時刻"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbps"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "モデル"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "未接続"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "プロトコル"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "信号強度"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "システム"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "アップ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "アップロード"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "稼働時間"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "無線"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "いいえ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "はい"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "接続時間"
|
|
@ -1,219 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-01-10 10:50+0000\n"
|
||||
"Last-Translator: TheNoFace <fprhqkrtk303@naver.com>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "활성화"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "아키텍처"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "비트레이트"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "채널"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "연결됨"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP 장치"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "대시보드"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "장치"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "연결된 장치"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "다운."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "다운로드"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "암호화"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "펌웨어 버전"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "게이트웨이 IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "게이트웨이 IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "DHCP 상태 표시 접근을 허가합니다"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "기본 상태 표시 접근을 허가합니다"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "시스템 라우트 상태 접근을 허가합니다"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "무선 상태 표시 접근을 허가합니다"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "호스트명"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP 주소"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 인터넷"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 인터넷"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 접두사"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "인터넷"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "커널 버전"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "로컬 시간"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "모델"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "연결되지 않음"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "프로토콜"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "시그널"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "시스템"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "업."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "업로드"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "가동시간"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "무선"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "아니오"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "예"
|
|
@ -1,215 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: mr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
|
@ -1,215 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: ms\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
|
@ -1,230 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-11-08 00:12+0000\n"
|
||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/nb_NO/>\n"
|
||||
"Language: nb_NO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.14.2\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
#, fuzzy
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arkitektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Tilkoblet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Oversikt"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
#, fuzzy
|
||||
msgid "Devices Connected"
|
||||
msgstr "Tilkoblede enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Nede."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Last ned"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Kryptering"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Fastvareversjon"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
#, fuzzy
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
#, fuzzy
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Innvilg tilgang til DHCP-statusskjerm"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Innvilg tilgang til hovedstatusskjerm"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Innvilg tilgang til systemrutestatus"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Innvilg tilgang til trådløs statusskjerm"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Vertsnavn"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-adresse"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4-Internett"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6-Internett"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6-prefiks"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internett"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kjerneversjon"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Lokal tid"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
#, fuzzy
|
||||
msgid "Mac"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Ikke tilkoblet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#, fuzzy
|
||||
msgid "Up."
|
||||
msgstr "Oppe."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
#, fuzzy
|
||||
msgid "Upload"
|
||||
msgstr "Last opp"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Oppetid"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
#, fuzzy
|
||||
msgid "Wireless"
|
||||
msgstr "Trådløst"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nei"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Tilkoblet siden"
|
|
@ -1,219 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-11 03:31+0000\n"
|
||||
"Last-Translator: xtz1983 <xtz1983@gmail.com>\n"
|
||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/nl/>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.18-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architectuur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanaal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Verbonden"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP Apparaten"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Dashboard"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Apparaten"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Verbonden Apparaten"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Uitgeschakeld."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Versleuteling"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware Versie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Toegang verlenen tot weergave van DHCP-status"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Toegang verlenen tot hoofdstatusweergave"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Toegang verlenen tot de status van het systeemrouteringsproces"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Toegang verlenen tot weergave van draadloze status"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostnaam"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP Adres"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kernel Versie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Lokale tijd"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Geen verbinding"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signaal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Systeem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Boven."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Uploaden"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Bedrijfstijd"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Draadloos"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nee"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
|
@ -1,223 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-03 11:51+0000\n"
|
||||
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
|
||||
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/pl/>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.18-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktywny"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Szybkość transmisji"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanał"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Połączony"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Urządzenia DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Info"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Urządzenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Podłączone urządzenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Pobieranie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Pobierz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Szyfrowanie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Wersja firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "BramaV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "BramaV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Udziel dostępu do wyświetlania statusu DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Udziel dostępu do głównego wyświetlacza stanu"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Udziel dostępu do statusu systemowych tras"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Udziel dostępu do wyświetlania statusu sieci bezprzewodowej"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nazwa hosta"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Adres IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefiks IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Wersja kernela"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Czas lokalny"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nie podłączony"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokół"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sygnał"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Wysyłanie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Wysyłanie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Czas pracy"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Sieć bezprzewodowa"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "tak"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Czas połączenia"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-11-30 14:48+0000\n"
|
||||
"Last-Translator: Gonçalo Pereira <goncalo_pereira@outlook.pt>\n"
|
||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/pt/>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.15-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arquitectura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Taxa de bits"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Ligado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispositivos DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Painel de Controlo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositivos"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispositivos ligados"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Em Baixo."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Descarregar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Encriptação"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versão do firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Conceder acesso à visualização do estado do DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Conceder acesso à visualização do estado principal"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Conceder acesso ao estado da rota do sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Conceda acesso à visualização da condição do wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nome do equipamento"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Endereço IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefixo IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versão do kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Hora local"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Não conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocolo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sinal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Ativo."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Enviar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Tempo de atividade"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Rede sem fios"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "não"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "sim"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Ligado desde"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-05 03:51+0000\n"
|
||||
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/lucimodulesluci-mod-dashboard/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.18-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arquitetura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Taxa de bits"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispositivos DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Painel de Controle"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositivos"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispositivos conectados"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Baix."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Baixar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Criptografia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versão do firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Conceda acesso à visualização da condição do DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Conceda acesso à exibição do status principal"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Conceda acesso à condição da rota do sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Conceda acesso à visualização da condição do wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nome do equipamento"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Endereço IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefixo IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versão do kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Hora local"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Não conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocolo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sinal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Envio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Envio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Tempo de atividade"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Rede sem fio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "não"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "sim"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Conectado desde"
|
|
@ -1,223 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-11-04 20:04+0000\n"
|
||||
"Last-Translator: Simona Iacob <s@zp1.net>\n"
|
||||
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.14.2-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Activ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arhitectură"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Rata de biți"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Conectat"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispozitive DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Tabloul de bord"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispozitive"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispozitive conectate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Oprit."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Descărcați"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Criptare"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versiunea Firmware-ului"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Acordați acces la afișarea stării DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Acordați acces la afișarea principală a stării"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Acordați accesul la starea rutei sistemului"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Acordați acces la afișarea stării wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Numele gazdei ( hostname )"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Adresa IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefix IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versiunea Kernel-ului"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Ora locală"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nu este conectat"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Semnal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Sus."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Încărcați"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Timp de funcționare"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Fără fir"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "da"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Conectat de la"
|
|
@ -1,223 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-04-16 06:28+0000\n"
|
||||
"Last-Translator: st7105 <st7105@gmail.com>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/ru/>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Архитектура"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Битрейт"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Канал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Подключен"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Устройства DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Информационная панель"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Устройства"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Подключенные устройства"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Скач."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Скачать"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Шифрование"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Версия прошивки"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "ГГц"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Предоставить доступ к просмотру состояния DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Предоставить доступ к отображению основного состояния"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Предоставить доступ к состоянию системных маршрутов"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Предоставить доступ к просмотру состояния беспроводных сетей"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Имя хоста"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-адрес"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Интернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Интернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Префикс IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Интернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Версия ядра"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Время"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Мбит/с"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Модель"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Не подключен"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Протокол"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Сигнал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Система"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Загр."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Загрузить"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Время работы"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Беспроводная сеть"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "нет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "да"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Подключено с"
|
|
@ -1,219 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-15 17:44+0000\n"
|
||||
"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n"
|
||||
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/sk/>\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.18.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektúra"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitová rýchlosť"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanál"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Pripojené"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Zariadenia DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Zariadenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Pripojené zariadenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Šifrovanie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Verzia firmvéru"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Brána v4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Brána v6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Udeliť prístup k zobrazeniu stavu DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Názov hostiteľa"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Adresa IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Verzia jadra"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Miestny čas"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nepripojené"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signál"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Systém"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Doba spustenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Bezdrôtová sieť"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "áno"
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-12-04 12:08+0000\n"
|
||||
"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n"
|
||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/sv/>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.15-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arkitektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bithastighet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Ansluten"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Instrumentbräda"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Enheter anslutna"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Ner."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Nedladdning"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Kryptering"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Ge åtkomst till DHCP-statusvisning"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Ge åtkomst till huvudstatusvisning"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Ladda upp"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Ansluten sedan"
|
|
@ -1,208 +0,0 @@
|
|||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
|
@ -1,222 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-05-11 11:34+0000\n"
|
||||
"Last-Translator: semih <semiht@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/tr/>\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.7-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Etkin"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Mimari"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bit hızı"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Bağlandı"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP Aygıtları"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Denetim Paneli"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Aygıtlar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Bağlı Aygıtlar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "İnd."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "İndir"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Şifreleme"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Ürün Yazılımı Sürümü"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "DHCP durum ekranına erişim izni verin"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Ana durum ekranına erişim izni verin"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Sistem yönlendirme durumuna erişim izni verin"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Kablosuz durum ekranına erişim izni verin"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Sunucu adı"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP Adresi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 İnternet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 İnternet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 ön eki"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "İnternet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Çekirdek Sürümü"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Yerel Zaman"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Bağlı değil"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sinyal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Yük."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Yükleme"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Çalışma süresi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Kablosuz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "hayır"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "evet"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Şu tarihten beri bağlı"
|
|
@ -1,223 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-11-04 17:37+0000\n"
|
||||
"Last-Translator: Paul Dee <itsascambutmailmeanyway+weblate@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/uk/>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.9-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Активний"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Архітектура"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Бітрейт"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Канал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Підключений"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-пристрої"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Панелі"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Пристрої"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Пристрої, підключені"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Вниз."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Завантажити"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Шифрування"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Версія прошивки"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "Ггц"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Шлюз V4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Шлюз v6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Надання доступу до відображення стану DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Надання доступу до основного відображення стану"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Надати доступ до статусу системних маршрутів"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Надати доступ до відображення статусу бездротових мереж"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Ім'я хоста"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-адреса"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Інтернет IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Інтернет IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Префікс IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Інтернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Версія ядра"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Місцевий час"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Мбіт/с"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Модель"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Не підключено"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Протокол"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Сигнал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Система"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Вгору."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Завантажити"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Час безвідмовної роботи"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Бездротові мережі"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "Ні"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "так"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Під'єднано з"
|
|
@ -1,219 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-20 13:52+0000\n"
|
||||
"Last-Translator: Quy <haonguyen93056@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/vi/>\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.18.1\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Kích hoạt"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Kiến trúc"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kênh"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Đã kết nối"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Thiết bị DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Màn hình chính"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Các thiết bị"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Thiết bị đã kết nối"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Sập."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Tải xuống"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Mã hóa"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Phiên bản firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Cấp quyền truy cập vào màn hình trạng thái DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Cấp quyền truy cập vào màn hình trạng thái chính"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Cấp quyền truy cập vào trạng thái tuyến đường hệ thống"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Cấp quyền truy cập vào hiển thị trạng thái không dây"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Tên máy chủ (hostname)"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Địa chỉ IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Phiên bản Kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Giờ địa phương"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Không kết nối"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Giao thức"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Tín hiệu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Hệ thống"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Đã mở."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Tải lên"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Thời gian hoạt động"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Không dây"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "Không"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "có"
|
|
@ -1,220 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2022-05-07 19:19+0000\n"
|
||||
"Last-Translator: 王攀 <41330784@qq.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/lucimodulesluci-mod-dashboard/zh_Hans/>\n"
|
||||
"Language: zh_Hans\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.12.1\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "活跃"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "架构"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "速率"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "信道"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "已连接"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP 设备"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "概览"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "设备"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "已连接设备"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "下行."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "下载"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "加密"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "固件版本"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "IPv4 网关"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "IPv6 网关"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "授予访问 DHCP 状态展示的权限"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "授予访问主状态展示的权限"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "授予访问系统路由状态的权限"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "授予访问无线状态展示的权限"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "主机名"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP 地址"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 网络"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 网络"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 前缀"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "互联网"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "内核版本"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "本地时间"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "型号"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "未连接"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "协议"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "信号"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "系统"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "上行"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "上传"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "运行时间"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "无线"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "否"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "是"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "连接开始时间"
|
|
@ -1,220 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2022-12-25 07:50+0000\n"
|
||||
"Last-Translator: Hulen <shift0106@gmail.com>\n"
|
||||
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/lucimodulesluci-mod-dashboard/zh_Hant/>\n"
|
||||
"Language: zh_Hant\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "已啓用"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "架構"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "位元率"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "頻道"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "已連線"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP 裝置"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "儀表板"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "裝置"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "已連線裝置"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "下載."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "下載"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "加密(Encryption)"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "韌體版本"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "IPv4 閘道"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "IPv6 閘道"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "授予存取 DHCP 狀態顯示的權限"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "授予存取主要狀態顯示的權限"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "授予存取系統路由狀態的權限"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "授予存取無線狀態顯示的權限"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "主機名稱"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP 位址"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4 地址"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 網路"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 網路"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6字首"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "網際網路"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "核心版本"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "本地時間"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "裝置型號"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "尚未連線"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "協定"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "訊號"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "系統"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "上傳"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "上傳"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "上線時間"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "無線"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "否"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "是"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "連線開始時間"
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"admin/dashboard": {
|
||||
"title": "Dashboard",
|
||||
"order": 1,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "dashboard/index"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [ "luci-mod-dashboard-index" ]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,41 +0,0 @@
|
|||
{
|
||||
"luci-mod-dashboard-routes": {
|
||||
"description": "Grant access to the system route status",
|
||||
"read": {
|
||||
"ubus": {
|
||||
"file": [ "exec" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"luci-mod-dashboard-index": {
|
||||
"description": "Grant access to main status display",
|
||||
"read": {
|
||||
"file": {
|
||||
"/www/luci-static/resources/view/status/include": [ "list" ]
|
||||
},
|
||||
"ubus": {
|
||||
"file": [ "list", "read" ],
|
||||
"system": [ "board", "info" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"luci-mod-dashboard-index-dhcp": {
|
||||
"description": "Grant access to DHCP status display",
|
||||
"read": {
|
||||
"ubus": {
|
||||
"luci-rpc": [ "getDHCPLeases" ]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"luci-mod-dashboard-index-wifi": {
|
||||
"description": "Grant access to wireless status display",
|
||||
"read": {
|
||||
"ubus": {
|
||||
"iwinfo": [ "assoclist" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,201 +0,0 @@
|
|||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
|
@ -1,16 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2008-2019 Jerrykuku
|
||||
#
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=Argon Theme
|
||||
LUCI_DEPENDS:=+curl +jsonfilter
|
||||
PKG_VERSION:=2.2.9.4
|
||||
PKG_RELEASE:=20220425
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
|
@ -1,114 +0,0 @@
|
|||
<div align="center">
|
||||
<img src="https://raw.githubusercontent.com/jerrykuku/staff/master/argon_title2.png" >
|
||||
<h1 align="center">
|
||||
A new LuCI theme for OpenWrt
|
||||
</h1>
|
||||
<h3 align="center">
|
||||
Argon is a clean HTML5 theme for LuCI. Users may<br>setup their own favorite logins, including beautiful<br>pics and customized mp4 videos.<br><br>
|
||||
</h3>
|
||||
<a href="/LICENSE">
|
||||
<img src="https://img.shields.io/github/license/jerrykuku/luci-theme-argon?style=flat-square&a=1" alt="">
|
||||
</a>
|
||||
<a href="https://github.com/jerrykuku/luci-theme-argon/pulls">
|
||||
<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square" alt="">
|
||||
</a><a href="https://github.com/jerrykuku/luci-theme-argon/issues/new">
|
||||
<img src="https://img.shields.io/badge/Issues-welcome-brightgreen.svg?style=flat-square">
|
||||
</a><a href="https://github.com/jerrykuku/luci-theme-argon/releases">
|
||||
<img src="https://img.shields.io/github/release/jerrykuku/luci-theme-argon.svg?style=flat-square">
|
||||
</a><a href="hhttps://github.com/jerrykuku/luci-theme-argon/releases">
|
||||
<img src="https://img.shields.io/github/downloads/jerrykuku/luci-theme-argon/total?style=flat-square">
|
||||
</a><a href="https://t.me/jerryk6">
|
||||
<img src="https://img.shields.io/badge/Contact-telegram-blue?style=flat-square">
|
||||
</a>
|
||||
</div>
|
||||
<br>
|
||||
<div align="center">
|
||||
<img src="https://raw.githubusercontent.com/jerrykuku/staff/master/argon2.gif">
|
||||
</div>
|
||||
|
||||
<br>English | [简体中文](README_ZH.md)
|
||||
|
||||
## Notice
|
||||
It is strongly recommended to use the Chrome browser. Some new css3 features are used in the theme, and currently only Chrome has the best compatibility.
|
||||
The mainline version of IE series currently has bugs to be resolved.
|
||||
FireFox does not enable the backdrop-filter by default, see here for the opening method: https://developer.mozilla.org/zh-CN/docs/Web/CSS/backdrop-filter
|
||||
|
||||
v2.x.x Adapt to official mainline snapshot.
|
||||
You can checkout branch 18.06 for OpenWRT 18.06 or lean 19.07.
|
||||
|
||||
## Update Log 2021.10.16 v2.2.9
|
||||
|
||||
- 【v2.2.9】Fix the problem that the menu could not pop up in mobile mode
|
||||
- 【v2.2.9】Unify the settings of css spacing
|
||||
- 【v2.2.9】Refactored the code of the login page
|
||||
- 【v2.2.8】Fix the problem that the Minify Css option is turned on when compiling, which causes the frosted glass effect to be invalid and the logo font is lost.
|
||||
- 【v2.2.5】New config app for argon theme. You can set the blur and transparency of the login page of argon theme, and manage the background pictures and videos.[Chrome is recommended] [Download](https://github.com/jerrykuku/luci-app-argon-config/releases/download/v0.8-beta/luci-app-argon-config_0.8-beta_all.ipk)
|
||||
- 【v2.2.5】Automatically set as the default theme when compiling.
|
||||
- 【v2.2.5】Modify the file structure to adapt to luci-app-argon-config. The old method of turning on dark mode is no longer applicable, please use it with luci-app-argon-config.
|
||||
- 【v2.2.5】Adapt to Koolshare lede 2.3.6。
|
||||
- 【v2.2.5】Fix some Bug。
|
||||
- 【v2.2.4】Fix the problem that the login background cannot be displayed on some phones.
|
||||
- 【v2.2.4】Remove the dependency of luasocket.
|
||||
- 【v2.2.3】Fix Firmware flash page display error in dark mode.
|
||||
- 【v2.2.3】Update font icon, add a default icon of undefined menu.
|
||||
- 【v2.2.2】Add custom login background,put your image (allow png jpg gif) or MP4 video into /www/luci-static/argon/background, random change.
|
||||
- 【v2.2.2】Add force dark mode, login ssh and type "touch /etc/dark" to open dark mode.
|
||||
- 【v2.2.2】Add a volume mute button for video background, default is muted.
|
||||
- 【v2.2.2】fix login page when keyboard show the bottom text overlay the button on mobile.
|
||||
- 【v2.2.2】fix select color in dark mode,and add a style for scrollbar.
|
||||
- 【v2.2.2】jquery update to v3.5.1.
|
||||
- 【v2.2.2】change request bing api method form wget to luasocket (DEPENDS).
|
||||
- 【v2.2.1】Add blur effect for login form.
|
||||
- 【v2.2.1】New login theme, Request background imge from bing.com, Auto change everyday.
|
||||
- 【v2.2.1】New theme icon.
|
||||
- 【v2.2.1】Add more menu category icon.
|
||||
- 【v2.2.1】Fix font-size and padding margin.
|
||||
- 【v2.2.1】Restructure css file.
|
||||
- 【v2.2.1】Auto adapt to dark mode.
|
||||
|
||||
## How to build
|
||||
|
||||
Enter in your openwrt/package/lean or other
|
||||
|
||||
### Lean lede
|
||||
|
||||
```
|
||||
cd lede/package/lean
|
||||
rm -rf luci-theme-argon
|
||||
git clone -b 18.06 https://github.com/jerrykuku/luci-theme-argon.git
|
||||
make menuconfig #choose LUCI->Theme->Luci-theme-argon
|
||||
make -j1 V=s
|
||||
```
|
||||
|
||||
### Openwrt official SnapShots
|
||||
|
||||
```
|
||||
cd openwrt/package
|
||||
git clone https://github.com/jerrykuku/luci-theme-argon.git
|
||||
make menuconfig #choose LUCI->Theme->Luci-theme-argon
|
||||
make -j1 V=s
|
||||
```
|
||||
|
||||
## How to Install
|
||||
|
||||
### For Lean openwrt 18.06 LuCI
|
||||
|
||||
```
|
||||
wget --no-check-certificate https://github.com/jerrykuku/luci-theme-argon/releases/download/v1.7.3/luci-theme-argon-18.06_1.7.3-20220421_all.ipk
|
||||
opkg install luci-theme-argon*.ipk
|
||||
```
|
||||
|
||||
### For openwrt official 19.07 Snapshots LuCI master
|
||||
|
||||
```
|
||||
opkg install luci-compat
|
||||
opkg install luci-lib-ipkg
|
||||
wget --no-check-certificate https://github.com/jerrykuku/luci-theme-argon/releases/download/v2.2.9/luci-theme-argon_2.2.9-20211016-1_all.ipk
|
||||
opkg install luci-theme-argon*.ipk
|
||||
```
|
||||

|
||||

|
||||
|
||||
## Thanks to
|
||||
|
||||
luci-theme-material: https://github.com/LuttyYang/luci-theme-material/
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue