diff options
Diffstat (limited to 'applications')
65 files changed, 375 insertions, 358 deletions
diff --git a/applications/luci-app-advanced-reboot/Makefile b/applications/luci-app-advanced-reboot/Makefile index 97301fc6af..20f9168936 100644 --- a/applications/luci-app-advanced-reboot/Makefile +++ b/applications/luci-app-advanced-reboot/Makefile @@ -13,7 +13,7 @@ LUCI_DESCRIPTION:=Provides Web UI (found under System/Advanced Reboot) to reboot LUCI_DEPENDS:=+luci-compat +luci-mod-admin-full LUCI_PKGARCH:=all -PKG_RELEASE:=46 +PKG_RELEASE:=47 include ../../luci.mk diff --git a/applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua b/applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua index 6ed4c66149..3da7bbe0f2 100644 --- a/applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua +++ b/applications/luci-app-advanced-reboot/luasrc/controller/advanced_reboot.lua @@ -34,7 +34,7 @@ function is_alt_mountable(p1_mtd, p2_mtd) end function get_partition_os_info(op_ubi) - local cp_info, ap_info + local cp_info, op_info if fs.access("/etc/os-release") then cp_info = util.trim(util.exec('. /etc/os-release && echo "$PRETTY_NAME"')) if cp_info:find("SNAPSHOT") then @@ -45,14 +45,14 @@ function get_partition_os_info(op_ubi) alt_partition_unmount(op_ubi) alt_partition_mount(op_ubi) if fs.access("/alt/rom/etc/os-release") then - ap_info = util.trim(util.exec('. /alt/rom/etc/os-release && echo "$PRETTY_NAME"')) - if ap_info:find("SNAPSHOT") then - ap_info = util.trim(util.exec('. /alt/rom/etc/os-release && echo "$OPENWRT_RELEASE"')) + op_info = util.trim(util.exec('. /alt/rom/etc/os-release && echo "$PRETTY_NAME"')) + if op_info:find("SNAPSHOT") then + op_info = util.trim(util.exec('. /alt/rom/etc/os-release && echo "$OPENWRT_RELEASE"')) end end logger(i18n.translate("attempting to unmount alternative partition") .. " (mtd" .. tostring(op_ubi) .. ")") alt_partition_unmount(op_ubi) - return cp_info, ap_info + return cp_info, op_info end function alt_partition_mount(op_ubi) @@ -87,107 +87,124 @@ function alt_partition_unmount(op_ubi) end end -devices = { - -- deviceName, boardName, part1MTD, part2MTD, offset, envVar1, envVar1Value1, envVar1Value2, envVar2, envVar2Value1, envVar2Value2 - {"Linksys EA3500", "linksys-audi", "mtd3", "mtd5", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, - {"Linksys E4200v2/EA4500", "linksys-viper", "mtd3", "mtd5", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, - {"Linksys EA6350v3", "linksys-ea6350v3", "mtd10", "mtd12", 192, "boot_part", 1, 2}, - {"Linksys EA8300", "linksys-ea8300", "mtd10", "mtd12", 192, "boot_part", 1, 2}, - {"Linksys EA8500", "ea8500", "mtd13", "mtd15", 32, "boot_part", 1, 2}, --- {"Linksys EA9500", "linksys-panamera", "mtd3", "mtd6", 28, "boot_part", 1, 2}, - {"Linksys WRT1200AC", "linksys-caiman", "mtd4", "mtd6", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, - {"Linksys WRT1900AC", "linksys-mamba", "mtd4", "mtd6", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, - {"Linksys WRT1900ACv2", "linksys-cobra", "mtd4", "mtd6", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, - {"Linksys WRT1900ACS", "linksys-shelby", "mtd4", "mtd6", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, - {"Linksys WRT3200ACM", "linksys-rango", "mtd5", "mtd7", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, - {"Linksys WRT32X", "linksys-venom", "mtd5", "mtd7", nil, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, - {"ZyXEL NBG6817", "nbg6817", "mmcblk0p4", "mmcblk0p7", 32, nil, 255, 1} -} - --- local errorMessage, d --- local device_name, p1_mtd, p2_mtd, offset, bev1, bev1p1, bev1p2, bev2, bev2p1, bev2p2 -romBoardName = util.trim(util.exec("cat /tmp/sysinfo/board_name")) - -for i=1, #devices do - d = devices[i][2]:gsub('%p','') - if romBoardName and romBoardName:gsub('%p',''):match(d) then - device_name = devices[i][1] - p1_mtd = devices[i][3] or nil - p2_mtd = devices[i][4] or nil - offset = devices[i][5] or nil - bev1 = devices[i][6] or nil - bev1p1 = tonumber(devices[i][7]) or nil - bev1p2 = tonumber(devices[i][8]) or nil - bev2 = devices[i][9] or nil - bev2p1 = devices[i][10] or nil - bev2p2 = devices[i][11] or nil - if p1_mtd and offset then - p1_label = util.trim(util.exec("dd if=/dev/" .. p1_mtd .. " bs=1 skip=" .. offset .. " count=128" .. " 2>/dev/null")) - n, p1_version = p1_label:match('(Linux)-([%d|.]+)') - end - if p2_mtd and offset then - p2_label = util.trim(util.exec("dd if=/dev/" .. p2_mtd .. " bs=1 skip=" .. offset .. " count=128" .. " 2>/dev/null")) - n, p2_version = p2_label:match('(Linux)-([%d|.]+)') - end - if p1_label and p1_label:find("LEDE") then p1_os = "LEDE" end - if p1_label and p1_label:find("OpenWrt") then p1_os = "OpenWrt" end - if p1_label and p1_label:find("Linksys") then p1_os = "Linksys" end - if p2_label and p2_label:find("LEDE") then p2_os = "LEDE" end - if p2_label and p2_label:find("OpenWrt") then p2_os = "OpenWrt" end - if p2_label and p2_label:find("Linksys") then p2_os = "Linksys" end - if device_name == "ZyXEL NBG6817" then - if not p1_os then p1_os = "ZyXEL" end - if not p2_os then p2_os = "ZyXEL" end - end - if device_name == "Linksys WRT32X" then - if not p1_os then p1_os = "Unknown/Compressed" end - if not p2_os then p2_os = "Unknown/Compressed" end - end - if not p1_os then p1_os = "Unknown" end - if not p2_os then p2_os = "Unknown" end - if p1_os and p1_version then p1_os = p1_os .. " (Linux " .. p1_version .. ")" end - if p2_os and p2_version then p2_os = p2_os .. " (Linux " .. p2_version .. ")" end - - if device_name == "ZyXEL NBG6817" then - if not zyxelFlagPartition then zyxelFlagPartition = util.trim(util.exec(". /lib/functions.sh; find_mtd_part 0:DUAL_FLAG")) end - if not zyxelFlagPartition then - errorMessage = errorMessage or "" .. i18n.translate("Unable to find Dual Boot Flag Partition." .. " ") - util.perror(i18n.translate("Unable to find Dual Boot Flag Partition.")) - else - current_partition = tonumber(util.exec("dd if=" .. zyxelFlagPartition .. " bs=1 count=1 2>/dev/null | hexdump -n 1 -e '1/1 \"%d\"'")) +function obtain_device_info() + local i, d, p1_mtd, p2_mtd, offset, bev1, bev1p1, bev1p2, bev2, bev2p1, n + local p1_label, p1_version, p2_label, p2_version, p1_os, p2_os + local errorMessage, current_partition, other_partition + local op_ubi, cp_info, op_info + local zyxelFlagPartition + local devices = { + -- deviceName, boardName, part1MTD, part2MTD, offset, envVar1, envVar1Value1, envVar1Value2, envVar2, envVar2Value1, envVar2Value2 + {"Linksys EA3500", "linksys-audi", "mtd3", "mtd5", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, + {"Linksys E4200v2/EA4500", "linksys-viper", "mtd3", "mtd5", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, + {"Linksys EA6350v3", "linksys-ea6350v3", "mtd10", "mtd12", 192, "boot_part", 1, 2}, + {"Linksys EA8300", "linksys-ea8300", "mtd10", "mtd12", 192, "boot_part", 1, 2}, + {"Linksys EA8500", "ea8500", "mtd13", "mtd15", 32, "boot_part", 1, 2}, + -- {"Linksys EA9500", "linksys-panamera", "mtd3", "mtd6", 28, "boot_part", 1, 2}, + {"Linksys WRT1200AC", "linksys-caiman", "mtd4", "mtd6", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, + {"Linksys WRT1900AC", "linksys-mamba", "mtd4", "mtd6", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, + {"Linksys WRT1900ACv2", "linksys-cobra", "mtd4", "mtd6", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, + {"Linksys WRT1900ACS", "linksys-shelby", "mtd4", "mtd6", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, + {"Linksys WRT3200ACM", "linksys-rango", "mtd5", "mtd7", 32, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, + {"Linksys WRT32X", "linksys-venom", "mtd5", "mtd7", nil, "boot_part", 1, 2, "bootcmd", "run nandboot", "run altnandboot"}, + {"ZyXEL NBG6817", "nbg6817", "mmcblk0p4", "mmcblk0p7", 32, nil, 255, 1} + } + local romBoardName = util.trim(util.exec("cat /tmp/sysinfo/board_name")) + for i=1, #devices do + d = devices[i][2]:gsub('%p','') + if romBoardName and romBoardName:gsub('%p',''):match(d) then + device_name = devices[i][1] + p1_mtd = devices[i][3] or nil + p2_mtd = devices[i][4] or nil + offset = devices[i][5] or nil + bev1 = devices[i][6] or nil + bev1p1 = tonumber(devices[i][7]) or nil + bev1p2 = tonumber(devices[i][8]) or nil + bev2 = devices[i][9] or nil + bev2p1 = devices[i][10] or nil + bev2p2 = devices[i][11] or nil + if p1_mtd and offset then + p1_label = util.trim(util.exec("dd if=/dev/" .. p1_mtd .. " bs=1 skip=" .. offset .. " count=128" .. " 2>/dev/null")) + n, p1_version = p1_label:match('(Linux)-([%d|.]+)') end - else - if fs.access("/usr/sbin/fw_printenv") and fs.access("/usr/sbin/fw_setenv") then - current_partition = tonumber(util.trim(util.exec("fw_printenv -n " .. bev1))) + if p2_mtd and offset then + p2_label = util.trim(util.exec("dd if=/dev/" .. p2_mtd .. " bs=1 skip=" .. offset .. " count=128" .. " 2>/dev/null")) + n, p2_version = p2_label:match('(Linux)-([%d|.]+)') end - end - other_partition = current_partition == bev1p2 and bev1p1 or bev1p2 - - if is_alt_mountable(p1_mtd, p2_mtd) then - if current_partition == bev1p1 then - op_ubi = tonumber(p2_mtd:sub(4)) + 1 - else - op_ubi = tonumber(p1_mtd:sub(4)) + 1 + if p1_label and p1_label:find("LEDE") then p1_os = "LEDE" end + if p1_label and p1_label:find("OpenWrt") then p1_os = "OpenWrt" end + if p1_label and p1_label:find("Linksys") then p1_os = "Linksys" end + if p2_label and p2_label:find("LEDE") then p2_os = "LEDE" end + if p2_label and p2_label:find("OpenWrt") then p2_os = "OpenWrt" end + if p2_label and p2_label:find("Linksys") then p2_os = "Linksys" end + if device_name == "ZyXEL NBG6817" then + if not p1_os then p1_os = "ZyXEL" end + if not p2_os then p2_os = "ZyXEL" end + end + if device_name == "Linksys WRT32X" then + if not p1_os then p1_os = "Unknown/Compressed" end + if not p2_os then p2_os = "Unknown/Compressed" end end - local cp_info, ap_info = get_partition_os_info(op_ubi) - if current_partition == bev1p1 then - p1_os = cp_info or p1_os - p2_os = ap_info or p2_os + if not p1_os then p1_os = "Unknown" end + if not p2_os then p2_os = "Unknown" end + if p1_os and p1_version then p1_os = p1_os .. " (Linux " .. p1_version .. ")" end + if p2_os and p2_version then p2_os = p2_os .. " (Linux " .. p2_version .. ")" end + + if device_name == "ZyXEL NBG6817" then + if not zyxelFlagPartition then zyxelFlagPartition = util.trim(util.exec(". /lib/functions.sh; find_mtd_part 0:DUAL_FLAG")) end + if not zyxelFlagPartition then + errorMessage = errorMessage or "" .. i18n.translate("Unable to find Dual Boot Flag Partition." .. " ") + util.perror(i18n.translate("Unable to find Dual Boot Flag Partition.")) + else + current_partition = tonumber(util.exec("dd if=" .. zyxelFlagPartition .. " bs=1 count=1 2>/dev/null | hexdump -n 1 -e '1/1 \"%d\"'")) + end else - p1_os = ap_info or p1_os - p2_os = cp_info or p2_os + if fs.access("/usr/sbin/fw_printenv") and fs.access("/usr/sbin/fw_setenv") then + current_partition = tonumber(util.trim(util.exec("fw_printenv -n " .. bev1))) + end + end + other_partition = current_partition == bev1p2 and bev1p1 or bev1p2 + + if is_alt_mountable(p1_mtd, p2_mtd) then + if current_partition == bev1p1 then + op_ubi = tonumber(p2_mtd:sub(4)) + 1 + else + op_ubi = tonumber(p1_mtd:sub(4)) + 1 + end + local cp_info, op_info = get_partition_os_info(op_ubi) + if current_partition == bev1p1 then + p1_os = cp_info or p1_os + p2_os = op_info or p2_os + else + p1_os = op_info or p1_os + p2_os = cp_info or p2_os + end end end end + return romBoardName, device_name, bev1, bev1p1, p1_os, bev1p2, p2_os, bev2, bev2p1, bev2p2, current_partition end function index() - entry({"admin", "system", "advanced_reboot"}, template("advanced_reboot/advanced_reboot"), _("Advanced Reboot"), 90) + entry({"admin", "system", "advanced_reboot"}, call("action_template"), _("Advanced Reboot"), 90) entry({"admin", "system", "advanced_reboot", "reboot"}, post("action_reboot")) entry({"admin", "system", "advanced_reboot", "alternative_reboot"}, post("action_altreboot")) entry({"admin", "system", "advanced_reboot", "power_off"}, post("action_poweroff")) end +function action_template() + local romBoardName, device_name, bev1, bev1p1, p1_os, bev1p2, p2_os, bev2, bev2p1, bev2p2, current_partition = obtain_device_info() + ltemplate.render("advanced_reboot/advanced_reboot",{ + romBoardName=romBoardName, + device_name=device_name, + bev1p1=bev1p1, + p1_os=p1_os, + bev1p2=bev1p2, + p2_os=p2_os, + current_partition=current_partition, + errorMessage = errorMessage}) +end + function action_reboot() ltemplate.render("advanced_reboot/applyreboot", { title = i18n.translate("Rebooting..."), @@ -198,6 +215,7 @@ function action_reboot() end function action_altreboot() + local romBoardName, device_name, bev1, bev1p1, p1_os, bev1p2, p2_os, bev2, bev2p1, bev2p2, current_partition = obtain_device_info() local zyxelFlagPartition, zyxelBootFlag, zyxelNewBootFlag, errorCode, curEnvSetting, newEnvSetting errorMessage = nil errorCode = 0 diff --git a/applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua b/applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua index fe2faaee5d..86ea302c2f 100644 --- a/applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua +++ b/applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua @@ -71,7 +71,7 @@ yuv = s:taboption(this_tab, Flag, "yuv", translate("Enable YUYV format"), transl quality = s:taboption(this_tab, Value, "quality", translate("JPEG compression quality"), translate("Set the quality in percent. This setting activates YUYV format, disables MJPEG")) quality.datatype = "range(0, 100)" -minimum_size = s:taboption(this_tab, Value, "minimum_size", translate("Drop frames smaller then this limit"),translate("Set the minimum size if the webcam produces small-sized garbage frames. May happen under low light conditions")) +minimum_size = s:taboption(this_tab, Value, "minimum_size", translate("Drop frames smaller than this limit"),translate("Set the minimum size if the webcam produces small-sized garbage frames. May happen under low light conditions")) minimum_size.datatype = "uinteger" no_dynctrl = s:taboption(this_tab, Flag, "no_dynctrl", translate("Don't initialize dynctrls"), translate("Do not initialize dynctrls of Linux-UVC driver")) @@ -217,7 +217,7 @@ ringbuffer=s:taboption(this_tab, Value, "ringbuffer", translate("Ring buffer siz exceed=s:taboption(this_tab, Value, "exceed", translate("Exceed"), translate("Allow ringbuffer to exceed limit by this amount")) exceed.datatype = "uinteger" -command=s:taboption(this_tab, Value, "command", translate("Command to run"), translate("Execute command after saving picture. Mjpg-streamer parse the filename as first parameter to your script.")) +command=s:taboption(this_tab, Value, "command", translate("Command to run"), translate("Execute command after saving picture. Mjpg-streamer parses the filename as first parameter to your script.")) link=s:taboption(this_tab, Value, "link", translate("Link newest picture to fixed file name"), translate("Link the last picture in ringbuffer to fixed named file provided.")) diff --git a/applications/luci-app-mjpg-streamer/po/bg/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/bg/mjpg-streamer.po index 005247dded..eb34f3670b 100644 --- a/applications/luci-app-mjpg-streamer/po/bg/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/bg/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/ca/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/ca/mjpg-streamer.po index fb00a8e01b..e0b8c87351 100644 --- a/applications/luci-app-mjpg-streamer/po/ca/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/ca/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/cs/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/cs/mjpg-streamer.po index a5102b699f..599ca0d2dc 100644 --- a/applications/luci-app-mjpg-streamer/po/cs/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/cs/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/de/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/de/mjpg-streamer.po index 08495643a5..35aaa4aab2 100644 --- a/applications/luci-app-mjpg-streamer/po/de/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/de/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "Dynctrls nicht initialisieren" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "Verwerfe Bilder, die kleiner als dieses Limit sind" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "Überschreiten" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/el/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/el/mjpg-streamer.po index e4361a6d60..473559bdac 100644 --- a/applications/luci-app-mjpg-streamer/po/el/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/el/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/en/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/en/mjpg-streamer.po index 786f9d0cfd..24e4d0b12b 100644 --- a/applications/luci-app-mjpg-streamer/po/en/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/en/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/es/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/es/mjpg-streamer.po index 46a321c119..6fda454c1e 100644 --- a/applications/luci-app-mjpg-streamer/po/es/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/es/mjpg-streamer.po @@ -58,7 +58,7 @@ msgid "Don't initialize dynctrls" msgstr "No inicialice dynctrls" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "Drop frames más pequeños que este límite" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -79,7 +79,7 @@ msgstr "Exceder" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" "Ejecute el comando después de guardar la imagen. Mjpg-streamer analiza el " diff --git a/applications/luci-app-mjpg-streamer/po/fr/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/fr/mjpg-streamer.po index 9f5f0f1ed6..6c2185dded 100644 --- a/applications/luci-app-mjpg-streamer/po/fr/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/fr/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/he/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/he/mjpg-streamer.po index ac9c36a847..739d4b0db2 100644 --- a/applications/luci-app-mjpg-streamer/po/he/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/he/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/hi/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/hi/mjpg-streamer.po index de726beeee..3f531e0be9 100644 --- a/applications/luci-app-mjpg-streamer/po/hi/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/hi/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/hu/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/hu/mjpg-streamer.po index 6ed052d121..3f606da1ac 100644 --- a/applications/luci-app-mjpg-streamer/po/hu/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/hu/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/it/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/it/mjpg-streamer.po index c1c36ac2c8..e62d515bb8 100644 --- a/applications/luci-app-mjpg-streamer/po/it/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/it/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/ja/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/ja/mjpg-streamer.po index d4c4543443..2f144327b2 100644 --- a/applications/luci-app-mjpg-streamer/po/ja/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/ja/mjpg-streamer.po @@ -56,7 +56,7 @@ msgid "Don't initialize dynctrls" msgstr "dynctrlsを初期化しない" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "この制限よりも小さいフレームをドロップする" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -77,7 +77,7 @@ msgstr "超過" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" "画像保存後にコマンドを実行します。Mjpg-streamerは、ファイル名をスクリプトの最" diff --git a/applications/luci-app-mjpg-streamer/po/ko/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/ko/mjpg-streamer.po index e54ec194dd..2af2abac0a 100644 --- a/applications/luci-app-mjpg-streamer/po/ko/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/ko/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/mr/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/mr/mjpg-streamer.po index 014e1c7e07..bf635d0d29 100644 --- a/applications/luci-app-mjpg-streamer/po/mr/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/mr/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/ms/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/ms/mjpg-streamer.po index e2b596d5f7..dcdc6e1696 100644 --- a/applications/luci-app-mjpg-streamer/po/ms/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/ms/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/nb_NO/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/nb_NO/mjpg-streamer.po index 3d5bfcd46f..3c35e99fd9 100644 --- a/applications/luci-app-mjpg-streamer/po/nb_NO/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/nb_NO/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/pl/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/pl/mjpg-streamer.po index 6a1860f97e..d09469d9b1 100644 --- a/applications/luci-app-mjpg-streamer/po/pl/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/pl/mjpg-streamer.po @@ -56,7 +56,7 @@ msgid "Don't initialize dynctrls" msgstr "Nie ładuj dynamicznych kontroli" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "Porzucaj klatki mniejsze niż ten limit" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -77,7 +77,7 @@ msgstr "Przekraczać" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" "Wykonaj komendę po wykonaniu zdjęcia. Mjpg-streamer analizuje nazwę pliku " diff --git a/applications/luci-app-mjpg-streamer/po/pt-br/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/pt-br/mjpg-streamer.po index 2cfbcedd17..6bb36ebef9 100644 --- a/applications/luci-app-mjpg-streamer/po/pt-br/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/pt-br/mjpg-streamer.po @@ -58,7 +58,7 @@ msgid "Don't initialize dynctrls" msgstr "Não inicia o dynctrls" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "Descarte quadros menores que este limite" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -79,7 +79,7 @@ msgstr "Ultrapassado" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" "Execute o comando depois de salvar a imagem. Mjpg-streamer passa o nome do " diff --git a/applications/luci-app-mjpg-streamer/po/pt/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/pt/mjpg-streamer.po index 83f0072cfe..4800ed76c8 100644 --- a/applications/luci-app-mjpg-streamer/po/pt/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/pt/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "Não iniciar o dynctrls" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "Descarte quadros menores que este limite" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "Ultrapassado" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" "Execute o comando depois de gra\\var a imagem. Mjpg-streamer passa o nome do " diff --git a/applications/luci-app-mjpg-streamer/po/ro/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/ro/mjpg-streamer.po index 20a69eadb9..610272c768 100644 --- a/applications/luci-app-mjpg-streamer/po/ro/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/ro/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/ru/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/ru/mjpg-streamer.po index ed3b7f44b7..b32961545f 100644 --- a/applications/luci-app-mjpg-streamer/po/ru/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/ru/mjpg-streamer.po @@ -61,7 +61,7 @@ msgid "Don't initialize dynctrls" msgstr "Отключить dynctrls" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "Ограничить кол-во кадров" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -82,7 +82,7 @@ msgstr "Превышение" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" "Выполнить команду после сохранения изображения.<br />Mjpg-streamer задаст " diff --git a/applications/luci-app-mjpg-streamer/po/sk/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/sk/mjpg-streamer.po index d7d25d5323..91e1c1717d 100644 --- a/applications/luci-app-mjpg-streamer/po/sk/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/sk/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/sv/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/sv/mjpg-streamer.po index ef9eb27b76..ef794f9d61 100644 --- a/applications/luci-app-mjpg-streamer/po/sv/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/sv/mjpg-streamer.po @@ -55,7 +55,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -76,7 +76,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/tr/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/tr/mjpg-streamer.po index a08ceec6aa..a46d122809 100644 --- a/applications/luci-app-mjpg-streamer/po/tr/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/tr/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/uk/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/uk/mjpg-streamer.po index 39b2213ffb..78dd9daa82 100644 --- a/applications/luci-app-mjpg-streamer/po/uk/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/uk/mjpg-streamer.po @@ -56,7 +56,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -77,7 +77,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/vi/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/vi/mjpg-streamer.po index 2d036a0b57..28cf534d4c 100644 --- a/applications/luci-app-mjpg-streamer/po/vi/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/vi/mjpg-streamer.po @@ -49,7 +49,7 @@ msgid "Don't initialize dynctrls" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -70,7 +70,7 @@ msgstr "" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "" diff --git a/applications/luci-app-mjpg-streamer/po/zh-cn/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/zh-cn/mjpg-streamer.po index 34c56d5fcf..2e6572d2db 100644 --- a/applications/luci-app-mjpg-streamer/po/zh-cn/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/zh-cn/mjpg-streamer.po @@ -63,7 +63,7 @@ msgid "Don't initialize dynctrls" msgstr "不要初始化 dynctrls" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "丢弃小于该尺寸限制的帧" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -84,7 +84,7 @@ msgstr "超出" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "保存图片后执行命令。文件名将作为第一个参数传递给命令。" diff --git a/applications/luci-app-mjpg-streamer/po/zh-tw/mjpg-streamer.po b/applications/luci-app-mjpg-streamer/po/zh-tw/mjpg-streamer.po index c63ad7e7b3..ac4be2256d 100644 --- a/applications/luci-app-mjpg-streamer/po/zh-tw/mjpg-streamer.po +++ b/applications/luci-app-mjpg-streamer/po/zh-tw/mjpg-streamer.po @@ -62,7 +62,7 @@ msgid "Don't initialize dynctrls" msgstr "不要初始化 dynctrls" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:74 -msgid "Drop frames smaller then this limit" +msgid "Drop frames smaller than this limit" msgstr "丟棄小於該尺寸限制的幀" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:12 @@ -83,7 +83,7 @@ msgstr "超出" #: applications/luci-app-mjpg-streamer/luasrc/model/cbi/mjpg-streamer.lua:220 msgid "" -"Execute command after saving picture. Mjpg-streamer parse the filename as " +"Execute command after saving picture. Mjpg-streamer parses the filename as " "first parameter to your script." msgstr "儲存圖片後執行指令。檔名將作為第一個引數傳遞給指令。" diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua index 606b1ae766..bcbf03d54e 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua @@ -59,6 +59,7 @@ end httping_ssl = mwan_interface:option(Flag, "httping_ssl", translate("Enable ssl tracking"), translate("Enables https tracking on ssl port 443")) httping_ssl:depends("track_method", "httping") +httping_ssl.rmempty = false httping_ssl.default = httping_ssl.enabled reliability = mwan_interface:option(Value, "reliability", translate("Tracking reliability"), @@ -87,8 +88,6 @@ size:value("1016") size:value("1472") size:value("2040") size.datatype = "range(1, 65507)" -size.rmempty = false -size.optional = false max_ttl = mwan_interface:option(Value, "max_ttl", translate("Max TTL")) max_ttl.default = "60" diff --git a/applications/luci-app-nft-qos/Makefile b/applications/luci-app-nft-qos/Makefile index 4f86217c43..a8227de9fd 100644 --- a/applications/luci-app-nft-qos/Makefile +++ b/applications/luci-app-nft-qos/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk -LUCI_TITLE:=Qos over Nftables +LUCI_TITLE:=QoS over Nftables LUCI_DEPENDS:=+luci-compat +nft-qos include ../../luci.mk diff --git a/applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua b/applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua index 637eb11736..4d0527e33f 100644 --- a/applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua +++ b/applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua @@ -13,7 +13,7 @@ function index() entry({"admin", "status", "realtime", "rate_status"}, call("action_rate")).leaf = true entry({"admin", "services", "nft-qos"}, cbi("nft-qos/nft-qos"), - _("Qos over Nftables"), 60) + _("QoS over Nftables"), 60) end function _action_rate(rv, n) diff --git a/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua b/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua index 61a6d76a7d..6f67a6110b 100644 --- a/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua +++ b/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua @@ -20,7 +20,7 @@ local enable_priority = uci:get("nft-qos", "default", "priority_enable") local has_ipv6 = fs.access("/proc/net/ipv6_route") -m = Map("nft-qos", translate("Qos over Nftables")) +m = Map("nft-qos", translate("QoS over Nftables")) -- -- Taboptions @@ -82,13 +82,13 @@ o.default = def_down or '100' o.datatype = "uinteger" o:depends("limit_type","dynamic") -o = s:taboption("limit", Value, "dynamic_cidr", translate("Target Network (IPv4/MASK)"), translate("Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc")) +o = s:taboption("limit", Value, "dynamic_cidr", translate("Target Network (IPv4/MASK)"), translate("Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc.")) o.datatype = "cidr4" ipc.routes({ family = 4, type = 1 }, function(rt) o.default = rt.dest end) o:depends("limit_type","dynamic") if has_ipv6 then - o = s:taboption("limit", Value, "dynamic_cidr6", translate("Target Network6 (IPv6/MASK)"), translate("Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc")) + o = s:taboption("limit", Value, "dynamic_cidr6", translate("Target Network6 (IPv6/MASK)"), translate("Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc.")) o.datatype = "cidr6" o:depends("limit_type","dynamic") end @@ -104,7 +104,7 @@ o = s:taboption("priority", Flag, "priority_enable", translate("Enable Traffic P o.default = enable_priority or o.enabled o.rmempty = false -o = s:taboption("priority", ListValue, "priority_netdev", translate("Default Network Interface"), translate("Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc")) +o = s:taboption("priority", ListValue, "priority_netdev", translate("Default Network Interface"), translate("Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc.")) o:depends("priority_enable", "1") wa.cbi_add_networks(o) @@ -123,9 +123,9 @@ o.datatype = "hostname" o.default = 'undefined' if has_ipv6 then - o = x:option(Value, "ipaddr", translate("IP Address(V4 / V6)")) + o = x:option(Value, "ipaddr", translate("IP Address (v4 / v6)")) else - o = x:option(Value, "ipaddr", translate("IP Address(V4 Only)")) + o = x:option(Value, "ipaddr", translate("IP Address (v4 Only)")) end o.datatype = "ipaddr" if nixio.fs.access("/tmp/dhcp.leases") or nixio.fs.access("/var/dhcp6.leases") then @@ -160,9 +160,9 @@ o.datatype = "hostname" o.default = 'undefined' if has_ipv6 then - o = y:option(Value, "ipaddr", translate("IP Address(V4 / V6)")) + o = y:option(Value, "ipaddr", translate("IP Address (v4 / v6)")) else - o = y:option(Value, "ipaddr", translate("IP Address(V4 Only)")) + o = y:option(Value, "ipaddr", translate("IP Address (v4 Only)")) end o.datatype = "ipaddr" if nixio.fs.access("/tmp/dhcp.leases") or nixio.fs.access("/var/dhcp6.leases") then diff --git a/applications/luci-app-nft-qos/po/bg/nft-qos.po b/applications/luci-app-nft-qos/po/bg/nft-qos.po index 6bfdc6b7bd..253ea521bb 100644 --- a/applications/luci-app-nft-qos/po/bg/nft-qos.po +++ b/applications/luci-app-nft-qos/po/bg/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/ca/nft-qos.po b/applications/luci-app-nft-qos/po/ca/nft-qos.po index e4babf863e..043c8a2145 100644 --- a/applications/luci-app-nft-qos/po/ca/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ca/nft-qos.po @@ -100,12 +100,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/cs/nft-qos.po b/applications/luci-app-nft-qos/po/cs/nft-qos.po index b119020178..b6ce28c6ae 100644 --- a/applications/luci-app-nft-qos/po/cs/nft-qos.po +++ b/applications/luci-app-nft-qos/po/cs/nft-qos.po @@ -100,12 +100,12 @@ msgstr "IP adresa" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "Protokol" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/de/nft-qos.po b/applications/luci-app-nft-qos/po/de/nft-qos.po index 72709e866d..9e9b533084 100644 --- a/applications/luci-app-nft-qos/po/de/nft-qos.po +++ b/applications/luci-app-nft-qos/po/de/nft-qos.po @@ -100,13 +100,13 @@ msgstr "IP-Adresse" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" -msgstr "IP-Adresse (V4 / V6)" +msgid "IP Address (v4 / v6)" +msgstr "IP-Adresse (v4 / v6)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" -msgstr "IP-Adresse (nur V4)" +msgid "IP Address (v4 Only)" +msgstr "IP-Adresse (nur v4)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 msgid "Limit Enable" @@ -130,16 +130,16 @@ msgid "NFT-QoS Settings" msgstr "NFT-QoS-Einstellungen" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "Netzwerkschnittstelle für Traffic Shaping, z.B. br-lan, eth0.1, eth0, etc." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -161,7 +161,7 @@ msgstr "Protokoll" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/el/nft-qos.po b/applications/luci-app-nft-qos/po/el/nft-qos.po index 3894b07ffa..75db0de2a1 100644 --- a/applications/luci-app-nft-qos/po/el/nft-qos.po +++ b/applications/luci-app-nft-qos/po/el/nft-qos.po @@ -100,12 +100,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/en/nft-qos.po b/applications/luci-app-nft-qos/po/en/nft-qos.po index f3e6b4249c..3ffccd4045 100644 --- a/applications/luci-app-nft-qos/po/en/nft-qos.po +++ b/applications/luci-app-nft-qos/po/en/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/es/nft-qos.po b/applications/luci-app-nft-qos/po/es/nft-qos.po index c9e4991baf..eb56a1a2a3 100644 --- a/applications/luci-app-nft-qos/po/es/nft-qos.po +++ b/applications/luci-app-nft-qos/po/es/nft-qos.po @@ -103,12 +103,12 @@ msgstr "Dirección IP" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "Dirección IP (v4/v6)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "Dirección IP (sólo v4)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -133,18 +133,18 @@ msgid "NFT-QoS Settings" msgstr "Configuración de NFT-QoS" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "Interfaz de red para configuración de tráfico, por ejemplo, br-lan, eth0.1, " -"eth0, etc" +"eth0, etc." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" -msgstr "Red a aplicar, por ejemplo. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." +msgstr "Red a aplicar, por ejemplo. 192.168.1.0/24, 10.2.0.0/16, etc." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" -msgstr "Red a aplicar, por ejemplo. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." +msgstr "Red a aplicar, por ejemplo. AAAA::BBBB/64, CCCC::1/128, etc." #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" @@ -165,7 +165,7 @@ msgstr "Protocolo" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "Qos sobre Nftables" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/fr/nft-qos.po b/applications/luci-app-nft-qos/po/fr/nft-qos.po index 3cc0d2db36..d68c65df43 100644 --- a/applications/luci-app-nft-qos/po/fr/nft-qos.po +++ b/applications/luci-app-nft-qos/po/fr/nft-qos.po @@ -100,12 +100,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "Protocole" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/he/nft-qos.po b/applications/luci-app-nft-qos/po/he/nft-qos.po index 9938ccffd2..71b810595d 100644 --- a/applications/luci-app-nft-qos/po/he/nft-qos.po +++ b/applications/luci-app-nft-qos/po/he/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/hi/nft-qos.po b/applications/luci-app-nft-qos/po/hi/nft-qos.po index 29961a28ac..4936b07c1c 100644 --- a/applications/luci-app-nft-qos/po/hi/nft-qos.po +++ b/applications/luci-app-nft-qos/po/hi/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/hu/nft-qos.po b/applications/luci-app-nft-qos/po/hu/nft-qos.po index d398e3b362..dcce63d0f8 100644 --- a/applications/luci-app-nft-qos/po/hu/nft-qos.po +++ b/applications/luci-app-nft-qos/po/hu/nft-qos.po @@ -100,12 +100,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "Protokoll" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/it/nft-qos.po b/applications/luci-app-nft-qos/po/it/nft-qos.po index dbabfee7d9..c9ddca3a04 100644 --- a/applications/luci-app-nft-qos/po/it/nft-qos.po +++ b/applications/luci-app-nft-qos/po/it/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/ja/nft-qos.po b/applications/luci-app-nft-qos/po/ja/nft-qos.po index 4863fb6a24..ed8523c6f8 100644 --- a/applications/luci-app-nft-qos/po/ja/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ja/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/ko/nft-qos.po b/applications/luci-app-nft-qos/po/ko/nft-qos.po index 2b7c997d1f..34ea52ff6c 100644 --- a/applications/luci-app-nft-qos/po/ko/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ko/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/mr/nft-qos.po b/applications/luci-app-nft-qos/po/mr/nft-qos.po index f812c20ace..77d0c2d86f 100644 --- a/applications/luci-app-nft-qos/po/mr/nft-qos.po +++ b/applications/luci-app-nft-qos/po/mr/nft-qos.po @@ -100,12 +100,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/ms/nft-qos.po b/applications/luci-app-nft-qos/po/ms/nft-qos.po index 437ac59672..57aa18a2b5 100644 --- a/applications/luci-app-nft-qos/po/ms/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ms/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po b/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po index 5ecf971916..a1f1df9f0c 100644 --- a/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po +++ b/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po @@ -100,12 +100,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/pl/nft-qos.po b/applications/luci-app-nft-qos/po/pl/nft-qos.po index 08c3b8f531..d64b7b97a9 100644 --- a/applications/luci-app-nft-qos/po/pl/nft-qos.po +++ b/applications/luci-app-nft-qos/po/pl/nft-qos.po @@ -101,12 +101,12 @@ msgstr "Adres IP" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" -msgstr "Adres IP (V4 / V6)" +msgid "IP Address (v4 / v6)" +msgstr "Adres IP (V4 / v6)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "Adres IP (tylko v4)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -131,16 +131,16 @@ msgid "NFT-QoS Settings" msgstr "Ustawienia NFT-QoS" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "Interfejs sieciowy dla kształtowania ruchu, np. br-lan, eth0.1, eth0 itp." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "Sieć do zastosowania, np. 192.168.1.0/24, 10.2.0.0/16, itp." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "Sieć do zastosowania, np. AAAA::BBBB/64, CCCC::1/128, itp." #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -162,7 +162,7 @@ msgstr "Protokół" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/pt/nft-qos.po b/applications/luci-app-nft-qos/po/pt/nft-qos.po index 9b1d95e0b9..f8fb5135b9 100644 --- a/applications/luci-app-nft-qos/po/pt/nft-qos.po +++ b/applications/luci-app-nft-qos/po/pt/nft-qos.po @@ -100,13 +100,13 @@ msgstr "Endereço IP" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" -msgstr "Endereço IP (V4 / V6)" +msgid "IP Address (v4 / v6)" +msgstr "Endereço IP (v4 / v6)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" -msgstr "Endereço IP (apenas V4)" +msgid "IP Address (v4 Only)" +msgstr "Endereço IP (apenas v4)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 msgid "Limit Enable" @@ -130,18 +130,18 @@ msgid "NFT-QoS Settings" msgstr "Configurações NFT-QoS" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "Interface de Rede para Traffic Shaping, por exemplo, br-lan, eth0.1, eth0, " -"etc" +"etc." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" -msgstr "Rede a aplicar, por exemplo, 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." +msgstr "Rede a aplicar, por exemplo, 192.168.1.0/24, 10.2.0.0/16, etc." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" -msgstr "Rede a aplicar, por exemplo, AAAA::BBBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." +msgstr "Rede a aplicar, por exemplo, AAAA::BBBBB/64, CCCC::1/128, etc." #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" @@ -162,7 +162,7 @@ msgstr "Protocolo" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "Qos sobre Nftables" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po b/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po index 19bc9677ba..10c1c0c97b 100644 --- a/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po +++ b/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po @@ -100,13 +100,13 @@ msgstr "Endereço IP" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" -msgstr "Endereço IP (V4 / V6)" +msgid "IP Address (v4 / v6)" +msgstr "Endereço IP (v4 / v6)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" -msgstr "Endereço IP (apenas V4)" +msgid "IP Address (v4 Only)" +msgstr "Endereço IP (apenas v4)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 msgid "Limit Enable" @@ -130,18 +130,18 @@ msgid "NFT-QoS Settings" msgstr "Configurações NFT-QoS" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "A Interface de rede para realizar Traffic Shaping, por exemplo, br-lan, " -"eth0.1, eth0.1, eth0, etc" +"eth0.1, eth0.1, eth0, etc." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" -msgstr "Rede a ser aplicada, por exemplo, 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." +msgstr "Rede a ser aplicada, por exemplo, 192.168.1.0/24, 10.2.0.0/16, etc." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" -msgstr "Rede a ser aplicada, por exemplo, AAAA::BBBB/64, CCCC:1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." +msgstr "Rede a ser aplicada, por exemplo, AAAA::BBBB/64, CCCC:1/128, etc." #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" @@ -162,7 +162,7 @@ msgstr "Protocolo" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "Qos sobre Nftables" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/ro/nft-qos.po b/applications/luci-app-nft-qos/po/ro/nft-qos.po index d14b7e48d7..ea51c00052 100644 --- a/applications/luci-app-nft-qos/po/ro/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ro/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/ru/nft-qos.po b/applications/luci-app-nft-qos/po/ru/nft-qos.po index dd90bc5317..e829960f7e 100644 --- a/applications/luci-app-nft-qos/po/ru/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ru/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/sk/nft-qos.po b/applications/luci-app-nft-qos/po/sk/nft-qos.po index 6807137602..05782fd8eb 100644 --- a/applications/luci-app-nft-qos/po/sk/nft-qos.po +++ b/applications/luci-app-nft-qos/po/sk/nft-qos.po @@ -94,12 +94,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -124,15 +124,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -154,7 +154,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/sv/nft-qos.po b/applications/luci-app-nft-qos/po/sv/nft-qos.po index 465c235ea6..bfc9ce8af5 100644 --- a/applications/luci-app-nft-qos/po/sv/nft-qos.po +++ b/applications/luci-app-nft-qos/po/sv/nft-qos.po @@ -100,12 +100,12 @@ msgstr "IP-adress" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "Protokoll" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/tr/nft-qos.po b/applications/luci-app-nft-qos/po/tr/nft-qos.po index 761eb07df9..cb1a48063f 100644 --- a/applications/luci-app-nft-qos/po/tr/nft-qos.po +++ b/applications/luci-app-nft-qos/po/tr/nft-qos.po @@ -100,12 +100,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/uk/nft-qos.po b/applications/luci-app-nft-qos/po/uk/nft-qos.po index 34241b60fe..d82addad2d 100644 --- a/applications/luci-app-nft-qos/po/uk/nft-qos.po +++ b/applications/luci-app-nft-qos/po/uk/nft-qos.po @@ -101,12 +101,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -131,15 +131,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -161,7 +161,7 @@ msgstr "Протокол" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/vi/nft-qos.po b/applications/luci-app-nft-qos/po/vi/nft-qos.po index dcbba216a1..faf04cea85 100644 --- a/applications/luci-app-nft-qos/po/vi/nft-qos.po +++ b/applications/luci-app-nft-qos/po/vi/nft-qos.po @@ -100,12 +100,12 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" +msgid "IP Address (v4 / v6)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" +msgid "IP Address (v4 Only)" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 @@ -130,15 +130,15 @@ msgid "NFT-QoS Settings" msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -160,7 +160,7 @@ msgstr "Giao thức" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/zh-cn/nft-qos.po b/applications/luci-app-nft-qos/po/zh-cn/nft-qos.po index 2a0e90d827..0ebfae2dfd 100644 --- a/applications/luci-app-nft-qos/po/zh-cn/nft-qos.po +++ b/applications/luci-app-nft-qos/po/zh-cn/nft-qos.po @@ -106,13 +106,13 @@ msgstr "IP 地址" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" -msgstr "IP 地址(V4 / V6)" +msgid "IP Address (v4 / v6)" +msgstr "IP 地址(v4 / v6)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" -msgstr "IP 地址(仅 V4)" +msgid "IP Address (v4 Only)" +msgstr "IP 地址(仅 v4)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 msgid "Limit Enable" @@ -136,15 +136,15 @@ msgid "NFT-QoS Settings" msgstr "NFT-QoS 设置" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "流量整形的目标网络接口,例如br-lan、eth0.1、eth0等" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "将要应用规则的网络,例如192.168.1.0/24、10.2.0.0/16等" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "将要应用规则的网络,例如AAAA::BBBB/64、CCCC::1/128等" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -166,7 +166,7 @@ msgstr "协议" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "QoS Nftables 版" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 diff --git a/applications/luci-app-nft-qos/po/zh-tw/nft-qos.po b/applications/luci-app-nft-qos/po/zh-tw/nft-qos.po index 5be9d8abf6..11c9be0fac 100644 --- a/applications/luci-app-nft-qos/po/zh-tw/nft-qos.po +++ b/applications/luci-app-nft-qos/po/zh-tw/nft-qos.po @@ -105,13 +105,13 @@ msgstr "IP 位址" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 -msgid "IP Address(V4 / V6)" -msgstr "IP 位址(V4 / V6)" +msgid "IP Address (v4 / v6)" +msgstr "IP 位址(v4 / v6)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 -msgid "IP Address(V4 Only)" -msgstr "IP 位址(僅 V4)" +msgid "IP Address (v4 Only)" +msgstr "IP 位址(僅 v4)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 msgid "Limit Enable" @@ -135,15 +135,15 @@ msgid "NFT-QoS Settings" msgstr "NFT-QoS 設定" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 -msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "流量整形的目標網路介面,例如br-lan、eth0.1、eth0等" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 -msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "將要應用規則的網路,例如192.168.1.0/24、10.2.0.0/16等" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 -msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "將要應用規則的網路,例如AAAA::BBBB/64、CCCC::1/128等" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 @@ -165,7 +165,7 @@ msgstr "協議" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 -msgid "Qos over Nftables" +msgid "QoS over Nftables" msgstr "QoS Nftables 版" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 |