Paul Donald [Thu, 21 May 2026 20:50:04 +0000 (23:50 +0300)]
luci-proto-ipv6: 6to4 fix
This hasn't knowingly caused problems before now, an indicator
that it goes lesser or unused hitherto.
Signed-off-by: Paul Donald <redacted>
Paul Donald [Thu, 21 May 2026 20:43:15 +0000 (23:43 +0300)]
luci-proto-xfrm: ensure stub function getDevices() returns null
Signed-off-by: Paul Donald <redacted>
Paul Donald [Tue, 26 May 2026 15:47:41 +0000 (18:47 +0300)]
luci-proto-openvpn: remove duplicate entries
harmless
Signed-off-by: Paul Donald <redacted>
tokisaki galaxy [Tue, 26 May 2026 10:48:03 +0000 (10:48 +0000)]
luci-app-tailscale: add switch DNSmode, fw set
add switch DNSMode
add fw now donot duplicate
fw remove WAN-> TAILSCALE FORWARD CHAIN
Signed-off-by: tokisaki galaxy <redacted>
Paul Donald [Wed, 27 May 2026 11:39:37 +0000 (14:39 +0300)]
github: relax commit subject restrictions
Signed-off-by: Paul Donald <redacted>
Andy Chiang [Wed, 20 May 2026 08:43:24 +0000 (15:43 +0700)]
luci-app-firewall: keep values in config file
add `rmempty` to keep values in config file
Signed-off-by: Andy Chiang <redacted>
Andy Chiang [Wed, 20 May 2026 08:28:01 +0000 (15:28 +0700)]
luci-mod-network: keep steering_flows in config file
remove `o.default` to keep steering_flows in config file
Signed-off-by: Andy Chiang <redacted>
Andy Chiang [Wed, 20 May 2026 07:45:42 +0000 (14:45 +0700)]
luci-app-ddns: add rmempty for interface
ddns-scripts's hotplug script need "interface" value, so keep it in ddns config file
Signed-off-by: Andy Chiang <redacted>
Andy Chiang [Tue, 19 May 2026 16:42:18 +0000 (23:42 +0700)]
luci-mod-network: dhcpv4 option uses '' instead of "disabled"
"disabled" is the default dhcpv4 option in odhcpd.
Which has the same effect as not defining it.
Using '' will prevent unnecessary parameters from being written to the flash.
Link https://github.com/openwrt/odhcpd/blob/master/README.md
Signed-off-by: Andy Chiang <redacted>
Andy Chiang [Tue, 19 May 2026 16:30:21 +0000 (23:30 +0700)]
Revert "luci-mod-network: ra_preference option uses '' instead of "medium""
This reverts commit
6bcdc18d65c8aee62f0344e1688868edae45d1f7.
Since the bug where a write operation is executed when the input
matches the default has been fixed in form.js, this workaround
is no longer needed and is being reverted.
Signed-off-by: Andy Chiang <redacted>
Andy Chiang [Tue, 19 May 2026 16:29:07 +0000 (23:29 +0700)]
luci-base: fix uci write bug when input value equals default
Avoid executing unnecessary write operations to flash/UCI when the
user's form selection or input exactly matches the component's
`default` configuration.
Previously, if a field had a valid value identical to its default,
it would bypass the empty check and trigger a `write()` call, leading
to configuration bloating. This change ensures that such values are
correctly intercepted and handled via `this.remove()` to keep the
underlying configuration file clean and precise.
Signed-off-by: Andy Chiang <redacted>
Shannon Barber [Sun, 12 Apr 2026 21:56:12 +0000 (17:56 -0400)]
luci-theme-material: add dark mode support
Add dark mode following the luci-theme-bootstrap pattern: auto-detect
via prefers-color-scheme, with forced MaterialDark/MaterialLight
variants. Replace ~60 hardcoded colors in cascade.css with CSS
variables and override them in a :root[data-darkmode="true"] block.
Signed-off-by: Shannon Barber <redacted>
Dirk Brenken [Tue, 12 May 2026 19:28:44 +0000 (21:28 +0200)]
luci-app-lxc: fix authenticated path traversal and ACL bypass (host root)
* ucode fixes:
- tighten `is_valid_lxc_name` regex to `^[A-Za-z0-9_][A-Za-z0-9_-]{0,63}$`
- apply the validator in `lxc_configuration_get` and `lxc_configuration_set` before any filesystem access
- reject the `'lxc error: …'` sentinel string returned by `lxc_get_config_path()` on failure,
rather than concatenating it into a path.
- shellquote `LXC_URL` in `lxc_get_downloadable` and `lxc_create`
* ACL fix: add `depends.acl = ["luci-app-lxc"]` to each of the five backend entries,
so the routes share the same authorization gate as the view
Signed-off-by: Dirk Brenken <redacted>
Bruxism [Wed, 8 Apr 2026 02:54:04 +0000 (21:54 -0500)]
luci-app-attendedsysupgrade: rewrite README.md
README.md rewritten for improvements to spelling, grammar, and clarity.
Signed-off-by: Bruxism <redacted>
Paul Donald [Wed, 27 May 2026 10:38:01 +0000 (13:38 +0300)]
luci-mod-system: improve handling of absent plugins
add cleanup functionality; remove orphaned config for absent plugins
render placeholder title when plugin is absent
follow-up to
617f364333c10ebe1780556db4a88b3019cffb97
Signed-off-by: Paul Donald <redacted>
Dirk Brenken [Tue, 26 May 2026 15:19:57 +0000 (17:19 +0200)]
luci-app-adblock: update 4.5.5-6
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Christian Korber [Tue, 26 May 2026 07:15:30 +0000 (09:15 +0200)]
luci-base: remove unnecessary constraint
This constraint didn't interfere with the clone bug(#8613) and is
therefore removed.
Signed-off-by: Christian Korber <redacted>
Xing-Kai Wang [Sun, 10 May 2026 15:59:55 +0000 (23:59 +0800)]
luci-proto-openfortivpn: add realm parameter support
Add a 'realm' field in the advanced tab so users can easily pass this
parameter to the underlying netifd handler.
Signed-off-by: Xing-Kai Wang <redacted>
Mario Andrés Pérez [Mon, 27 Apr 2026 19:32:14 +0000 (21:32 +0200)]
luci-app-package-manager: handle versioned provides from apk query
'apk query --format json...' outputs the complete provides fields
including the version.
...
"provides": [
"firewall4-any",
"uci-firewall=2025.03.17~
b6e51575-r2"
],
...
Versus the previous 'apk info --full'
...
Package: firewall4
Version: 2025.03.17~
b6e51575-r2
Depends: kmod-nft-core, kmod-nft-fib, kmod-nft-nat, kmod-nft-offload, libc, nftables-json, ucode, ucode-mod-fs, ucode-mod-ubus, ucode-mod-uci
Provides: firewall4-any, uci-firewall
...
Strip the '=<version>' suffix before gathering the providers chain.
This was causing some incorrent dependecy issues (ie. uci-firewall not
detected as satisfied) in the luci package-manager app.
Fixes: https://github.com/openwrt/luci/issues/8563
Fixes: https://github.com/openwrt/luci/issues/8581
Fixes: https://github.com/openwrt/openwrt/issues/23004
Fixes: https://github.com/openwrt/openwrt/issues/23136
Fixes: 1624418f64db1bef1ec8e5fafd42bec63cd0adc0 ("package-manager: migrate to apk-tools JSON API")
Signed-off-by: Mario Andrés Pérez <redacted>
Christian Korber [Fri, 22 May 2026 10:03:46 +0000 (12:03 +0200)]
luci-app-firewall: keep enabled on cloning
In order to keep option enabled o.rmempty is set to false.
Signed-off-by: Christian Korber <redacted>
Christian Korber [Fri, 22 May 2026 10:00:27 +0000 (12:00 +0200)]
luci-base: keep not yet rendered clone elements
`handleClone` triggers `checkDepends` and also `parse` on `this.map.save` which
in turn also removes not yet rendered elements like clones.
This is not wanted and therefore guarded against.
Signed-off-by: Christian Korber <redacted>
Christian Korber [Thu, 21 May 2026 14:20:18 +0000 (16:20 +0200)]
luci-base: fix order of clone bug
If a rule was manipulated via cli, the rule was appended to the end if
cloned.
Somehow the reason appears to be that `name` was incorrectly assigned,
because name was the event Object this way.
Signed-off-by: Christian Korber <redacted>
Hosted Weblate [Fri, 22 May 2026 21:17:41 +0000 (23:17 +0200)]
Translated using Weblate (Czech)
Currently translated at 98.4% (506 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/cs/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/lt/
Translated using Weblate (Lithuanian)
Currently translated at 91.8% (2776 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Czech)
Currently translated at 100.0% (269 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/cs/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (192 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 99.6% (296 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lt/
Translated using Weblate (Czech)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/cs/
Translated using Weblate (Lithuanian)
Currently translated at 58.3% (300 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lt/
Translated using Weblate (Czech)
Currently translated at 99.9% (3021 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (514 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/lt/
Translated using Weblate (Czech)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/cs/
Translated using Weblate (Korean)
Currently translated at 87.8% (2656 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (164 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Czech)
Currently translated at 100.0% (297 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/cs/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (269 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/lt/
Translated using Weblate (Czech)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/cs/
Translated using Weblate (Lithuanian)
Currently translated at 88.6% (226 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/lt/
Translated using Weblate (Czech)
Currently translated at 99.3% (163 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/cs/
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hoseok Seo <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Pavel Borecki <redacted>
Co-authored-by: 為什麼不加空格 <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hoseok Seo <redacted>
Signed-off-by: Pavel Borecki <redacted>
Signed-off-by: 為什麼不加空格 <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/lt/
Translation: OpenWrt/LuCI/applications/firewall
Dirk Brenken [Fri, 22 May 2026 18:48:28 +0000 (20:48 +0200)]
luci-app-travelmate: update 2.4.5-3
- fixed promise chaining and ifup race in handleAction()
- fixed WPA3/SAE QR-codes and escape special characters
- stabilized the setup modal handler (return promise, add catch)
- fixed the cipher classification for WPA/WPA2 scan results: resolveCipher()
- various other fixes and improvements
Signed-off-by: Dirk Brenken <redacted>
Paul Donald [Fri, 22 May 2026 10:39:37 +0000 (13:39 +0300)]
luci-app-uhttpd: i18n context for x509 regional info
Closes #8651
Signed-off-by: Paul Donald <redacted>
Hosted Weblate [Thu, 21 May 2026 05:05:07 +0000 (07:05 +0200)]
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/uk/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.8% (252 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (164 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3022 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 70.1% (179 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/zh_Hant/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (192 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/uk/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 67.9% (55 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 83.5% (71 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/uk/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.7% (125 of 165 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (514 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Lithuanian)
Currently translated at 98.9% (196 of 198 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lt/
Translated using Weblate (Korean)
Currently translated at 74.1% (46 of 62 strings)
Translated using Weblate (German)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/de/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.2% (125 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 83.3% (90 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 61.7% (42 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/zh_Hant/
Translated using Weblate (Portuguese)
Currently translated at 98.8% (266 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt/
Translated using Weblate (Korean)
Currently translated at 61.0% (36 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 51.6% (78 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 99.2% (267 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 94.4% (187 of 198 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/lt/
Translated using Weblate (Lithuanian)
Currently translated at 98.9% (294 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Korean)
Currently translated at 85.8% (2595 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 77.7% (126 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 86.2% (232 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 95.7% (157 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.5% (251 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3022 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 57.9% (298 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 94.4% (118 of 125 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 85.3% (193 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 62.4% (103 of 165 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 94.9% (94 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (297 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (297 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Arabic)
Currently translated at 2.5% (3 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ar/
Translated using Weblate (Arabic)
Currently translated at 12.9% (16 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ar/
Translated using Weblate (Korean)
Currently translated at 85.8% (2594 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3022 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Arabic)
Currently translated at 75.0% (2268 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ar/
Translated using Weblate (Irish)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ga/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (514 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Irish)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/ga/
Translated using Weblate (Korean)
Currently translated at 47.1% (140 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ko/
Translated using Weblate (Arabic)
Currently translated at 16.2% (6 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ar/
Translated using Weblate (Irish)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ga/
Translated using Weblate (Arabic)
Currently translated at 43.2% (35 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/ar/
Translated using Weblate (Irish)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (514 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/es/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (514 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Irish)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ga/
Translated using Weblate (Arabic)
Currently translated at 90.6% (78 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/ar/
Translated using Weblate (Irish)
Currently translated at 100.0% (297 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ga/
Translated using Weblate (Korean)
Currently translated at 49.4% (133 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ko/
Translated using Weblate (Irish)
Currently translated at 100.0% (514 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (269 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (164 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (3022 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/ga/
Translated using Weblate (Korean)
Currently translated at 43.2% (71 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3022 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Arabic)
Currently translated at 15.1% (5 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ar/
Translated using Weblate (Arabic)
Currently translated at 13.6% (23 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ar/
Translated using Weblate (Arabic)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ga/
Translated using Weblate (Arabic)
Currently translated at 33.3% (24 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ar/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hans/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 33.0% (170 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt_BR/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (514 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hans/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.2% (170 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Polish)
Currently translated at 100.0% (297 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pl/
Translated using Weblate (Spanish)
Currently translated at 86.5% (142 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/es/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 4.4% (3 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 66.2% (53 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 8.6% (14 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/pt_BR/
Translated using Weblate (Spanish)
Currently translated at 100.0% (3022 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (269 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hans/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 99.8% (3016 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Polish)
Currently translated at 100.0% (269 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pl/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3022 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/uk/
Translated using Weblate (Polish)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/pl/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pl/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 17.6% (21 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/pt_BR/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (269 of 269 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Ukrainian)
Currently translated at 99.6% (296 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (164 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/pl/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (514 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pl/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 13.3% (15 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pt_BR/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (514 of 514 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (164 of 164 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/zh_Hans/
Translated using Weblate (Ukrainian)
Currently translated at 99.8% (3016 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (297 of 297 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (3022 of 3022 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pl/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Co-authored-by: Aindriú Mac Giolla Eoin <redacted>
Co-authored-by: Dan <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Franco Castillo <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: Matthaiks <redacted>
Co-authored-by: Nowar Hashem <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: ssantos <redacted>
Co-authored-by: 大王叫我来巡山 <redacted>
Co-authored-by: 為什麼不加空格 <redacted>
Signed-off-by: Aindriú Mac Giolla Eoin <redacted>
Signed-off-by: Dan <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Franco Castillo <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: Matthaiks <redacted>
Signed-off-by: Nowar Hashem <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: ZW <redacted>
Signed-off-by: ssantos <redacted>
Signed-off-by: 大王叫我来巡山 <redacted>
Signed-off-by: 為什麼不加空格 <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/pt/
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/wol
Dirk Brenken [Wed, 20 May 2026 20:54:50 +0000 (22:54 +0200)]
luci-app-adblock: update 4.5.5-5
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Jostein Kjønigsen [Wed, 20 May 2026 18:45:28 +0000 (20:45 +0200)]
luci-plugin-csp: add configuration options for CSP
- ucode: add configured CSP HTTP headers
- js: add dropdown to select CSP-mode and textbox to configure custom CSP policy
Signed-off-by: Jostein Kjønigsen <redacted>
Paul Donald [Wed, 20 May 2026 19:18:22 +0000 (22:18 +0300)]
luci-mod-system: add write for luci_plugins
This allows uci calls to write skeleton configs for new plugins
follow-up to
617f364333c10ebe1780556db4a88b3019cffb97
Signed-off-by: Paul Donald <redacted>
Andy Chiang [Fri, 15 May 2026 11:23:26 +0000 (18:23 +0700)]
luci-mod-network: ra_preference option uses '' instead of "medium"
"medium" is the default ra_preference option in odhcpd.
Which has the same effect as not defining it.
Using '' will prevent unnecessary parameters from being written to the flash.
Link https://github.com/openwrt/odhcpd/blob/master/README.md
Signed-off-by: Andy Chiang <redacted>
Dirk Brenken [Mon, 18 May 2026 21:23:50 +0000 (23:23 +0200)]
luci-app-banip: update 1.8.8-4
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Florian Eckert [Thu, 12 Feb 2026 11:45:24 +0000 (12:45 +0100)]
luci-base: replace ufpd access check with service run check
It is not enough simply to check whether the tool is installed. It is
essential to check whether the service is actually running. After all,
we need the functionality provided by the service.
Signed-off-by: Florian Eckert <redacted>
Hannu Nyman [Sun, 17 May 2026 16:50:38 +0000 (19:50 +0300)]
treewide: sync translations
Sync.
Signed-off-by: Hannu Nyman <redacted>
Hosted Weblate [Sun, 17 May 2026 16:43:28 +0000 (18:43 +0200)]
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 56.7% (21 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 77.6% (156 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt_BR/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 85.6% (227 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.1% (86 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/zh_Hant/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.2% (170 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 74.1% (23 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/zh_Hant/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 2.6% (3 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/pt_BR/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 79.4% (89 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.5% (191 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 99.4% (195 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.2% (288 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 13.3% (15 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 89.1% (131 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hant/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 1.6% (1 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 6.4% (7 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/pt_BR/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 65.4% (53 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/zh_Hant/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 94.1% (16 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/pt_BR/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.7% (79 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 69.7% (113 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/zh_Hant/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 3.9% (6 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 33.7% (170 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Added translation using Weblate (Portuguese (Brazil))
Translated using Weblate (Portuguese (Brazil))
Currently translated at 33.7% (170 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.2% (170 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 99.3% (294 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 53.5% (15 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/pt_BR/
Translated using Weblate (Korean)
Currently translated at 85.9% (2591 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 92.9% (66 of 71 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 7.9% (12 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 83.5% (71 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 69.6% (23 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 37.7% (17 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 58.8% (296 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 24.2% (16 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 36.9% (17 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 90.4% (113 of 125 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 8.6% (14 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/pt_BR/
Translated using Weblate (Korean)
Currently translated at 99.4% (191 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 16.4% (42 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 2.0% (3 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 12.5% (14 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 57.1% (84 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 96.3% (53 of 55 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 2.9% (2 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 5.5% (6 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 85.0% (51 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.5% (14 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 87.8% (224 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 99.0% (101 of 102 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 33.7% (170 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 94.2% (213 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/pt_BR/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Czech)
Currently translated at 99.9% (3015 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Czech)
Currently translated at 99.0% (108 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/cs/
Translated using Weblate (Czech)
Currently translated at 99.9% (3015 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/cs/
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: Pavel Borecki <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: 為什麼不加空格 <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: Pavel Borecki <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: 為什麼不加空格 <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt_BR/
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Andy Chiang [Sat, 25 Apr 2026 05:59:18 +0000 (12:59 +0700)]
luci-mod-network: mptcp option uses '' instead of "off"
In the mptcp options, "off" is the default option, which has the same effect as not defining it.
Using '' will prevent unnecessary parameters from being written to the flash.
Link https://openwrt.org/docs/guide-user/network/mptcp
Signed-off-by: Andy Chiang <redacted>
Hosted Weblate [Fri, 15 May 2026 10:44:43 +0000 (12:44 +0200)]
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/uk/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Portuguese)
Currently translated at 25.2% (30 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/pt/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Portuguese)
Currently translated at 31.8% (21 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/pt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 83.4% (247 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/
Translated using Weblate (Portuguese)
Currently translated at 25.0% (12 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/pt/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/uk/
Translated using Weblate (Latvian)
Currently translated at 33.3% (7 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/lv/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 78.7% (85 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/zh_Hant/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (81 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (77 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 74.8% (137 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/zh_Hant/
Translated using Weblate (Portuguese)
Currently translated at 28.5% (32 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pt/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (192 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (47 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/uk/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/pt/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/uk/
Translated using Weblate (Portuguese)
Currently translated at 18.1% (14 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/pt/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/uk/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/uk/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.6% (74 of 75 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/uk/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/uk/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.6% (117 of 125 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/uk/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/cs/
Translated using Weblate (Czech)
Currently translated at 99.9% (3015 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/cs/
Translated using Weblate (Czech)
Currently translated at 99.2% (419 of 422 strings)
Translated using Weblate (Lithuanian)
Currently translated at 98.6% (292 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Czech)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/cs/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Czech)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (71 of 71 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/cs/
Translated using Weblate (Lithuanian)
Currently translated at 81.1% (207 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Czech)
Currently translated at 100.0% (296 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Czech)
Currently translated at 99.9% (3015 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (Czech)
Currently translated at 99.4% (182 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/cs/
Translated using Weblate (Czech)
Currently translated at 97.2% (70 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (81 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/cs/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/lt/
Translated using Weblate (Portuguese)
Currently translated at 31.8% (21 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Lithuanian)
Currently translated at 97.9% (290 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Portuguese)
Currently translated at 9.9% (15 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 84.7% (61 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/pt_BR/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt/
Translated using Weblate (Lithuanian)
Currently translated at 58.0% (292 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Portuguese)
Currently translated at 9.2% (11 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/pt/
Translated using Weblate (Portuguese)
Currently translated at 18.1% (14 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Portuguese)
Currently translated at 8.2% (9 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/lt/
Translated using Weblate (Portuguese)
Currently translated at 91.3% (42 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/pt/
Translated using Weblate (Portuguese)
Currently translated at 99.6% (295 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt/
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2775 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Portuguese)
Currently translated at 94.6% (214 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/pt/
Translated using Weblate (Portuguese)
Currently translated at 78.6% (158 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Portuguese)
Currently translated at 77.5% (62 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/pt/
Translated using Weblate (Lithuanian)
Currently translated at 88.0% (132 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Korean)
Currently translated at 46.9% (86 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ko/
Translated using Weblate (Portuguese)
Currently translated at 93.9% (172 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/pt/
Translated using Weblate (Portuguese)
Currently translated at 97.2% (36 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (192 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Portuguese)
Currently translated at 4.4% (5 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/pt/
Translated using Weblate (Portuguese)
Currently translated at 83.8% (26 of 31 strings)
Translated using Weblate (Portuguese)
Currently translated at 32.4% (163 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/lt/
Translated using Weblate (Lithuanian)
Currently translated at 99.5% (225 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 24.2% (40 of 165 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Portuguese)
Currently translated at 24.3% (62 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt/
Translated using Weblate (Lithuanian)
Currently translated at 80.7% (206 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Portuguese)
Currently translated at 10.1% (18 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 35.8% (29 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/pt_BR/
Translated using Weblate (Portuguese)
Currently translated at 25.0% (12 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/lt/
Co-authored-by: Dan <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Edgars Andersons <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: Ievgen Ievgen <redacted>
Co-authored-by: Pavel Borecki <redacted>
Co-authored-by: Sergey Melnichuk <redacted>
Co-authored-by: Sviatoslav Sydorenko <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: Zorya Zvenoch <redacted>
Co-authored-by: ssantos <redacted>
Co-authored-by: 為什麼不加空格 <redacted>
Signed-off-by: Dan <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Edgars Andersons <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: Pavel Borecki <redacted>
Signed-off-by: Sergey Melnichuk <redacted>
Signed-off-by: Sviatoslav Sydorenko <redacted>
Signed-off-by: ZW <redacted>
Signed-off-by: ssantos <redacted>
Signed-off-by: 為什麼不加空格 <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/uk/
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Bastiaan Stougie [Sat, 21 Mar 2026 19:46:26 +0000 (20:46 +0100)]
luci-proto-batman-adv: protocol batadv_vlan
A batman-adv VLAN interface has protocol 'batadv_vlan' and allows
configuration of option 'ap_isolation' for a batman-adv VLAN device.
This adds support for configuration of such an interface to LuCI.
Signed-off-by: Bastiaan Stougie <redacted>
Paul Donald [Thu, 14 May 2026 12:11:39 +0000 (15:11 +0300)]
luci-app-dockerman: select log_driver for new containers
Signed-off-by: Serhii Ivanov <redacted>
Paul Donald [Thu, 14 May 2026 12:08:50 +0000 (15:08 +0300)]
luci-app-dockerman: links for port bindings
- handling of hostIP in ports
- retain during container clone
- make link clickable
- provide router host if ip is general
- provide container host if specific
Signed-off-by: Serhii Ivanov <redacted>
Paul Donald [Thu, 14 May 2026 12:00:45 +0000 (15:00 +0300)]
luci-app-dockerman: network aliases feature
Add network aliases to container view/create.
Also init with ipv6 settings.
Signed-off-by: Serhii Ivanov <redacted>
Paul Donald [Thu, 14 May 2026 11:56:22 +0000 (14:56 +0300)]
luci-app-dockerman: fixes
- fill network selection when clicking container net "connect"
- provide container ID for net dis/connect
- correct net link in network overview
- proper split of arguments in CMD
- harden API endpoint access to ACL
- allow stop/kill in restarting state
- show IP(v4) from built-in networks
Signed-off-by: Serhii Ivanov <redacted>
Signed-off-by: Paul Donald <redacted>
Zadkiel AHARONIAN [Sun, 12 Apr 2026 16:09:41 +0000 (18:09 +0200)]
luci-mod-system: add current host to reset reconnect
When performing a sysupgrade without keeping settings, the reconnect
logic only tries the hardcoded 192.168.1.1 and openwrt.lan. This fails
silently when the device uses a different static IP.
Prepend window.location.host to the reconnect target list, keeping the
existing defaults as fallbacks. This matches the behavior already used
when settings are kept.
Common use case: custom images built with the OpenWrt Image Builder and
pre-configured static IPs land on a known address that differs from the
defaults after a factory reset. The current host is the most likely
correct target since the user is already connected to it.
Signed-off-by: Zadkiel AHARONIAN <redacted>
Paul Donald [Thu, 14 May 2026 10:33:42 +0000 (13:33 +0300)]
luci-proto-openvpn: align askpass parameter with proto handler
the proto handlers look for `askpass` which is a file type param.
Closes #8630
Signed-off-by: David Perez <redacted>
Signed-off-by: Paul Donald <redacted>
Andy Chiang [Mon, 11 May 2026 06:52:21 +0000 (13:52 +0700)]
luci-base: fix "null" text appearing in modal
fix "null" text appearing in modal
UPDATE: added {} in for-loop for readability - CK
Signed-off-by: Andy Chiang <redacted>
Lukas Voegl [Mon, 11 May 2026 13:47:52 +0000 (15:47 +0200)]
luci-app-strongswan-swanctl: merge SAs and connections
Merges strongSwan conns and SAs into a detailed table of connections and a table of children for each of them.
Signed-off-by: Lukas Voegl <redacted>
Hosted Weblate [Tue, 12 May 2026 09:09:16 +0000 (11:09 +0200)]
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (22 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (2 of 2 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (28 of 28 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3 of 3 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (47 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (90 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (77 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (151 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (30 of 30 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (71 of 71 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/olsr-viz
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-viz/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (192 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (81 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (296 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (40 of 40 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/uk/
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Oleksandr Yurov <redacted>
Signed-off-by: Oleksandr Yurov <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilebrowser/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-battstatus/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/uk/
Translation: OpenWrt/LuCI/applications/antiblock
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/filebrowser
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-battstatus
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Hosted Weblate [Mon, 11 May 2026 15:03:47 +0000 (17:03 +0200)]
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (296 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Czech)
Currently translated at 97.6% (169 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/cs/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Czech)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (90 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/uk/
Translated using Weblate (Korean)
Currently translated at 85.6% (2582 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (22 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Czech)
Currently translated at 98.6% (292 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/cs/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (151 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/uk/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/pt/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/uk/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (47 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/pt/
Translated using Weblate (Czech)
Currently translated at 99.9% (3015 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (77 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (40 of 40 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/uk/
Translated using Weblate (Czech)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (192 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (71 of 71 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (47 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (28 of 28 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/uk/
Translated using Weblate (Ukrainian)
Currently translated at 96.8% (186 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 99.6% (254 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (22 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/uk/
Translated using Weblate (Ukrainian)
Currently translated at 95.0% (174 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 98.9% (279 of 282 strings)
Translated using Weblate (Ukrainian)
Currently translated at 95.8% (46 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (28 of 28 strings)
Translated using Weblate (Ukrainian)
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 98.2% (110 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 99.0% (108 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/uk/
Translated using Weblate (Ukrainian)
Currently translated at 97.7% (88 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Ukrainian)
Currently translated at 84.7% (128 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 93.2% (276 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 99.4% (172 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/uk/
Translated using Weblate (Ukrainian)
Currently translated at 96.8% (62 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (77 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (47 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/uk/
Translated using Weblate (Ukrainian)
Currently translated at 97.5% (196 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 98.3% (59 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/uk/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/uk/
Translated using Weblate (Lithuanian)
Currently translated at 56.0% (84 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Ukrainian)
Currently translated at 92.9% (275 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 8.6% (14 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/uk/
Translated using Weblate (Lithuanian)
Currently translated at 95.2% (119 of 125 strings)
Translated using Weblate (Ukrainian)
Currently translated at 96.9% (2923 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 54.0% (20 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/uk/
Translated using Weblate (Lithuanian)
Currently translated at 71.2% (77 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Lithuanian)
Currently translated at 68.1% (77 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Ukrainian)
Currently translated at 98.2% (110 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Ukrainian)
Currently translated at 98.3% (59 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/uk/
Translated using Weblate (Ukrainian)
Currently translated at 96.8% (186 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/uk/
Translated using Weblate (Ukrainian)
Currently translated at 99.4% (172 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 99.6% (254 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/uk/
Translated using Weblate (Ukrainian)
Currently translated at 84.7% (128 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 97.7% (88 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/uk/
Translated using Weblate (Ukrainian)
Currently translated at 95.0% (174 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/uk/
Translated using Weblate (Ukrainian)
Currently translated at 34.1% (172 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/uk/
Translated using Weblate (Ukrainian)
Currently translated at 15.9% (18 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/uk/
Translated using Weblate (Ukrainian)
Currently translated at 33.7% (170 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 95.8% (46 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/uk/
Translated using Weblate (Ukrainian)
Currently translated at 95.0% (174 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/uk/
Translated using Weblate (Ukrainian)
Currently translated at 54.0% (20 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 97.7% (88 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (71 of 71 strings)
Translated using Weblate (Ukrainian)
Currently translated at 98.9% (90 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 97.5% (196 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Ukrainian)
Currently translated at 96.9% (2923 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (22 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/uk/
Translated using Weblate (Ukrainian)
Currently translated at 15.0% (17 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/uk/
Translated using Weblate (Ukrainian)
Currently translated at 3.2% (5 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/uk/
Translated using Weblate (Ukrainian)
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Ukrainian)
Currently translated at 84.7% (128 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/babeld
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbabeld/uk/
Translated using Weblate (Ukrainian)
Currently translated at 8.0% (13 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/uk/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 99.6% (254 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/uk/
Translated using Weblate (Ukrainian)
Currently translated at 99.4% (172 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 6.4% (7 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/uk/
Translated using Weblate (Ukrainian)
Currently translated at 97.3% (109 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/uk/
Translated using Weblate (Hungarian)
Currently translated at 82.2% (2480 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/hu/
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: Oleksandr Yurov <redacted>
Co-authored-by: Pavel Borecki <redacted>
Co-authored-by: hmzs <redacted>
Co-authored-by: ssantos <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: Oleksandr Yurov <redacted>
Signed-off-by: Pavel Borecki <redacted>
Signed-off-by: hmzs <redacted>
Signed-off-by: ssantos <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/uk/
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Dirk Brenken [Sat, 9 May 2026 19:42:22 +0000 (21:42 +0200)]
luci-app-travelmate: release 2.4.5-1
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Hosted Weblate [Sat, 9 May 2026 00:11:46 +0000 (02:11 +0200)]
Translated using Weblate (Portuguese)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt/
Translated using Weblate (Lithuanian)
Currently translated at 65.7% (71 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (192 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/lt/
Translated using Weblate (German)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/de/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Lithuanian)
Currently translated at 91.1% (62 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Lithuanian)
Currently translated at 66.3% (75 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Lithuanian)
Currently translated at 52.0% (78 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (German)
Currently translated at 93.0% (2806 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (German)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/de/
Translated using Weblate (German)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/de/
Translated using Weblate (Lithuanian)
Currently translated at 91.9% (57 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Lithuanian)
Currently translated at 48.0% (72 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 62.0% (67 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Lithuanian)
Currently translated at 61.9% (70 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Korean)
Currently translated at 85.5% (2580 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Lithuanian)
Currently translated at 83.8% (57 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Lithuanian)
Currently translated at 82.3% (56 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Korean)
Currently translated at 38.4% (98 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ko/
Translated using Weblate (Portuguese)
Currently translated at 91.2% (385 of 422 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2775 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Lithuanian)
Currently translated at 90.3% (56 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Lithuanian)
Currently translated at 61.0% (69 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Korean)
Currently translated at 85.2% (2571 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Portuguese)
Currently translated at 8.2% (21 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Korean)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (22 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/pt/
Translated using Weblate (Portuguese)
Currently translated at 91.4% (2759 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Portuguese)
Currently translated at 7.5% (9 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/pt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 61.1% (66 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/lt/
Translated using Weblate (Lithuanian)
Currently translated at 47.3% (71 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: ssantos <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: ZW <redacted>
Signed-off-by: ssantos <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt/
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Christian Korber [Thu, 7 May 2026 07:20:32 +0000 (09:20 +0200)]
luci-base: add additional information to upload modal
Sometimes it would be useful to display additional information in the
modal (e.g. if upload takes some time on slower devices and feedback it
so the user knows about the delay).
Signed-off-by: Christian Korber <redacted>
Hosted Weblate [Wed, 6 May 2026 12:34:01 +0000 (14:34 +0200)]
Translated using Weblate (Lithuanian)
Currently translated at 52.2% (59 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Lithuanian)
Currently translated at 97.6% (289 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Korean)
Currently translated at 84.8% (2560 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Lithuanian)
Currently translated at 54.6% (59 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Lithuanian)
Currently translated at 42.6% (64 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Lithuanian)
Currently translated at 74.1% (46 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Lithuanian)
Currently translated at 99.4% (172 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lt/
Translated using Weblate (Lithuanian)
Currently translated at 69.1% (47 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Korean)
Currently translated at 84.8% (2560 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Korean)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 77.6% (156 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Russian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (French)
Currently translated at 42.4% (14 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/fr/
Translated using Weblate (French)
Currently translated at 91.8% (79 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/fr/
Translated using Weblate (Lithuanian)
Currently translated at 40.6% (61 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Lithuanian)
Currently translated at 61.7% (42 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Lithuanian)
Currently translated at 66.1% (41 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Korean)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/lt/
Translated using Weblate (French)
Currently translated at 5.5% (11 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/fr/
Translated using Weblate (Lithuanian)
Currently translated at 80.7% (206 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (French)
Currently translated at 7.0% (5 of 71 strings)
Translated using Weblate (French)
Currently translated at 71.1% (2147 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (Lithuanian)
Currently translated at 47.7% (54 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Korean)
Currently translated at 98.2% (277 of 282 strings)
Translated using Weblate (French)
Currently translated at 19.3% (6 of 31 strings)
Translated using Weblate (French)
Currently translated at 3.5% (9 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/fr/
Translated using Weblate (French)
Currently translated at 64.6% (64 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/fr/
Translated using Weblate (French)
Currently translated at 18.1% (12 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/fr/
Translated using Weblate (French)
Currently translated at 42.8% (9 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/fr/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/lt/
Translated using Weblate (French)
Currently translated at 75.8% (320 of 422 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2775 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (French)
Currently translated at 87.5% (14 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/fr/
Translated using Weblate (French)
Currently translated at 39.4% (58 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/fr/
Translated using Weblate (French)
Currently translated at 96.0% (271 of 282 strings)
Translated using Weblate (French)
Currently translated at 97.4% (192 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/fr/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (French)
Currently translated at 92.0% (69 of 75 strings)
Translated using Weblate (Korean)
Currently translated at 49.4% (91 of 184 strings)
Translated using Weblate (Lithuanian)
Currently translated at 50.9% (55 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (French)
Currently translated at 44.8% (22 of 49 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (192 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pt_BR/
Translated using Weblate (Ukrainian)
Currently translated at 96.8% (186 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 1.6% (1 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (296 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/lo/
Translated using Weblate (Ukrainian)
Currently translated at 1.4% (1 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/uk/
Translated using Weblate (Ukrainian)
Currently translated at 0.9% (1 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/uk/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Ukrainian)
Currently translated at 98.9% (279 of 282 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/lo/
Translated using Weblate (Ukrainian)
Currently translated at 32.0% (161 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.9% (11 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/olsr-viz
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-viz/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lo/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 16.6% (5 of 30 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (28 of 28 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 37.7% (17 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/pt_BR/
Translated using Weblate (Ukrainian)
Currently translated at 0.6% (1 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/lo/
Translated using Weblate (Ukrainian)
Currently translated at 3.2% (1 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lo/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (151 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (3 of 3 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 69.6% (23 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/pt_BR/
Translated using Weblate (Ukrainian)
Currently translated at 0.6% (1 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/uk/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 84.6% (11 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/lo/
Translated using Weblate (Ukrainian)
Currently translated at 0.8% (1 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/uk/
Translated using Weblate (Ukrainian)
Currently translated at 95.0% (174 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (2 of 2 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/lo/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 2.7% (3 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/babeld
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbabeld/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.8% (212 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (22 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 16.4% (42 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lo/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 82.1% (23 of 28 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/lo/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 95.0% (174 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 85.0% (51 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/pt_BR/
Translated using Weblate (Ukrainian)
Currently translated at 92.9% (275 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Lao)
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 90.4% (113 of 125 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 90.4% (19 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (165 of 165 strings)
Co-authored-by: BoneNI <redacted>
Co-authored-by: Dan <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: SnIPeRSnIPeR <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: sllk <redacted>
Signed-off-by: BoneNI <redacted>
Signed-off-by: Dan <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: SnIPeRSnIPeR <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: sllk <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilebrowser/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-battstatus/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt_BR/
Translation: OpenWrt/LuCI/applications/antiblock
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/filebrowser
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-battstatus
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
tokisaki galaxy [Fri, 1 May 2026 03:05:23 +0000 (11:05 +0800)]
luci-app-tailscale-community: update and fix dep
sync linguistic files, fix upstream ip deps rename
to ip-full, add temporary disable func, fix exit
node firewall config
Signed-off-by: tokisaki galaxy <redacted>
Joshua Vlantis [Mon, 4 May 2026 05:20:08 +0000 (07:20 +0200)]
luci-app-strongswan-swanctl: fix Tunnel/Remote modal crash
Opening the Tunnel (or Remote) configuration modal threw
TypeError: Cannot convert undefined or null to object
and the modal never opened.
The crypto_proposal MultiValue fields on remote and tunnel sections
showed the "Please create a Proposal first" placeholder only when no
crypto_proposal sections existed at all. When proposals existed but
none matched the required type (IKE/non-ESP for remote, ESP for
tunnel), the inner forEach added no choices, leaving keylist empty.
An empty keylist makes form.MultiValue.transformChoices() return null,
which is then passed to ui.Dropdown. Because typeof null === 'object',
the null check in UIDropdown.__init__ does not replace it, and the
subsequent Object.keys(this.choices) call throws.
Filter the sections list by is_esp before the length check so the
placeholder is shown whenever no proposals of the required type exist.
Fixes: https://github.com/openwrt/luci/issues/8606
Signed-off-by: Joshua Vlantis <redacted>
Dirk Brenken [Mon, 4 May 2026 17:45:08 +0000 (19:45 +0200)]
luci-app-banip: update 1.8.8-2
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Stan Grishin [Sat, 2 May 2026 01:06:37 +0000 (01:06 +0000)]
luci-app-https-dns-proxy: update to 2026.03.18-1
Maintainer: me
Compile tested: x86_64, Dell EMC Edge620, OpenWrt 25.12.1
Run tested: x86_64, Dell EMC Edge620, OpenWrt 25.12.1
Description:
update to new upstream version
- Bump PKG_VERSION to 2026.03.18.
- Reset PKG_RELEASE to 1.
Signed-off-by: Stan Grishin <redacted>
Dirk Brenken [Sun, 3 May 2026 18:06:13 +0000 (20:06 +0200)]
luci-app-adblock: update 4.5.5-2
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Hosted Weblate [Sat, 2 May 2026 19:31:55 +0000 (21:31 +0200)]
Translated using Weblate (Portuguese (Brazil))
Currently translated at 77.6% (156 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/lo/
Translated using Weblate (Portuguese)
Currently translated at 94.9% (94 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt/
Translated using Weblate (French)
Currently translated at 31.1% (57 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/fr/
Translated using Weblate (Italian)
Currently translated at 4.3% (7 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/it/
Translated using Weblate (Italian)
Currently translated at 58.8% (50 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/it/
Translated using Weblate (Italian)
Currently translated at 50.0% (36 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/it/
Translated using Weblate (Lao)
Currently translated at 23.7% (19 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/lo/
Translated using Weblate (German)
Currently translated at 1.8% (2 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/de/
Translated using Weblate (Spanish)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/es/
Translated using Weblate (Irish)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (296 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ga/
Translated using Weblate (German)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/de/
Translated using Weblate (German)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/de/
Translated using Weblate (German)
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/de/
Translated using Weblate (French)
Currently translated at 37.5% (18 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/fr/
Translated using Weblate (Irish)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Italian)
Currently translated at 43.2% (16 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/it/
Translated using Weblate (Irish)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ga/
Translated using Weblate (Lao)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Lithuanian)
Currently translated at 28.6% (43 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Italian)
Currently translated at 35.0% (93 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/it/
Translated using Weblate (Spanish)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/es/
Translated using Weblate (Lithuanian)
Currently translated at 30.0% (34 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (German)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (French)
Currently translated at 5.5% (11 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/fr/
Translated using Weblate (Lao)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/lo/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (French)
Currently translated at 42.5% (17 of 40 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/fr/
Translated using Weblate (German)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/babeld
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbabeld/de/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Lao)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lo/
Translated using Weblate (German)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/de/
Translated using Weblate (German)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/de/
Translated using Weblate (Lao)
Currently translated at 54.5% (18 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/lo/
Translated using Weblate (French)
Currently translated at 38.7% (57 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/fr/
Translated using Weblate (Lao)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/lo/
Translated using Weblate (Lithuanian)
Currently translated at 39.8% (43 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Lao)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lo/
Translated using Weblate (French)
Currently translated at 87.0% (27 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/fr/
Translated using Weblate (French)
Currently translated at 8.8% (8 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/fr/
Translated using Weblate (Lao)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lo/
Translated using Weblate (French)
Currently translated at 84.7% (61 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/fr/
Translated using Weblate (Spanish)
Currently translated at 100.0% (296 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/es/
Translated using Weblate (French)
Currently translated at 91.8% (79 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/fr/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/lt/
Translated using Weblate (Lithuanian)
Currently translated at 35.2% (24 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Lithuanian)
Currently translated at 93.6% (117 of 125 strings)
Translated using Weblate (French)
Currently translated at 3.5% (9 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/fr/
Translated using Weblate (Lao)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/lo/
Translated using Weblate (French)
Currently translated at 57.2% (71 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/fr/
Translated using Weblate (Italian)
Currently translated at 11.5% (58 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/it/
Translated using Weblate (Lao)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/lo/
Translated using Weblate (Spanish)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (German)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/de/
Translated using Weblate (German)
Currently translated at 99.1% (111 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/de/
Translated using Weblate (Italian)
Currently translated at 62.5% (50 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/it/
Translated using Weblate (Italian)
Currently translated at 36.4% (55 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/it/
Translated using Weblate (German)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (French)
Currently translated at 74.1% (313 of 422 strings)
Translated using Weblate (German)
Currently translated at 95.2% (119 of 125 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ga/
Translated using Weblate (Lithuanian)
Currently translated at 37.0% (23 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/babeld
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbabeld/pt/
Translated using Weblate (Korean)
Currently translated at 40.2% (74 of 184 strings)
Translated using Weblate (Lithuanian)
Currently translated at 98.1% (54 of 55 strings)
Translated using Weblate (French)
Currently translated at 64.6% (64 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/fr/
Translated using Weblate (Lao)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/lo/
Translated using Weblate (Irish)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (French)
Currently translated at 28.5% (6 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/fr/
Translated using Weblate (Lao)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/lo/
Translated using Weblate (French)
Currently translated at 5.6% (4 of 71 strings)
Translated using Weblate (French)
Currently translated at 68.7% (11 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/fr/
Translated using Weblate (Irish)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/ga/
Translated using Weblate (Lao)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/lo/
Translated using Weblate (Lao)
Currently translated at 10.2% (20 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (77 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (151 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (90 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Lao)
Currently translated at 48.4% (16 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lo/
Translated using Weblate (Lao)
Currently translated at 16.8% (13 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/lo/
Translated using Weblate (Lao)
Currently translated at 25.0% (7 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Lao)
Currently translated at 59.0% (13 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Lao)
Currently translated at 18.7% (3 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/lo/
Translated using Weblate (Lao)
Currently translated at 39.2% (11 of 28 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/lo/
Co-authored-by: Aindriú Mac Giolla Eoin <redacted>
Co-authored-by: BoneNI <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Franco Castillo <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: Stefano Ponzi <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: sllk <redacted>
Co-authored-by: ssantos <redacted>
Signed-off-by: Aindriú Mac Giolla Eoin <redacted>
Signed-off-by: BoneNI <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Franco Castillo <redacted>
Signed-off-by: Stefano Ponzi <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: sllk <redacted>
Signed-off-by: ssantos <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/lo/
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Hannu Nyman [Sat, 2 May 2026 12:31:40 +0000 (15:31 +0300)]
build: enable packaging of Lao, Georgian and Latvian translations
Lao has been well translated regarding luci-base.
Also Georgian and Latvian translations have some volume.
So, enable these languages for building.
Signed-off-by: Hannu Nyman <redacted>
Hosted Weblate [Sat, 2 May 2026 12:08:15 +0000 (14:08 +0200)]
Translated using Weblate (Russian)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Lao)
Currently translated at 9.8% (16 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (151 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/lo/
Translated using Weblate (Lao)
Currently translated at 36.0% (9 of 25 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lo/
Translated using Weblate (Lao)
Currently translated at 59.0% (13 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (192 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lo/
Translated using Weblate (Lao)
Currently translated at 29.0% (9 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lo/
Translated using Weblate (Lao)
Currently translated at 48.4% (16 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/lo/
Translated using Weblate (Lao)
Currently translated at 33.3% (7 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/lo/
Translated using Weblate (Lao)
Currently translated at 36.0% (9 of 25 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/ru/
Translated using Weblate (Lao)
Currently translated at 42.2% (19 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lo/
Translated using Weblate (Lao)
Currently translated at 42.4% (14 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/lo/
Translated using Weblate (Russian)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ru/
Translated using Weblate (Lao)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/zh_Hans/
Translated using Weblate (Lao)
Currently translated at 24.3% (9 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hans/
Translated using Weblate (Lao)
Currently translated at 17.6% (3 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/lo/
Translated using Weblate (French)
Currently translated at 23.8% (5 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/fr/
Translated using Weblate (French)
Currently translated at 31.6% (159 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/fr/
Translated using Weblate (Lao)
Currently translated at 14.8% (14 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/lo/
Translated using Weblate (French)
Currently translated at 65.9% (31 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/fr/
Translated using Weblate (Lao)
Currently translated at 9.6% (19 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 99.3% (294 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hans/
Translated using Weblate (Lao)
Currently translated at 22.7% (10 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/lo/
Translated using Weblate (Lao)
Currently translated at 22.5% (7 of 31 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/lo/
Translated using Weblate (Russian)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lo/
Translated using Weblate (Lao)
Currently translated at 42.8% (3 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (French)
Currently translated at 87.5% (14 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/fr/
Translated using Weblate (Lao)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/lo/
Translated using Weblate (Russian)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ru/
Translated using Weblate (Lao)
Currently translated at 17.6% (3 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/lo/
Translated using Weblate (French)
Currently translated at 83.3% (60 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/fr/
Translated using Weblate (Lao)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lo/
Translated using Weblate (French)
Currently translated at 71.1% (2147 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (Lao)
Currently translated at 9.2% (15 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lo/
Translated using Weblate (Lao)
Currently translated at 23.7% (19 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (81 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (90 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lo/
Translated using Weblate (Lao)
Currently translated at 92.5% (274 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (French)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/fr/
Translated using Weblate (Lao)
Currently translated at 25.0% (7 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/lo/
Translated using Weblate (Lao)
Currently translated at 6.6% (10 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/lo/
Translated using Weblate (Lao)
Currently translated at 68.0% (32 of 47 strings)
Translated using Weblate (Lao)
Currently translated at 27.2% (9 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/lo/
Translated using Weblate (Lao)
Currently translated at 15.3% (2 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Lao)
Currently translated at 35.7% (10 of 28 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/lo/
Translated using Weblate (Russian)
Currently translated at 99.2% (124 of 125 strings)
Translated using Weblate (Lao)
Currently translated at 11.0% (12 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (71 of 71 strings)
Translated using Weblate (French)
Currently translated at 1.7% (2 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/fr/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Lao)
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Lao)
Currently translated at 23.8% (5 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/lo/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (French)
Currently translated at 5.8% (7 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/fr/
Translated using Weblate (Lao)
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Lao)
Currently translated at 16.8% (13 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/lo/
Translated using Weblate (Lao)
Currently translated at 23.5% (4 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lo/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/zh_Hans/
Translated using Weblate (Lao)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/lo/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Lao)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Lao)
Currently translated at 46.1% (12 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Lao)
Currently translated at 77.7% (21 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/lo/
Translated using Weblate (Polish)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/pl/
Translated using Weblate (Lao)
Currently translated at 6.4% (2 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (47 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/lo/
Translated using Weblate (Lao)
Currently translated at 13.5% (5 of 37 strings)
Translated using Weblate (Lao)
Currently translated at 6.7% (4 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (30 of 30 strings)
Translated using Weblate (Lao)
Currently translated at 63.0% (29 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/lo/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/lo/
Translated using Weblate (Russian)
Currently translated at 100.0% (296 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.5% (14 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 1.4% (1 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 12.3% (22 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 1.8% (2 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 77.6% (156 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.9% (11 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.8% (212 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 95.0% (174 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.2% (170 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.5% (14 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 77.6% (156 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 95.0% (174 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 24.2% (16 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 23.6% (39 of 165 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.2% (170 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 20.9% (17 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 1.3% (2 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 51.0% (25 of 49 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 16.4% (42 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 97.2% (288 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 3.2% (1 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 0.9% (1 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 13.3% (4 of 30 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 83.5% (71 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 57.1% (84 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 8.0% (13 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 53.5% (15 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.9% (11 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 99.0% (101 of 102 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.8% (212 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 32.5% (13 of 40 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 94.1% (16 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.5% (12 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/pt_BR/
Translated using Weblate (Korean)
Currently translated at 87.8% (29 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ko/
Translated using Weblate (Lao)
Currently translated at 1.4% (1 of 71 strings)
Translated using Weblate (Lao)
Currently translated at 11.2% (14 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/lo/
Translated using Weblate (Lao)
Currently translated at 32.0% (8 of 25 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lo/
Translated using Weblate (Lao)
Currently translated at 30.7% (8 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/lo/
Translated using Weblate (Lao)
Currently translated at 5.8% (1 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/lo/
Translated using Weblate (Lao)
Currently translated at 23.3% (7 of 30 strings)
Translated using Weblate (Lao)
Currently translated at 6.3% (3 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/lo/
Translated using Weblate (Lao)
Currently translated at 6.7% (12 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/lo/
Translated using Weblate (Lao)
Currently translated at 13.5% (5 of 37 strings)
Translated using Weblate (Lao)
Currently translated at 19.5% (9 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Lao)
Currently translated at 10.3% (8 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/lo/
Translated using Weblate (Lao)
Currently translated at 24.2% (8 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/lo/
Translated using Weblate (Lao)
Currently translated at 4.8% (3 of 62 strings)
Translated using Weblate (Lao)
Currently translated at 23.5% (4 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/lo/
Translated using Weblate (Lao)
Currently translated at 19.0% (4 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/lo/
Translated using Weblate (Lao)
Currently translated at 5.2% (158 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Lao)
Currently translated at 4.7% (1 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/lo/
Translated using Weblate (Korean)
Currently translated at 96.9% (32 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/ko/
Translated using Weblate (Lao)
Currently translated at 12.5% (6 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/lo/
Translated using Weblate (Lao)
Currently translated at 4.2% (7 of 165 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/es/
Translated using Weblate (Lao)
Currently translated at 2.0% (3 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/lo/
Translated using Weblate (Lao)
Currently translated at 7.6% (1 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/lo/
Translated using Weblate (Lao)
Currently translated at 9.7% (11 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lo/
Translated using Weblate (Lao)
Currently translated at 17.9% (36 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lo/
Translated using Weblate (Korean)
Currently translated at 38.2% (62 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ko/
Translated using Weblate (Lao)
Currently translated at 14.2% (3 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/lo/
Translated using Weblate (Spanish)
Currently translated at 97.9% (290 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/es/
Translated using Weblate (Lao)
Currently translated at 9.0% (9 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/lo/
Translated using Weblate (Polish)
Currently translated at 100.0% (125 of 125 strings)
Translated using Weblate (Lao)
Currently translated at 6.4% (2 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/lo/
Translated using Weblate (Lao)
Currently translated at 16.6% (11 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/lo/
Translated using Weblate (Lao)
Currently translated at 8.6% (17 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/lo/
Translated using Weblate (Korean)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/lo/
Translated using Weblate (Lao)
Currently translated at 11.7% (2 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/lo/
Translated using Weblate (Lao)
Currently translated at 92.5% (274 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lo/
Translated using Weblate (Lao)
Currently translated at 4.5% (2 of 44 strings)
Translated using Weblate (Lao)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Lao)
Currently translated at 31.1% (14 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/lo/
Translated using Weblate (Lao)
Currently translated at 13.0% (6 of 46 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/pl/
Translated using Weblate (Lao)
Currently translated at 6.2% (4 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/lo/
Translated using Weblate (Lao)
Currently translated at 99.4% (182 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/lo/
Translated using Weblate (Lao)
Currently translated at 11.7% (12 of 102 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Lao)
Currently translated at 5.4% (4 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/lo/
Translated using Weblate (Lao)
Currently translated at 16.2% (6 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/lo/
Translated using Weblate (Lao)
Currently translated at 9.3% (7 of 75 strings)
Translated using Weblate (Lao)
Currently translated at 6.5% (13 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/lo/
Translated using Weblate (Lao)
Currently translated at 19.4% (14 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/lo/
Translated using Weblate (Lao)
Currently translated at 8.7% (8 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/lo/
Translated using Weblate (Lao)
Currently translated at 12.5% (5 of 40 strings)
Translated using Weblate (Lao)
Currently translated at 24.2% (8 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/lo/
Translated using Weblate (Lao)
Currently translated at 3.3% (2 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/lo/
Translated using Weblate (Lao)
Currently translated at 14.2% (1 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/lo/
Translated using Weblate (Lao)
Currently translated at 11.6% (10 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/lo/
Translated using Weblate (Lao)
Currently translated at 6.2% (1 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/lo/
Translated using Weblate (Lao)
Currently translated at 16.6% (10 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/lo/
Translated using Weblate (Korean)
Currently translated at 37.5% (63 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ko/
Translated using Weblate (Lao)
Currently translated at 4.8% (6 of 125 strings)
Translated using Weblate (Lao)
Currently translated at 18.7% (3 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/lo/
Translated using Weblate (Lao)
Currently translated at 5.2% (8 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/lo/
Translated using Weblate (Lao)
Currently translated at 12.6% (25 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/lo/
Translated using Weblate (Lao)
Currently translated at 9.3% (14 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lo/
Translated using Weblate (Lao)
Currently translated at 16.1% (5 of 31 strings)
Translated using Weblate (Spanish)
Currently translated at 96.0% (120 of 125 strings)
Translated using Weblate (Korean)
Currently translated at 49.6% (62 of 125 strings)
Translated using Weblate (Lao)
Currently translated at 6.7% (11 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lo/
Translated using Weblate (Lao)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/lo/
Translated using Weblate (Lao)
Currently translated at 16.7% (29 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lo/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Lao)
Currently translated at 6.1% (3 of 49 strings)
Translated using Weblate (Lao)
Currently translated at 9.8% (11 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/lo/
Translated using Weblate (Lao)
Currently translated at 25.5% (12 of 47 strings)
Translated using Weblate (Lao)
Currently translated at 7.3% (8 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/lo/
Translated using Weblate (Polish)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (296 of 296 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pl/
Translated using Weblate (Lao)
Currently translated at 25.0% (7 of 28 strings)
Translated using Weblate (Lao)
Currently translated at 18.1% (8 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/lo/
Translated using Weblate (Lao)
Currently translated at 32.0% (8 of 25 strings)
Translated using Weblate (Lao)
Currently translated at 25.8% (8 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/lo/
Translated using Weblate (Polish)
Currently translated at 100.0% (183 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/pl/
Translated using Weblate (Lao)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/lo/
Translated using Weblate (Lao)
Currently translated at 20.3% (22 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lo/
Translated using Weblate (Lao)
Currently translated at 12.5% (24 of 192 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/lo/
Translated using Weblate (Lao)
Currently translated at 36.3% (8 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/lo/
Translated using Weblate (Lao)
Currently translated at 11.2% (7 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lo/
Translated using Weblate (Spanish)
Currently translated at 100.0% (3016 of 3016 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Polish)
Currently translated at 100.0% (55 of 55 strings)
Translated using Weblate (Lao)
Currently translated at 12.7% (7 of 55 strings)
Translated using Weblate (Lao)
Currently translated at 12.5% (2 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/lo/
Translated using Weblate (Lao)
Currently translated at 9.5% (9 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/lo/
Translated using Weblate (Lao)
Currently translated at 8.8% (6 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lo/
Translated using Weblate (Lao)
Currently translated at 4.4% (4 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/lo/
Translated using Weblate (Lao)
Currently translated at 18.5% (5 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/lo/
Translated using Weblate (Lao)
Currently translated at 18.7% (15 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/lo/
Translated using Weblate (Lao)
Currently translated at 17.8% (5 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/lo/
Translated using Weblate (Lao)
Currently translated at 11.7% (14 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/lo/
Translated using Weblate (Lao)
Currently translated at 24.2% (8 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/lo/
Translated using Weblate (Lao)
Currently translated at 3.9% (6 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/lo/
Translated using Weblate (Lao)
Currently translated at 7.4% (6 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/lo/
Translated using Weblate (Lao)
Currently translated at 10.8% (4 of 37 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (173 of 173 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pl/
Translated using Weblate (Lao)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lo/
Co-authored-by: BoneNI <redacted>
Co-authored-by: Franco Castillo <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: Matthaiks <redacted>
Co-authored-by: Piotr Kołtun <redacted>
Co-authored-by: SnIPeRSnIPeR <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: sllk <redacted>
Co-authored-by: 大王叫我来巡山 <redacted>
Signed-off-by: BoneNI <redacted>
Signed-off-by: Franco Castillo <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: Matthaiks <redacted>
Signed-off-by: Piotr Kołtun <redacted>
Signed-off-by: SnIPeRSnIPeR <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: ZW <redacted>
Signed-off-by: sllk <redacted>
Signed-off-by: 大王叫我来巡山 <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/lo/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/lo/
Translation: OpenWrt/LuCI/applications/antiblock
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Hannu Nyman [Fri, 1 May 2026 16:21:49 +0000 (19:21 +0300)]
treewide: sync translations
Sync.
Signed-off-by: Hannu Nyman <redacted>
Hosted Weblate [Wed, 29 Apr 2026 19:03:15 +0000 (21:03 +0200)]
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Added translation using Weblate (Lao)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/lt/
Translated using Weblate (Lithuanian)
Currently translated at 32.2% (20 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/lt/
Translated using Weblate (Lithuanian)
Currently translated at 29.2% (33 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/lt/
Translated using Weblate (Lithuanian)
Currently translated at 38.8% (42 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/lt/
Translated using Weblate (Korean)
Currently translated at 38.4% (98 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ko/
Translated using Weblate (Lithuanian)
Currently translated at 32.3% (22 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/lt/
Translated using Weblate (Lithuanian)
Currently translated at 27.3% (41 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Co-authored-by: BoneNI <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Signed-off-by: BoneNI <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Dirk Brenken [Thu, 30 Apr 2026 09:43:28 +0000 (11:43 +0200)]
luci-app-banip: release 1.8.8-1
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Hosted Weblate [Wed, 29 Apr 2026 17:47:57 +0000 (19:47 +0200)]
Translated using Weblate (Korean)
Currently translated at 72.5% (29 of 40 strings)
Translated using Weblate (Korean)
Currently translated at 43.2% (16 of 37 strings)
Translated using Weblate (Korean)
Currently translated at 37.5% (18 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ko/
Translated using Weblate (Korean)
Currently translated at 37.6% (96 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ko/
Translated using Weblate (Korean)
Currently translated at 63.8% (46 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ko/
Translated using Weblate (Korean)
Currently translated at 47.6% (70 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ko/
Translated using Weblate (French)
Currently translated at 63.6% (63 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/fr/
Translated using Weblate (French)
Currently translated at 4.5% (1 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/fr/
Translated using Weblate (French)
Currently translated at 33.5% (89 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fr/
Translated using Weblate (French)
Currently translated at 71.2% (2147 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (French)
Currently translated at 90.6% (78 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/fr/
Translated using Weblate (French)
Currently translated at 96.9% (191 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/fr/
Translated using Weblate (French)
Currently translated at 31.4% (158 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/fr/
Translated using Weblate (Korean)
Currently translated at 42.8% (63 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ko/
Translated using Weblate (French)
Currently translated at 63.8% (30 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/fr/
Translated using Weblate (French)
Currently translated at 23.6% (69 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fr/
Translated using Weblate (French)
Currently translated at 68.2% (58 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/fr/
Translated using Weblate (French)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/fr/
Translated using Weblate (French)
Currently translated at 96.2% (26 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/fr/
Translated using Weblate (French)
Currently translated at 6.1% (10 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/fr/
Translated using Weblate (French)
Currently translated at 61.2% (49 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/fr/
Translated using Weblate (French)
Currently translated at 56.4% (48 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/fr/
Translated using Weblate (French)
Currently translated at 0.8% (1 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/fr/
Translated using Weblate (French)
Currently translated at 19.3% (6 of 31 strings)
Translated using Weblate (French)
Currently translated at 81.2% (13 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/fr/
Translated using Weblate (French)
Currently translated at 4.5% (1 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/fr/
Translated using Weblate (French)
Currently translated at 3.9% (6 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/fr/
Translated using Weblate (French)
Currently translated at 31.4% (158 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/fr/
Translated using Weblate (Korean)
Currently translated at 45.4% (15 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ko/
Translated using Weblate (Korean)
Currently translated at 43.5% (219 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ko/
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2775 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Korean)
Currently translated at 49.4% (88 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/ko/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 40.9% (81 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Korean)
Currently translated at 71.4% (20 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/ko/
Translated using Weblate (Korean)
Currently translated at 59.3% (35 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ko/
Translated using Weblate (Korean)
Currently translated at 53.3% (32 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ko/
Translated using Weblate (German)
Currently translated at 0.9% (1 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/de/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Korean)
Currently translated at 37.4% (52 of 139 strings)
Translated using Weblate (Korean)
Currently translated at 77.2% (51 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/ko/
Translated using Weblate (Korean)
Currently translated at 37.0% (23 of 62 strings)
Translated using Weblate (German)
Currently translated at 3.3% (1 of 30 strings)
Translated using Weblate (Lithuanian)
Currently translated at 23.3% (35 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Lithuanian)
Currently translated at 33.3% (36 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 12.3% (22 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 22.5% (14 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 22.0% (15 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Lithuanian)
Currently translated at 23.8% (27 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/pt/
Translated using Weblate (Korean)
Currently translated at 44.4% (36 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/ko/
Translated using Weblate (Korean)
Currently translated at 34.5% (56 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Korean)
Currently translated at 41.7% (38 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ko/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/pt/
Translated using Weblate (Korean)
Currently translated at 40.4% (72 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/ko/
Translated using Weblate (Korean)
Currently translated at 43.2% (32 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ko/
Translated using Weblate (Korean)
Currently translated at 31.9% (23 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ko/
Translated using Weblate (Korean)
Currently translated at 84.7% (2554 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 20.9% (17 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 81.2% (13 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 92.9% (66 of 71 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.9% (11 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 11.7% (21 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 66.2% (53 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Korean)
Currently translated at 82.4% (348 of 422 strings)
Translated using Weblate (Korean)
Currently translated at 39.5% (49 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 1.7% (2 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.5% (12 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 0.6% (1 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Korean)
Currently translated at 31.2% (46 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 17.6% (21 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.8% (170 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 24.2% (16 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 83.5% (71 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (282 of 282 strings)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Added translation using Weblate (Azerbaijani)
Translated using Weblate (Korean)
Currently translated at 42.6% (29 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/ko/
Translated using Weblate (Korean)
Currently translated at 41.1% (28 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/ko/
Translated using Weblate (Korean)
Currently translated at 36.7% (25 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/ru/
Translated using Weblate (Korean)
Currently translated at 36.9% (62 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Korean)
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (Korean)
Currently translated at 53.1% (50 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Korean)
Currently translated at 42.4% (14 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/ru/
Translated using Weblate (Korean)
Currently translated at 62.3% (53 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ko/
Translated using Weblate (Korean)
Currently translated at 82.4% (348 of 422 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/ru/
Translated using Weblate (Korean)
Currently translated at 84.6% (2553 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/ru/
Translated using Weblate (Korean)
Currently translated at 84.6% (2553 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ru/
Translated using Weblate (Korean)
Currently translated at 26.5% (25 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/ru/
Translated using Weblate (Korean)
Currently translated at 36.6% (51 of 139 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ru/
Translated using Weblate (Korean)
Currently translated at 39.5% (36 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (62 of 62 strings)
Co-authored-by: Amen <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: SnIPeRSnIPeR <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: Werner Schleifer <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: orangepizza <redacted>
Co-authored-by: sllk <redacted>
Signed-off-by: Amen <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: SnIPeRSnIPeR <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: Werner Schleifer <redacted>
Signed-off-by: ZW <redacted>
Signed-off-by: orangepizza <redacted>
Signed-off-by: sllk <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt_BR/
Translation: OpenWrt/LuCI/applications/antiblock
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Dirk Brenken [Tue, 28 Apr 2026 18:06:26 +0000 (20:06 +0200)]
luci-app-banip: release 1.8.7-1
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Daniel F. Dickinson [Tue, 7 Apr 2026 08:54:29 +0000 (04:54 -0400)]
luci-app-nut: update monitor for package refactor
https://github.com/openwrt/packages/pull/28875 deals with
https://github.com/openwrt/luci/pull/8420#issuecomment-
4071252681
and
https://github.com/openwrt/packages/pull/28875#issuecomment-
4079307540
by simplifying the configuration of notification messages and flags.
At the same time it modernizes the monitoring user configuration.
Supersedes #8434
This commit syncs luci-app-nut for the nut package changes in
https://github.com/openwrt/packages/pull/28875 .
Signed-off-by: Daniel F. Dickinson <redacted>
Stan Grishin [Sat, 25 Apr 2026 01:17:15 +0000 (01:17 +0000)]
luci-app-https-dns-proxy: update to 2025.12.29-5
Maintainer: me
Compile tested: x86_64, Dell EMC Edge620, OpenWrt 25.12.1
Run tested: x86_64, Dell EMC Edge620, OpenWrt 25.12.1
Description:
update to PKG_RELEASE 5 and status page improvements
- Bump PKG_RELEASE from 4 to 5.
htdocs/luci-static/resources/https-dns-proxy/status.js:
- Remove redundant 'cbi-value-description' class from statusText element.
- Remove old README link from instances description.
- Restructure instances description to correctly display donate link.
- Add a line break element after the instancesText output.
po/templates/https-dns-proxy.pot:
- Update POT file to reflect changes in status.js.
root/usr/libexec/rpcd/luci.https-dns-proxy:
- Redirect stderr for is_enabled and is_running functions to /dev/null.
- Correctly retrieve service name in `get_init_list` using basename.
- Remove extraneous `json_close_array` call from `get_init_status`.
- Ensure `ubus_get_ports` uses correct JSON quoting.
Signed-off-by: Stan Grishin <redacted>
Stan Grishin [Fri, 24 Apr 2026 17:30:20 +0000 (17:30 +0000)]
luci-app-adblock-fast: update to 1.2.2-r18
* reformat Chrome Extension helper message for i18n
* remove use of base64 in uci-defaults script (thanks @sppmaster)
* fix setRpcdToken export
Signed-off-by: Stan Grishin <redacted>
Paul Donald [Sat, 25 Apr 2026 12:32:00 +0000 (14:32 +0200)]
luci-app-ocserv: correct JSON user data
follow-up to
4a2623038a04e8ead9b825de332b498d54e4aa78
Should help users like #8571
Signed-off-by: Paul Donald <redacted>
Hosted Weblate [Sat, 25 Apr 2026 03:14:08 +0000 (05:14 +0200)]
Translated using Weblate (Russian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Korean)
Currently translated at 53.7% (58 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ru/
Translated using Weblate (Russian)
Currently translated at 10.6% (16 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (22 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (81 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ru/
Translated using Weblate (Korean)
Currently translated at 56.8% (25 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/ru/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 0.8% (1 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/pt_BR/
Translated using Weblate (Russian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (181 of 181 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ru/
Translated using Weblate (Korean)
Currently translated at 29.0% (47 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Korean)
Currently translated at 99.3% (150 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/ru/
Added translation using Weblate (Portuguese (Brazil))
Added translation using Weblate (Portuguese (Brazil))
Translated using Weblate (Korean)
Currently translated at 20.9% (34 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 43.3% (218 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ko/
Translated using Weblate (Korean)
Currently translated at 52.7% (57 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/ko/
Translated using Weblate (Korean)
Currently translated at 30.5% (33 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Arabic)
Currently translated at 9.5% (2 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/ar/
Translated using Weblate (Belarusian)
Currently translated at 0.6% (1 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/be/
Translated using Weblate (Arabic)
Currently translated at 43.7% (7 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/ar/
Translated using Weblate (Belarusian)
Currently translated at 1.2% (1 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/be/
Translated using Weblate (Belarusian)
Currently translated at 4.0% (1 of 25 strings)
Translated using Weblate (Belarusian)
Currently translated at 0.1% (1 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/be/
Translated using Weblate (Arabic)
Currently translated at 14.6% (27 of 184 strings)
Translated using Weblate (Belarusian)
Currently translated at 2.0% (4 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/be/
Translated using Weblate (Arabic)
Currently translated at 10.9% (10 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ar/
Translated using Weblate (Belarusian)
Currently translated at 1.1% (1 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/be/
Translated using Weblate (Arabic)
Currently translated at 32.8% (87 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ar/
Translated using Weblate (Russian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ru/
Translated using Weblate (Belarusian)
Currently translated at 80.0% (24 of 30 strings)
Translated using Weblate (Arabic)
Currently translated at 13.0% (22 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ar/
Translated using Weblate (Russian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ru/
Translated using Weblate (Arabic)
Currently translated at 5.6% (11 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ar/
Translated using Weblate (Arabic)
Currently translated at 13.0% (6 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/ar/
Translated using Weblate (Russian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/ru/
Translated using Weblate (Belarusian)
Currently translated at 0.4% (1 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/be/
Translated using Weblate (Belarusian)
Currently translated at 0.7% (3 of 422 strings)
Translated using Weblate (Belarusian)
Currently translated at 3.5% (1 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/be/
Translated using Weblate (Belarusian)
Currently translated at 1.1% (1 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/be/
Translated using Weblate (Belarusian)
Currently translated at 7.6% (1 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/be/
Translated using Weblate (Arabic)
Currently translated at 16.9% (28 of 165 strings)
Translated using Weblate (Arabic)
Currently translated at 12.1% (8 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/ar/
Translated using Weblate (Belarusian)
Currently translated at 1.2% (1 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/be/
Translated using Weblate (Belarusian)
Currently translated at 0.7% (2 of 282 strings)
Translated using Weblate (Belarusian)
Currently translated at 1.5% (4 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/be/
Translated using Weblate (Arabic)
Currently translated at 75.2% (2268 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ar/
Translated using Weblate (Belarusian)
Currently translated at 1.6% (1 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/be/
Translated using Weblate (Arabic)
Currently translated at 1.6% (2 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ar/
Translated using Weblate (Belarusian)
Currently translated at 6.2% (1 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/be/
Translated using Weblate (Belarusian)
Currently translated at 1.5% (1 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/be/
Translated using Weblate (Russian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ru/
Translated using Weblate (Belarusian)
Currently translated at 0.7% (1 of 139 strings)
Translated using Weblate (Arabic)
Currently translated at 96.9% (191 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ar/
Translated using Weblate (Russian)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/ru/
Translated using Weblate (Belarusian)
Currently translated at 4.4% (2 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/be/
Translated using Weblate (Belarusian)
Currently translated at 1.1% (2 of 181 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/be/
Translated using Weblate (Russian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ru/
Translated using Weblate (Belarusian)
Currently translated at 0.8% (2 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/be/
Translated using Weblate (Arabic)
Currently translated at 6.4% (4 of 62 strings)
Translated using Weblate (Belarusian)
Currently translated at 0.7% (2 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/be/
Translated using Weblate (Belarusian)
Currently translated at 4.7% (1 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/be/
Translated using Weblate (Arabic)
Currently translated at 30.3% (10 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/ar/
Translated using Weblate (Russian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/ru/
Translated using Weblate (Arabic)
Currently translated at 8.1% (4 of 49 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/ru/
Translated using Weblate (Belarusian)
Currently translated at 2.5% (1 of 40 strings)
Translated using Weblate (Arabic)
Currently translated at 2.2% (2 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/ar/
Translated using Weblate (Arabic)
Currently translated at 20.7% (11 of 53 strings)
Translated using Weblate (Arabic)
Currently translated at 12.9% (16 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ar/
Translated using Weblate (Russian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ru/
Translated using Weblate (Belarusian)
Currently translated at 3.5% (1 of 28 strings)
Translated using Weblate (Belarusian)
Currently translated at 5.8% (1 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/be/
Translated using Weblate (Arabic)
Currently translated at 75.5% (213 of 282 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Arabic)
Currently translated at 12.1% (4 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ar/
Translated using Weblate (Russian)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Arabic)
Currently translated at 52.9% (45 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ar/
Translated using Weblate (Belarusian)
Currently translated at 1.0% (1 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/be/
Translated using Weblate (Arabic)
Currently translated at 9.2% (27 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ar/
Translated using Weblate (Arabic)
Currently translated at 29.6% (51 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ar/
Translated using Weblate (Arabic)
Currently translated at 12.9% (10 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/ar/
Translated using Weblate (Arabic)
Currently translated at 1.7% (2 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ar/
Translated using Weblate (Belarusian)
Currently translated at 0.6% (1 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/be/
Translated using Weblate (Belarusian)
Currently translated at 0.5% (1 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/be/
Translated using Weblate (Russian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ru/
Translated using Weblate (Arabic)
Currently translated at 8.4% (5 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ar/
Translated using Weblate (Russian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ru/
Translated using Weblate (Arabic)
Currently translated at 38.4% (10 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ar/
Translated using Weblate (Belarusian)
Currently translated at 4.7% (1 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/be/
Translated using Weblate (Belarusian)
Currently translated at 0.5% (1 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/be/
Translated using Weblate (Russian)
Currently translated at 2.0% (3 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/ru/
Translated using Weblate (Belarusian)
Currently translated at 1.2% (1 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/be/
Translated using Weblate (Russian)
Currently translated at 5.3% (6 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/ru/
Translated using Weblate (Korean)
Currently translated at 38.8% (35 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/ko/
Translated using Weblate (Belarusian)
Currently translated at 6.0% (2 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/be/
Translated using Weblate (Arabic)
Currently translated at 6.8% (3 of 44 strings)
Translated using Weblate (Belarusian)
Currently translated at 4.7% (1 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/be/
Translated using Weblate (Arabic)
Currently translated at 13.0% (6 of 46 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ru/
Translated using Weblate (Arabic)
Currently translated at 20.4% (9 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ar/
Translated using Weblate (Arabic)
Currently translated at 7.1% (10 of 139 strings)
Translated using Weblate (Belarusian)
Currently translated at 2.2% (1 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/be/
Translated using Weblate (Belarusian)
Currently translated at 0.2% (7 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/be/
Translated using Weblate (Arabic)
Currently translated at 15.0% (6 of 40 strings)
Translated using Weblate (Belarusian)
Currently translated at 0.5% (1 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/be/
Translated using Weblate (Russian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/ru/
Translated using Weblate (Belarusian)
Currently translated at 3.8% (1 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/be/
Translated using Weblate (Russian)
Currently translated at 100.0% (30 of 30 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/ru/
Translated using Weblate (Belarusian)
Currently translated at 2.1% (4 of 184 strings)
Translated using Weblate (Arabic)
Currently translated at 22.2% (112 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ar/
Translated using Weblate (Belarusian)
Currently translated at 1.6% (1 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/be/
Translated using Weblate (Arabic)
Currently translated at 91.4% (43 of 47 strings)
Translated using Weblate (Arabic)
Currently translated at 6.2% (3 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ar/
Translated using Weblate (Belarusian)
Currently translated at 4.1% (2 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/be/
Translated using Weblate (Arabic)
Currently translated at 3.5% (7 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/ar/
Translated using Weblate (Arabic)
Currently translated at 41.9% (34 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/ar/
Translated using Weblate (Belarusian)
Currently translated at 6.0% (2 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/be/
Translated using Weblate (Belarusian)
Currently translated at 0.9% (1 of 102 strings)
Translated using Weblate (Belarusian)
Currently translated at 1.1% (2 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/be/
Translated using Weblate (Belarusian)
Currently translated at 0.5% (1 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/be/
Translated using Weblate (Belarusian)
Currently translated at 2.0% (1 of 49 strings)
Translated using Weblate (Korean)
Currently translated at 82.4% (348 of 422 strings)
Translated using Weblate (Arabic)
Currently translated at 11.7% (12 of 102 strings)
Translated using Weblate (Belarusian)
Currently translated at 2.1% (1 of 46 strings)
Translated using Weblate (Belarusian)
Currently translated at 0.3% (1 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/be/
Translated using Weblate (Belarusian)
Currently translated at 0.6% (1 of 165 strings)
Translated using Weblate (Arabic)
Currently translated at 6.7% (5 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ar/
Added translation using Weblate (Portuguese (Brazil))
Added translation using Weblate (Portuguese (Brazil))
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (77 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (181 of 181 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/lt/
Translated using Weblate (Lithuanian)
Currently translated at 29.6% (32 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (81 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (193 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2775 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (30 of 30 strings)
Translated using Weblate (Lithuanian)
Currently translated at 58.0% (292 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Lithuanian)
Currently translated at 80.7% (206 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (90 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/lt/
Translated using Weblate (Lithuanian)
Currently translated at 23.0% (26 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 17.7% (11 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/lt/
Translated using Weblate (Lithuanian)
Currently translated at 17.6% (12 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Lithuanian)
Currently translated at 21.3% (32 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/lt/
Added translation using Weblate (Tamil)
Added translation using Weblate (Tamil)
Added translation using Weblate (Tamil)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Added translation using Weblate (Tamil)
Translated using Weblate (Russian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ga/
Translated using Weblate (Russian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ru/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/pt_BR/
Translated using Weblate (Russian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ga/
Translated using Weblate (Russian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Irish)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ga/
Translated using Weblate (Russian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ga/
Translated using Weblate (Russian)
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ru/
Translated using Weblate (Russian)
Currently translated at 2.0% (3 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ga/
Translated using Weblate (Russian)
Currently translated at 100.0% (181 of 181 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ga/
Translated using Weblate (Russian)
Currently translated at 100.0% (193 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/ga/
Translated using Weblate (Russian)
Currently translated at 100.0% (30 of 30 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ga/
Translated using Weblate (Russian)
Currently translated at 5.3% (6 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ga/
Translated using Weblate (Russian)
Currently translated at 100.0% (40 of 40 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/ru/
Translated using Weblate (Irish)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ga/
Added translation using Weblate (Portuguese (Brazil))
Added translation using Weblate (Portuguese)
Translated using Weblate (Irish)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (71 of 71 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (150 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/ga/
Translated using Weblate (Irish)
Currently translated at 6.2% (16 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ga/
Added translation using Weblate (Portuguese (Brazil))
Translated using Weblate (Irish)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (193 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (30 of 30 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (71 of 71 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (47 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (81 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (68 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/babeld
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbabeld/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ga/
Translated using Weblate (Irish)
Currently translated at 2.6% (4 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (181 of 181 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/ga/
Translated using Weblate (Irish)
Currently translated at 42.6% (64 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ga/
Translated using Weblate (Irish)
Currently translated at 4.7% (12 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (90 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ga/
Added translation using Weblate (Tamil)
Added translation using Weblate (Portuguese (Brazil))
Added translation using Weblate (Tamil)
Added translation using Weblate (Portuguese (Brazil))
Added translation using Weblate (Tamil)
Added translation using Weblate (Portuguese (Brazil))
Added translation using Weblate (Portuguese (Brazil))
Added translation using Weblate (Tamil)
Added translation using Weblate (Thai)
Translated using Weblate (Russian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (181 of 181 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ru/
Translated using Weblate (Romanian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/babeld
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbabeld/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/ru/
Translated using Weblate (Romanian)
Currently translated at 96.2% (26 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ro/
Translated using Weblate (Russian)
Currently translated at 100.0% (226 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/ru/
Translated using Weblate (Romanian)
Currently translated at 18.7% (9 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ro/
Translated using Weblate (Romanian)
Currently translated at 7.0% (18 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ro/
Translated using Weblate (Russian)
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (193 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ru/
Translated using Weblate (Russian)
Currently translated at 2.6% (3 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (28 of 28 strings)
Translated using Weblate (Russian)
Currently translated at 3.2% (2 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/ru/
Translated using Weblate (Russian)
Currently translated at 0.6% (1 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ru/
Translated using Weblate (Romanian)
Currently translated at 31.6% (159 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Russian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (47 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/irqbalance
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsirqbalance/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Romanian)
Currently translated at 62.5% (50 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ro/
Translated using Weblate (Romanian)
Currently translated at 59.6% (108 of 181 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ro/
Translated using Weblate (Russian)
Currently translated at 100.0% (30 of 30 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (77 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ru/
Translated using Weblate (Russian)
Currently translated at 3.2% (1 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ru/
Translated using Weblate (Romanian)
Currently translated at 88.0% (2654 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Russian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (40 of 40 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (151 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ru/
Added translation using Weblate (Romanian)
Translated using Weblate (Romanian)
Currently translated at 70.1% (186 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Added translation using Weblate (Romanian)
Added translation using Weblate (Romanian)
Co-authored-by: Aindriú Mac Giolla Eoin <redacted>
Co-authored-by: CRISTIAN ANDREI <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: SnIPeRSnIPeR <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: smallcms <redacted>
Co-authored-by: د.عبدالعزيز الجهني <redacted>
Signed-off-by: "د.عبدالعزيز الجهني" <redacted>
Signed-off-by: Aindriú Mac Giolla Eoin <redacted>
Signed-off-by: CRISTIAN ANDREI <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: SnIPeRSnIPeR <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: ZW <redacted>
Signed-off-by: smallcms <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/be/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/ar/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/ga/
Translation: OpenWrt/LuCI/applications/antiblock
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Paul Donald [Fri, 24 Apr 2026 15:33:46 +0000 (17:33 +0200)]
luci-app-ocserv: correct JSON user data
Should help users like #8571
Signed-off-by: Paul Donald <redacted>
Hosted Weblate [Wed, 22 Apr 2026 19:35:15 +0000 (21:35 +0200)]
Translated using Weblate (German)
Currently translated at 4.0% (6 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/de/
Translated using Weblate (Korean)
Currently translated at 47.6% (10 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/ko/
Translated using Weblate (German)
Currently translated at 3.2% (1 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/de/
Translated using Weblate (German)
Currently translated at 60.4% (304 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 33.5% (169 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt_BR/
Translated using Weblate (Korean)
Currently translated at 50.4% (114 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/ko/
Translated using Weblate (Korean)
Currently translated at 37.5% (68 of 181 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ko/
Translated using Weblate (German)
Currently translated at 1.6% (1 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/de/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 96.5% (282 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (193 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pt_BR/
Added translation using Weblate (Tamil)
Added translation using Weblate (Ukrainian)
Added translation using Weblate (Ukrainian)
Added translation using Weblate (Ukrainian)
Translated using Weblate (Czech)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/cs/
Translated using Weblate (Czech)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/cs/
Translated using Weblate (Czech)
Currently translated at 99.9% (3014 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (Lithuanian)
Currently translated at 4.4% (3 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.6% (3 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/lt/
Translated using Weblate (Czech)
Currently translated at 97.6% (168 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/cs/
Translated using Weblate (Lithuanian)
Currently translated at 6.4% (4 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Czech)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/cs/
Translated using Weblate (Lithuanian)
Currently translated at 2.0% (3 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/lt/
Translated using Weblate (Czech)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Czech)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/cs/
Translated using Weblate (Czech)
Currently translated at 99.1% (111 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/cs/
Translated using Weblate (Lithuanian)
Currently translated at 2.7% (3 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/lt/
Added translation using Weblate (Ukrainian)
Added translation using Weblate (Ukrainian)
Added translation using Weblate (Ukrainian)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Added translation using Weblate (Ukrainian)
Added translation using Weblate (Ukrainian)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Added translation using Weblate (Ukrainian)
Added translation using Weblate (German)
Added translation using Weblate (German)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 16.4% (42 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Added translation using Weblate (German)
Added translation using Weblate (German)
Translated using Weblate (Korean)
Currently translated at 84.3% (2543 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Added translation using Weblate (German)
Translated using Weblate (Korean)
Currently translated at 84.3% (2543 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Added translation using Weblate (German)
Translated using Weblate (Korean)
Currently translated at 84.3% (2543 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Added translation using Weblate (German)
Added translation using Weblate (German)
Translated using Weblate (Korean)
Currently translated at 84.2% (2540 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Added translation using Weblate (German)
Added translation using Weblate (German)
Translated using Weblate (Korean)
Currently translated at 84.2% (2539 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Added translation using Weblate (Irish)
Translated using Weblate (Korean)
Currently translated at 84.2% (2539 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Added translation using Weblate (Irish)
Added translation using Weblate (Irish)
Added translation using Weblate (Irish)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 20.9% (17 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/pt_BR/
Translated using Weblate (Korean)
Currently translated at 58.8% (70 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 7.9% (12 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/pt_BR/
Added translation using Weblate (Irish)
Translated using Weblate (Korean)
Currently translated at 53.7% (64 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ko/
Added translation using Weblate (Irish)
Translated using Weblate (Korean)
Currently translated at 48.7% (58 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ko/
Added translation using Weblate (Irish)
Translated using Weblate (Korean)
Currently translated at 60.6% (122 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ko/
Translated using Weblate (Korean)
Currently translated at 47.8% (57 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ko/
Translated using Weblate (Korean)
Currently translated at 36.0% (66 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/ko/
Translated using Weblate (Korean)
Currently translated at 35.4% (17 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ko/
Translated using Weblate (Korean)
Currently translated at 27.3% (38 of 139 strings)
Translated using Weblate (Korean)
Currently translated at 36.6% (107 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ko/
Translated using Weblate (Korean)
Currently translated at 49.8% (132 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ko/
Added translation using Weblate (Irish)
Added translation using Weblate (Irish)
Added translation using Weblate (Irish)
Added translation using Weblate (Russian)
Added translation using Weblate (Russian)
Added translation using Weblate (Russian)
Translated using Weblate (Russian)
Currently translated at 36.7% (25 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/ru/
Translated using Weblate (German)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/de/
Translated using Weblate (German)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/de/
Translated using Weblate (German)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/de/
Translated using Weblate (German)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/de/
Translated using Weblate (Russian)
Currently translated at 1.6% (1 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/ru/
Translated using Weblate (German)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Korean)
Currently translated at 21.0% (25 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ko/
Translated using Weblate (German)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (German)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/de/
Translated using Weblate (German)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/de/
Translated using Weblate (German)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/de/
Translated using Weblate (German)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/de/
Translated using Weblate (German)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (German)
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (German)
Currently translated at 100.0% (77 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/de/
Translated using Weblate (Korean)
Currently translated at 25.0% (12 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/ko/
Translated using Weblate (German)
Currently translated at 100.0% (81 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/de/
Translated using Weblate (Korean)
Currently translated at 75.7% (50 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/ko/
Translated using Weblate (German)
Currently translated at 98.9% (279 of 282 strings)
Translated using Weblate (Korean)
Currently translated at 57.6% (34 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ko/
Translated using Weblate (German)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/de/
Translated using Weblate (German)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (German)
Currently translated at 99.3% (290 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/de/
Translated using Weblate (German)
Currently translated at 93.0% (2806 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (German)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/de/
Added translation using Weblate (Russian)
Added translation using Weblate (Russian)
Added translation using Weblate (Russian)
Added translation using Weblate (Russian)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Added translation using Weblate (Russian)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 11.7% (21 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.8% (170 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 77.6% (156 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 96.1% (176 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.5% (14 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.8% (212 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.9% (11 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt_BR/
Added translation using Weblate (Lithuanian)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2774 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 96.1% (176 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 33.3% (168 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (193 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (119 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.8% (212 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 56.7% (21 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/lt/
Translated using Weblate (Lithuanian)
Currently translated at 99.0% (108 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/lt/
Added translation using Weblate (Lithuanian)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.8% (170 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 94.1% (16 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 96.1% (176 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.5% (14 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 77.6% (156 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 24.2% (16 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 99.0% (101 of 102 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 84.1% (223 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.9% (279 of 282 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 13.3% (4 of 30 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 57.1% (84 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 19.7% (16 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 32.5% (13 of 40 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 23.6% (39 of 165 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 51.0% (25 of 49 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.5% (12 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 11.7% (21 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 8.0% (13 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.8% (212 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 16.4% (42 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 83.5% (71 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 53.5% (15 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/pt_BR/
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2774 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 96.5% (282 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.9% (11 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/pt_BR/
Translated using Weblate (Vietnamese)
Currently translated at 99.1% (123 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/vi/
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/vi/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/lt/
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/vi/
Translated using Weblate (Korean)
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Korean)
Currently translated at 42.9% (216 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ko/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/lt/
Translated using Weblate (Lithuanian)
Currently translated at 57.0% (287 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Vietnamese)
Currently translated at 1.7% (2 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/vi/
Translated using Weblate (Vietnamese)
Currently translated at 8.8% (4 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/vi/
Translated using Weblate (Vietnamese)
Currently translated at 93.4% (172 of 184 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lt/
Translated using Weblate (Vietnamese)
Currently translated at 50.6% (148 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/vi/
Translated using Weblate (Korean)
Currently translated at 48.6% (129 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ko/
Translated using Weblate (Vietnamese)
Currently translated at 80.3% (2424 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/vi/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Korean)
Currently translated at 52.6% (59 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ko/
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (85 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/vi/
Translated using Weblate (Korean)
Currently translated at 84.2% (2539 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Vietnamese)
Currently translated at 94.8% (186 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/vi/
Translated using Weblate (Korean)
Currently translated at 30.6% (38 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ko/
Translated using Weblate (Vietnamese)
Currently translated at 51.0% (75 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/vi/
Translated using Weblate (Vietnamese)
Currently translated at 88.3% (76 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/vi/
Translated using Weblate (Korean)
Currently translated at 30.5% (22 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ko/
Translated using Weblate (Vietnamese)
Currently translated at 90.6% (68 of 75 strings)
Translated using Weblate (Vietnamese)
Currently translated at 9.0% (3 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/vi/
Translated using Weblate (Vietnamese)
Currently translated at 32.1% (9 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/vi/
Translated using Weblate (Korean)
Currently translated at 43.3% (65 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ko/
Translated using Weblate (Vietnamese)
Currently translated at 12.1% (4 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/vi/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/lt/
Translated using Weblate (Vietnamese)
Currently translated at 1.3% (2 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/vi/
Translated using Weblate (Vietnamese)
Currently translated at 75.0% (12 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/vi/
Translated using Weblate (Vietnamese)
Currently translated at 37.3% (99 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/vi/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Lithuanian)
Currently translated at 80.7% (206 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Korean)
Currently translated at 42.4% (14 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ko/
Translated using Weblate (Vietnamese)
Currently translated at 3.3% (3 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/vi/
Translated using Weblate (Lithuanian)
Currently translated at 99.0% (108 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/lt/
Translated using Weblate (Korean)
Currently translated at 98.9% (191 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ko/
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/vi/
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/vi/
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2774 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Vietnamese)
Currently translated at 65.9% (31 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/vi/
Translated using Weblate (Vietnamese)
Currently translated at 36.1% (34 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/vi/
Translated using Weblate (Vietnamese)
Currently translated at 9.0% (6 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/vi/
Translated using Weblate (Vietnamese)
Currently translated at 31.4% (158 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/vi/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (77 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/lt/
Translated using Weblate (Vietnamese)
Currently translated at 82.7% (349 of 422 strings)
Translated using Weblate (Korean)
Currently translated at 61.8% (102 of 165 strings)
Translated using Weblate (Korean)
Currently translated at 35.9% (105 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ko/
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/vi/
Translated using Weblate (Vietnamese)
Currently translated at 74.6% (150 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/vi/
Translated using Weblate (Korean)
Currently translated at 100.0% (22 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/ko/
Translated using Weblate (Korean)
Currently translated at 82.3% (93 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/ko/
Translated using Weblate (Turkish)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/tr/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hans/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hans/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 12.5% (14 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 33.2% (167 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 96.5% (282 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt_BR/
Translated using Weblate (Korean)
Currently translated at 82.2% (347 of 422 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 84.1% (223 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 84.7% (61 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 24.2% (16 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.9% (279 of 282 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt/
Translated using Weblate (Portuguese)
Currently translated at 91.4% (2758 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.8% (170 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/pt_BR/
Translated using Weblate (Turkish)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/tr/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Korean)
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Korean)
Currently translated at 99.3% (150 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/ko/
Translated using Weblate (Korean)
Currently translated at 35.3% (65 of 184 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Korean)
Currently translated at 33.3% (85 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 37.7% (17 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt_BR/
Translated using Weblate (Portuguese)
Currently translated at 39.1% (18 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 36.9% (17 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/pt_BR/
Translated using Weblate (Korean)
Currently translated at 23.4% (22 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/ko/
Translated using Weblate (Korean)
Currently translated at 19.0% (4 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/ko/
Translated using Weblate (Portuguese)
Currently translated at 2.6% (3 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pt/
Translated using Weblate (Korean)
Currently translated at 84.1% (2538 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/pt_BR/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 56.7% (21 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/pt_BR/
Translated using Weblate (Korean)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/ko/
Translated using Weblate (Turkish)
Currently translated at 80.0% (2414 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.9% (90 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 77.6% (156 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 85.0% (51 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 83.5% (71 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.9% (11 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/pt_BR/
Translated using Weblate (Korean)
Currently translated at 40.0% (60 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/pt_BR/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hans/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 81.2% (13 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 94.1% (16 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/pt_BR/
Translated using Weblate (Korean)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Vietnamese)
Currently translated at 98.3% (58 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/vi/
Translated using Weblate (Vietnamese)
Currently translated at 33.9% (90 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/vi/
Translated using Weblate (Korean)
Currently translated at 83.9% (2532 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Irish)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ga/
Translated using Weblate (Irish)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ga/
Translated using Weblate (Vietnamese)
Currently translated at 80.2% (2421 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/vi/
Translated using Weblate (Vietnamese)
Currently translated at 89.3% (42 of 47 strings)
Translated using Weblate (Vietnamese)
Currently translated at 65.9% (31 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/vi/
Translated using Weblate (Vietnamese)
Currently translated at 1.6% (2 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/vi/
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (2 of 2 strings)
Translated using Weblate (Vietnamese)
Currently translated at 88.3% (76 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/vi/
Translated using Weblate (Irish)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/ga/
Translated using Weblate (Vietnamese)
Currently translated at 75.0% (21 of 28 strings)
Translated using Weblate (Irish)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Vietnamese)
Currently translated at 98.9% (98 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/vi/
Translated using Weblate (Vietnamese)
Currently translated at 31.0% (156 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/vi/
Translated using Weblate (Vietnamese)
Currently translated at 8.6% (22 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/vi/
Translated using Weblate (Irish)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ga/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 10.7% (12 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Vietnamese)
Currently translated at 2.4% (2 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/vi/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.8% (170 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt_BR/
Translated using Weblate (Vietnamese)
Currently translated at 50.3% (147 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/vi/
Translated using Weblate (Vietnamese)
Currently translated at 58.4% (107 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/vi/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Vietnamese)
Currently translated at 16.3% (27 of 165 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 57.1% (84 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 10.0% (3 of 30 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 85.0% (51 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/pt_BR/
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (193 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/vi/
Translated using Weblate (Vietnamese)
Currently translated at 42.4% (96 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/vi/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 11.2% (20 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/pt_BR/
Translated using Weblate (Portuguese)
Currently translated at 91.4% (2758 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 66.2% (53 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/pt_BR/
Translated using Weblate (Vietnamese)
Currently translated at 2.8% (5 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/vi/
Translated using Weblate (Vietnamese)
Currently translated at 0.8% (1 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/vi/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 7.9% (12 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/pt_BR/
Translated using Weblate (Vietnamese)
Currently translated at 31.0% (156 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/vi/
Translated using Weblate (Vietnamese)
Currently translated at 2.0% (4 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/vi/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 77.6% (156 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 8.0% (13 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 17.6% (21 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/pt_BR/
Translated using Weblate (Vietnamese)
Currently translated at 78.7% (2373 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/vi/
Translated using Weblate (Vietnamese)
Currently translated at 96.1% (25 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/vi/
Translated using Weblate (Vietnamese)
Currently translated at 0.8% (1 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/vi/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 87.0% (27 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.7% (15 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/pt_BR/
Translated using Weblate (Vietnamese)
Currently translated at 8.2% (21 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/vi/
Co-authored-by: Aindriú Mac Giolla Eoin <redacted>
Co-authored-by: DragonBluep <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Ettore Atalan <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: Janderson Vieira Santos <redacted>
Co-authored-by: Mustafa Can Elmacı <redacted>
Co-authored-by: Mytai20100 <redacted>
Co-authored-by: Pavel Borecki <redacted>
Co-authored-by: SnIPeRSnIPeR <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: Werner Schleifer <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: nKsyn <redacted>
Signed-off-by: Aindriú Mac Giolla Eoin <redacted>
Signed-off-by: DragonBluep <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Ettore Atalan <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: Janderson Vieira Santos <redacted>
Signed-off-by: Mustafa Can Elmacı <redacted>
Signed-off-by: Mytai20100 <redacted>
Signed-off-by: Pavel Borecki <redacted>
Signed-off-by: SnIPeRSnIPeR <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: Werner Schleifer <redacted>
Signed-off-by: ZW <redacted>
Signed-off-by: nKsyn <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/vi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilebrowser/vi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/vi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/vi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ga/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/vi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/vi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/vi/
Translation: OpenWrt/LuCI/applications/antiblock
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/filebrowser
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Michael Pfeifroth [Wed, 22 Apr 2026 13:49:58 +0000 (15:49 +0200)]
luci-app-mwan3: fix missing translation call for Weight label
The 'Weight' option label in the member configuration uses ('Weight')
instead of _('Weight'), so the string is never passed through the
translation function and always displays in English regardless of
the selected language.
Signed-off-by: Michael Pfeifroth <redacted>
Stan Grishin [Tue, 21 Apr 2026 19:15:33 +0000 (19:15 +0000)]
luci-app-pbr: update to 1.2.2-r14
fix: drop the lower case requirement wording for the interface options
Signed-off-by: Stan Grishin <redacted>
Andy Chiang [Sun, 19 Apr 2026 17:04:14 +0000 (00:04 +0700)]
luci-app-upnp: add ext_allow_private_ipv4
add ext_allow_private_ipv4
Link https://github.com/openwrt/packages/pull/29184
Signed-off-by: Andy Chiang <redacted>
Paul Donald [Mon, 20 Apr 2026 12:57:38 +0000 (14:57 +0200)]
luci-proto-openvpn: add server_ipv6 parameter
Closes #8558
Signed-off-by: Paul Donald <redacted>
Paul Donald [Mon, 20 Apr 2026 12:45:56 +0000 (14:45 +0200)]
luci-mod: use built-in format for wifi hostname
Signed-off-by: Paul Donald <redacted>
Hosted Weblate [Sat, 18 Apr 2026 19:37:34 +0000 (21:37 +0200)]
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/pt_BR/
Translated using Weblate (Turkish)
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 69.8% (37 of 53 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (47 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/tr/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 91.9% (388 of 422 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/es/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 96.8% (273 of 282 strings)
Translated using Weblate (Turkish)
Currently translated at 72.6% (133 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/tr/
Translated using Weblate (Turkish)
Currently translated at 72.7% (72 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/tr/
Translated using Weblate (Spanish)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/es/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/tr/
Translated using Weblate (Turkish)
Currently translated at 92.0% (69 of 75 strings)
Translated using Weblate (Turkish)
Currently translated at 77.1% (155 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/tr/
Translated using Weblate (Turkish)
Currently translated at 32.0% (161 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/tr/
Translated using Weblate (Turkish)
Currently translated at 77.8% (176 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/tr/
Translated using Weblate (Turkish)
Currently translated at 85.4% (129 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/tr/
Translated using Weblate (Korean)
Currently translated at 83.2% (2509 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Turkish)
Currently translated at 96.4% (134 of 139 strings)
Translated using Weblate (Turkish)
Currently translated at 95.8% (46 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/tr/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/tr/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 6.7% (11 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/tr/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hans/
Translated using Weblate (Spanish)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/es/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/zh_Hans/
Translated using Weblate (Korean)
Currently translated at 97.8% (46 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/ko/
Translated using Weblate (Turkish)
Currently translated at 84.7% (61 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/tr/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 98.8% (170 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/tr/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/es/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/zh_Hans/
Translated using Weblate (Korean)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ko/
Translated using Weblate (Turkish)
Currently translated at 95.2% (20 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/tr/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 5.4% (14 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/tr/
Translated using Weblate (Spanish)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (151 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 80.0% (2414 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Translated using Weblate (Turkish)
Currently translated at 94.5% (35 of 37 strings)
Translated using Weblate (Turkish)
Currently translated at 61.2% (49 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/tr/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 76.6% (148 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Turkish)
Currently translated at 69.1% (202 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/tr/
Translated using Weblate (Spanish)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/es/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/zh_Hans/
Translated using Weblate (Spanish)
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/es/
Translated using Weblate (Turkish)
Currently translated at 98.3% (181 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hans/
Translated using Weblate (Korean)
Currently translated at 82.5% (2489 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ru/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/pl/
Translated using Weblate (Russian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Korean)
Currently translated at 21.2% (23 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/ko/
Translated using Weblate (Russian)
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (422 of 422 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hans/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (109 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/ru/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Korean)
Currently translated at 42.7% (215 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ko/
Translated using Weblate (Korean)
Currently translated at 97.5% (275 of 282 strings)
Translated using Weblate (Korean)
Currently translated at 56.8% (62 of 109 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/ko/
Translated using Weblate (Polish)
Currently translated at 100.0% (112 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pl/
Translated using Weblate (Russian)
Currently translated at 100.0% (3015 of 3015 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Korean)
Currently translated at 51.7% (58 of 112 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ko/
Translated using Weblate (Polish)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/pl/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/zh_Hans/
Translated using Weblate (Lithuanian)
Currently translated at 75.6% (193 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/lt/
Translated using Weblate (Lithuanian)
Currently translated at 92.1% (2775 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 55.4% (279 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (184 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Co-authored-by: Adem Özcan <redacted>
Co-authored-by: DragonBluep <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Emin Tufan Çetin <redacted>
Co-authored-by: Franco Castillo <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: Matthaiks <redacted>
Co-authored-by: SnIPeRSnIPeR <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: 大王叫我来巡山 <redacted>
Signed-off-by: DragonBluep <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Emin Tufan Çetin <redacted>
Signed-off-by: Franco Castillo <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: Matthaiks <redacted>
Signed-off-by: SnIPeRSnIPeR <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: ZW <redacted>
Signed-off-by: 大王叫我来巡山 <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/pl/
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Dirk Brenken [Sat, 18 Apr 2026 17:11:08 +0000 (19:11 +0200)]
luci-app-banip: update 1.8.6-2
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Andy Chiang [Fri, 17 Apr 2026 05:54:56 +0000 (12:54 +0700)]
treewide: sync translations
Sync translations.
Signed-off-by: Andy Chiang <redacted>
Dirk Brenken [Fri, 17 Apr 2026 07:59:11 +0000 (09:59 +0200)]
luci-app-adblock: release 4.5.5-1
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Daniel F. Dickinson [Sun, 12 Apr 2026 13:53:21 +0000 (09:53 -0400)]
luci-app-radicale3: updates for Radicale 3.7.1
Radicale 3.7.1 made some breaking changes to the config, so
we need to update the UCI config to match.
Signed-off-by: Daniel F. Dickinson <redacted>
Joshua Criss [Sun, 12 Apr 2026 14:49:21 +0000 (00:49 +1000)]
luci-app-filemanager: flexible width, dark mode, refinements
Automatic width and height for the file-list,
automatic width for text editor, hex editor
and help window. Justification is that user
can adjust width using browser window and
allows responsive width to function.
Added support for dark mode, previously
was hard-coded for light mode and caused
a visual conflict with using bootstrap which
adapts to both modes. Minor fixes to buttons,
heading, nav bar, borders. Small style tidying.
Further tested across all luci-themes. Added
fallback CSS if a theme does not have dark
mode, and enclosed most open CSS classes
such as .selected, as it was affecting other
elements outside of the file manager.
Closes #8537.
Signed-off-by: Joshua Criss <redacted>
Joshua Criss [Sun, 12 Apr 2026 15:16:33 +0000 (01:16 +1000)]
luci: minor edits to CONTRIBUTING.md & PR template
For PR template, minor fix to 'please read'
section, as symbol spacing was different
on GitHub website than on GitHub Desktop.
Added HTML comment with example on how
to complete the checklist using [x]. Added
examples to the 'tested on' section.
Added abbreviation explanation for PR to
better understand terminology, similar to
using S.O.B. For CONTRIBUTING.md,
bumped up release branch example, and
minor capitalisation fixes for PR.
Signed-off-by: Joshua Criss <redacted>
Dirk Brenken [Thu, 16 Apr 2026 20:15:49 +0000 (22:15 +0200)]
luci-app-banip: release 1.8.6-1
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Hosted Weblate [Thu, 16 Apr 2026 14:16:39 +0000 (16:16 +0200)]
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.1% (124 of 165 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 70.6% (106 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 56.7% (46 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 74.3% (84 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (28 of 28 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 77.5% (31 of 40 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 81.2% (39 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 94.9% (94 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.9% (225 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 70.6% (106 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (13 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 91.8% (34 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.7% (90 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 77.5% (31 of 40 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.3% (28 of 30 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 82.3% (70 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 88.7% (63 of 71 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 83.6% (189 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.6% (84 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.3% (42 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 45.0% (69 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 69.8% (178 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 61.1% (55 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 70.9% (22 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.9% (189 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.5% (192 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.8% (56 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.1% (124 of 165 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 85.2% (249 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.9% (137 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 79.1% (38 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 81.6% (40 of 49 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.7% (43 of 44 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.7% (75 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 73.2% (134 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.8% (83 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 56.7% (46 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 88.4% (130 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.6% (11 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.1% (124 of 165 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.6% (84 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 82.3% (70 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 88.7% (63 of 71 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.9% (225 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.7% (75 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 99.5% (2999 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.7% (2975 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 94.9% (94 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.8% (56 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: ZW <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: ZW <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/zh_Hant/
Translation: OpenWrt/LuCI/applications/antiblock
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Andy Chiang [Thu, 16 Apr 2026 12:05:56 +0000 (19:05 +0700)]
luci-mod-status: i18n string context
i18n string context
Signed-off-by: Andy Chiang <redacted>
Andy Chiang [Thu, 16 Apr 2026 09:41:13 +0000 (16:41 +0700)]
luci-app-firewall: i18n string context
i18n string context
Signed-off-by: Andy Chiang <redacted>
Hosted Weblate [Tue, 14 Apr 2026 17:41:13 +0000 (19:41 +0200)]
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 69.8% (178 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Italian)
Currently translated at 82.8% (2494 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 83.6% (189 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2774 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 81.6% (40 of 49 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.6% (84 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/lt/
Translated using Weblate (Russian)
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.4% (42 of 44 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 89.3% (42 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 52.8% (266 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 61.1% (55 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 68.2% (174 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.1% (124 of 165 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.6% (11 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (178 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.9% (189 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.7% (2975 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Italian)
Currently translated at 11.1% (56 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/it/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.3% (28 of 30 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 85.2% (249 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 50.9% (77 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 73.2% (134 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 60.2% (41 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.8% (56 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 88.4% (130 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 82.3% (70 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 74.3% (84 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.5% (192 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 70.6% (106 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.3% (73 of 75 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 94.9% (94 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 46.7% (29 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.9% (225 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 88.4% (130 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.4% (42 of 44 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.9% (189 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 73.2% (134 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 85.2% (249 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.9% (137 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (22 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 89.3% (42 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/zh_Hant/
Translated using Weblate (German)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/de/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Korean)
Currently translated at 82.5% (2486 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 94.9% (94 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 82.3% (70 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.3% (73 of 75 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (47 of 47 strings)
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: Random <redacted>
Co-authored-by: SnIPeRSnIPeR <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: ssantos <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: Random <redacted>
Signed-off-by: SnIPeRSnIPeR <redacted>
Signed-off-by: ZW <redacted>
Signed-off-by: ssantos <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsantiblock/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/zh_Hant/
Translation: OpenWrt/LuCI/applications/antiblock
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Hosted Weblate [Mon, 13 Apr 2026 17:19:27 +0000 (19:19 +0200)]
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.5% (192 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.4% (42 of 44 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.7% (75 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 45.0% (69 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 85.2% (249 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.3% (73 of 75 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 70.6% (106 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.9% (189 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.6% (84 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 73.2% (134 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.6% (11 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.4% (42 of 44 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.8% (56 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 88.4% (130 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.9% (225 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 70.9% (22 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 69.8% (178 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.8% (83 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 91.8% (34 of 37 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (26 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 60.2% (41 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 61.1% (55 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.5% (192 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (28 of 28 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 82.3% (70 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 45.0% (69 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 94.9% (94 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 69.1% (112 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (265 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.6% (11 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/zh_Hant/
Translated using Weblate (Portuguese)
Currently translated at 0.9% (1 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/pt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Latvian)
Currently translated at 3.5% (15 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 77.5% (31 of 40 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.8% (56 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (21 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.9% (225 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 85.2% (249 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hant/
Translated using Weblate (Portuguese)
Currently translated at 74.1% (63 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/pt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 88.4% (130 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (201 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.7% (90 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 94.9% (94 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 73.2% (134 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (198 of 198 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 82.3% (70 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.7% (75 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.3% (42 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 88.7% (63 of 71 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 69.1% (112 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 56.7% (46 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.9% (189 of 193 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 81.6% (40 of 49 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.9% (137 of 178 strings)
Translation: OpenWrt/LuCI/applications/lldpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslldpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Portuguese)
Currently translated at 61.2% (49 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/pt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/zh_Hant/
Translated using Weblate (Latvian)
Currently translated at 33.3% (7 of 21 strings)
Translation: OpenWrt/LuCI/applications/tor
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstor/lv/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.1% (124 of 165 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.4% (42 of 44 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (13 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 61.1% (55 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (40 of 40 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 83.6% (189 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.5% (192 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (292 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.8% (83 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/zh_Hant/
Translated using Weblate (Portuguese)
Currently translated at 4.5% (1 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/pt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 79.1% (38 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/zh_Hant/
Added translation using Weblate (Latvian)
Translated using Weblate (Latvian)
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/lv/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.5% (192 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Latvian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/lv/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.6% (84 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 70.6% (106 of 150 strings)
Translation: OpenWrt/LuCI/applications/strongswan-swanctl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstrongswan-swanctl/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 74.3% (84 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Added translation using Weblate (Latvian)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Latvian)
Currently translated at 3.3% (14 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Latvian)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/lv/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Translated using Weblate (Latvian)
Currently translated at 92.3% (12 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/lv/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (47 of 47 strings)
Translated using Weblate (Korean)
Currently translated at 80.0% (338 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Latvian)
Currently translated at 7.2% (218 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lv/
Added translation using Weblate (Latvian)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Latvian)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/babeld
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbabeld/lv/
Translated using Weblate (Korean)
Currently translated at 77.4% (327 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Added translation using Weblate (Latvian)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.4% (193 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.9% (225 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.9% (225 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.9% (225 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Turkish)
Currently translated at 68.0% (32 of 47 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/tr/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (53 of 53 strings)
Translated using Weblate (Lithuanian)
Currently translated at 50.2% (253 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (4 of 4 strings)
Translation: OpenWrt/LuCI/applications/softether
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssoftether/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 69.1% (112 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 69.1% (112 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 69.1% (112 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Translated using Weblate (Turkish)
Currently translated at 85.4% (129 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/tr/
Translated using Weblate (Turkish)
Currently translated at 6.7% (11 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/tr/
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2774 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Turkish)
Currently translated at 95.2% (20 of 21 strings)
Translation: OpenWrt/LuCI/applications/crowdsec-firewall-bouncer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscrowdsec-firewall-bouncer/tr/
Translated using Weblate (Turkish)
Currently translated at 4.5% (1 of 22 strings)
Translation: OpenWrt/LuCI/applications/wifihistory
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifihistory/tr/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Turkish)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/tr/
Translated using Weblate (Turkish)
Currently translated at 61.2% (49 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/tr/
Translated using Weblate (Korean)
Currently translated at 36.3% (61 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.7% (75 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.7% (75 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.7% (75 of 80 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (86 of 86 strings)
Translation: OpenWrt/LuCI/applications/package-manager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspackage-manager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 45.0% (69 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 45.0% (69 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (27 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/zh_Hant/
Translated using Weblate (Turkish)
Currently translated at 69.1% (202 of 292 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/tr/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.6% (84 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.6% (84 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.6% (84 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.7% (90 of 94 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 99.3% (150 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/lt/
Translated using Weblate (Lithuanian)
Currently translated at 60.3% (154 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 60.2% (41 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 60.2% (41 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 60.2% (41 of 68 strings)
Translation: OpenWrt/LuCI/applications/chrony
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationschrony/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (113 of 113 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hant/
Translated using Weblate (Latvian)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/lv/
Translated using Weblate (Latvian)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/lv/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 77.0% (325 of 422 strings)
Translated using Weblate (Turkish)
Currently translated at 72.7% (72 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/tr/
Translated using Weblate (Latvian)
Currently translated at 3.3% (4 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/lv/
Translated using Weblate (Turkish)
Currently translated at 32.0% (161 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/tr/
Translated using Weblate (Korean)
Currently translated at 82.5% (2486 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (31 of 31 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.5% (2968 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Turkish)
Currently translated at 57.6% (49 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/tr/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Irish)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ga/
Translated using Weblate (Latvian)
Currently translated at 7.2% (217 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lv/
Translated using Weblate (Turkish)
Currently translated at 36.6% (97 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/tr/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (64 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (91 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/
Translated using Weblate (Lithuanian)
Currently translated at 93.8% (152 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lt/
Co-authored-by: Aindriú Mac Giolla Eoin <redacted>
Co-authored-by: António Machado <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Edgars Andersons <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: SnIPeRSnIPeR <redacted>
Co-authored-by: UDP <redacted>
Co-authored-by: Yusuf Bekil <redacted>
Co-authored-by: ZW <redacted>
Co-authored-by: ℂ𝕠𝕠𝕠𝕝 (𝕘𝕚𝕥𝕙𝕦𝕓.𝕔𝕠𝕞/ℂ𝕠𝕠𝕠𝕝) <redacted>
Signed-off-by: "ℂ𝕠𝕠𝕠𝕝 (𝕘𝕚𝕥𝕙𝕦𝕓.𝕔𝕠𝕞/ℂ𝕠𝕠𝕠𝕝)" <redacted>
Signed-off-by: Aindriú Mac Giolla Eoin <redacted>
Signed-off-by: António Machado <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Edgars Andersons <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: SnIPeRSnIPeR <redacted>
Signed-off-by: UDP <redacted>
Signed-off-by: Yusuf Bekil <redacted>
Signed-off-by: ZW <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/zh_Hant/
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
Joshua Criss [Mon, 6 Apr 2026 23:17:28 +0000 (09:17 +1000)]
luci-theme-bootstrap: fix header .pull-right
Noticed the indicators behaving a little odd
on mobile, and realised one flex element in
the mobile.css was the cause. Removing
the flex entry did not cause any further
issue, and fixed the indicator misbehaviour.
Signed-off-by: Joshua Criss <redacted>
Joshua Criss [Sun, 5 Apr 2026 08:24:09 +0000 (18:24 +1000)]
luci: include formality checks to CONTRIBUTING.md
As a new person to contributing on GitHub,
I noticed the CONTRIBUTING.md missing
some important information that I would not
have known until I tried my first pull request,
such as the character limits and email
requirements. I've seen others also get
tripped up by this too, as they also were not
aware until afterwards. So, I have tried to
include the common ones into the
Contributing Guidelines, along with some
minor capitalisation updates for consistency.
Will also update the Pull Request template
to achieve the same goal as well.
Signed-off-by: Joshua Criss <redacted>
Joshua Criss [Sun, 5 Apr 2026 09:02:09 +0000 (19:02 +1000)]
luci: improvements to pull_request_template
As a new person to contributing on GitHub,
I noticed the Pull Request template missing
some important information that I would not
have known until I tried my first Pull Request,
such as the character limits and email
requirements. I've seen others also get
tripped up by this too, as they also were not
aware until afterwards. So, I have tried to
include the common ones into the template.
I have also prepared a layout that would
ensure a more uniform experience when
looking through Pull Requests, with expected
headings and the ability to provide the
instruction of what to put under each heading.
Minor grammar and punctuation edits as well.
If the layout is preferred as a seperate Pull
Request, let me know and I will do so.
Will also update the CONTRIBUTING.md
file to achieve the same goal as well.
Signed-off-by: Joshua Criss <redacted>
Hosted Weblate [Fri, 10 Apr 2026 17:02:29 +0000 (19:02 +0200)]
Translated using Weblate (Lithuanian)
Currently translated at 55.2% (141 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Lithuanian)
Currently translated at 85.1% (138 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/lt/
Translated using Weblate (Lithuanian)
Currently translated at 92.0% (2772 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Lithuanian)
Currently translated at 48.3% (243 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Lithuanian)
Currently translated at 91.8% (2768 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Lithuanian)
Currently translated at 39.6% (101 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 41.9% (13 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 50.9% (77 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.2% (2960 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Lithuanian)
Currently translated at 91.7% (2763 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Lithuanian)
Currently translated at 44.7% (225 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (2 of 2 strings)
Translation: OpenWrt/LuCI/applications/babeld
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbabeld/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.5% (192 of 201 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.5% (405 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hans/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.3% (73 of 75 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 82.3% (70 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 83.6% (189 of 226 strings)
Translation: OpenWrt/LuCI/applications/adblock-fast
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock-fast/zh_Hant/
Translated using Weblate (Japanese)
Currently translated at 63.8% (1924 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ja/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/zh_Hans/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.6% (59 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 30.9% (35 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 82.3% (70 of 85 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 67.8% (19 of 28 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (59 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/zh_Hant/
Translated using Weblate (Japanese)
Currently translated at 6.6% (6 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/ja/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.8% (83 of 108 strings)
Translation: OpenWrt/LuCI/applications/rustdesk-server
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrustdesk-server/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 75.1% (124 of 165 strings)
Translated using Weblate (Japanese)
Currently translated at 69.8% (37 of 53 strings)
Translated using Weblate (Korean)
Currently translated at 60.8% (28 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.8% (56 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.8% (56 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (503 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hans/
Translated using Weblate (Japanese)
Currently translated at 15.1% (10 of 66 strings)
Translation: OpenWrt/LuCI/applications/sshtunnel
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssshtunnel/ja/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 84.6% (11 of 13 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (13 of 17 strings)
Translation: OpenWrt/LuCI/applications/eoip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationseoip/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/zh_Hans/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 77.5% (31 of 40 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 27.0% (20 of 74 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 56.7% (46 of 81 strings)
Translation: OpenWrt/LuCI/applications/email
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsemail/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (46 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hans/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 80.1% (403 of 503 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.6% (164 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hant/
Translated using Weblate (Japanese)
Currently translated at 10.0% (12 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/ja/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 70.9% (22 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/zh_Hant/
Translated using Weblate (Japanese)
Currently translated at 34.0% (15 of 44 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/zh_Hans/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 93.3% (42 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/zh_Hant/
Translated using Weblate (Japanese)
Currently translated at 30.3% (10 of 33 strings)
Translation: OpenWrt/LuCI/applications/openlist
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenlist/ja/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (255 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/zh_Hans/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 99.1% (112 of 113 strings)
Translation: OpenWrt/LuCI/applications/filemanager
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfilemanager/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 74.3% (84 of 113 strings)
Translation: OpenWrt/LuCI/applications/libreswan
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslibreswan/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (165 of 165 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (162 of 162 strings)
Translation: OpenWrt/LuCI/applications/ustreamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsustreamer/zh_Hans/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 98.2% (2960 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 80.3% (82 of 102 strings)
Translated using Weblate (Korean)
Currently translated at 35.1% (59 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 90.5% (382 of 422 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 96.2% (26 of 27 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/zh_Hant/
Translated using Weblate (Japanese)
Currently translated at 10.3% (8 of 77 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/ja/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 46.7% (29 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 46.7% (29 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 46.7% (29 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 46.7% (29 of 62 strings)
Translation: OpenWrt/LuCI/applications/apinger
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsapinger/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (147 of 147 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/zh_Hans/
Translated using Weblate (Korean)
Currently translated at 38.4% (35 of 91 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 76.4% (91 of 119 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (172 of 172 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hans/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 73.2% (134 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 73.2% (134 of 183 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (45 of 45 strings)
Translation: OpenWrt/LuCI/applications/cloudflared
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscloudflared/zh_Hans/
Translated using Weblate (Korean)
Currently translated at 16.9% (10 of 59 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ko/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 61.1% (55 of 90 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/zh_Hant/
Translated using Weblate (Korean)
Currently translated at 77.4% (24 of 31 strings)
Translation: OpenWrt/LuCI/applications/csshnpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscsshnpd/ko/
Translated using Weblate (Japanese)
Currently translated at 7.8% (13 of 165 strings)
Translated using Weblate (Japanese)
Currently translated at 75.4% (77 of 102 strings)
Translated using Weblate (Japanese)
Currently translated at 1.8% (2 of 111 strings)
Translation: OpenWrt/LuCI/applications/radicale3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale3/ja/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Japanese)
Currently translated at 6.6% (17 of 255 strings)
Translation: OpenWrt/LuCI/applications/keepalived
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationskeepalived/ja/
Translated using Weblate (Japanese)
Currently translated at 45.4% (15 of 33 strings)
Translation: OpenWrt/LuCI/applications/v2raya
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsv2raya/ja/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Lithuanian)
Currently translated at 99.3% (150 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/lt/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 95.4% (42 of 44 strings)
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 50.9% (77 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 50.9% (77 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 97.8% (45 of 46 strings)
Translation: OpenWrt/LuCI/applications/xfrpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxfrpc/zh_Hant/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (153 of 153 strings)
Translation: OpenWrt/LuCI/applications/dawn
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdawn/zh_Hans/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Portuguese)
Currently translated at 91.6% (2759 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Korean)
Currently translated at 82.3% (2481 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (139 of 139 strings)
Translated using Weblate (Portuguese)
Currently translated at 98.4% (63 of 64 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 99.9% (3009 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Portuguese)
Currently translated at 91.2% (385 of 422 strings)
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (75 of 75 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (16 of 16 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/pt/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (3012 of 3012 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Portuguese)
Currently translated at 64.5% (171 of 265 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (282 of 282 strings)
Translated using Weblate (Portuguese)
Currently translated at 98.9% (182 of 184 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (124 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (99 of 99 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Russian)
Currently translated at 100.0% (151 of 151 strings)
Translation: OpenWrt/LuCI/applications/usteer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsusteer/ru/
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/zh_Hans/
Co-authored-by: BigBossK <redacted>
Co-authored-by: CitrusCandy <redacted>
Co-authored-by: DragonBluep <redacted>
Co-authored-by: Džiugas Januševičius <redacted>
Co-authored-by: Hosted Weblate <redacted>
Co-authored-by: Hyeonjeong Lee <redacted>
Co-authored-by: SnIPeRSnIPeR <redacted>
Co-authored-by: UDP <redacted>
Co-authored-by: Volenski <redacted>
Co-authored-by: evan-yang <redacted>
Co-authored-by: konno_he <redacted>
Co-authored-by: nKsyn <redacted>
Co-authored-by: ssantos <redacted>
Co-authored-by: yohru <redacted>
Signed-off-by: BigBossK <redacted>
Signed-off-by: CitrusCandy <redacted>
Signed-off-by: DragonBluep <redacted>
Signed-off-by: Džiugas Januševičius <redacted>
Signed-off-by: Hyeonjeong Lee <redacted>
Signed-off-by: SnIPeRSnIPeR <redacted>
Signed-off-by: UDP <redacted>
Signed-off-by: Volenski <redacted>
Signed-off-by: evan-yang <redacted>
Signed-off-by: konno_he <redacted>
Signed-off-by: nKsyn <redacted>
Signed-off-by: ssantos <redacted>
Signed-off-by: yohru <redacted>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/ja/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/ja/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ja/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ja/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hant/
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
weicheng04 [Fri, 10 Apr 2026 08:46:05 +0000 (16:46 +0800)]
luci-mod-network: fix uci.remove() deleting entire radio section on wifi join
In handleJoinConfirm(), when the scanned BSS has no VHT/HT info,
uci.remove('wireless', radioDev.getName(), 'htmode') is called
intending to remove only the htmode option. However, uci.remove()
only accepts (conf, sid) and silently ignores the third parameter,
causing the entire wifi-device section to be deleted from the
rpcd session delta.
This makes the radio disappear from the Wireless Overview page
until the session delta is cleared.
Fix by using uci.unset() which correctly handles three parameters
(conf, sid, opt) to remove a single option.
Signed-off-by: Weicheng Xiao <redacted>
Dirk Brenken [Thu, 9 Apr 2026 21:19:24 +0000 (23:19 +0200)]
luci-app-adblock: release 4.5.4-1
* sync with base package
Signed-off-by: Dirk Brenken <redacted>
Konstantin Glukhov [Wed, 25 Mar 2026 16:32:21 +0000 (01:32 +0900)]
package-manager: migrate to apk-tools JSON API
Replace legacy opkg status parsing with native apk-tools JSON queries.
This modernizes the backend calls and improves dependency resolution.
- Implement 'apk query --format json' for package data retrieval.
- Add robust regex for versioned dependencies (e.g., name>=version).
- Update version comparison to handle APK date-based revisions.
- Fix label-input associations to resolve accessibility warnings.
- Retain deprecated opkg fallback logic for LuCI master.
Signed-off-by: Konstantin Glukhov <redacted>
mdevolde [Mon, 6 Apr 2026 21:22:45 +0000 (23:22 +0200)]
luci-app-lxc: add permission to set lxc options
Add set permission in acl.d file for luci-app-lxc
to allow users to set lxc options in luci-app-lxc.
(considering that user has write permission for
this app)
Signed-off-by: mdevolde <redacted>
Paul Donald [Thu, 9 Apr 2026 12:51:38 +0000 (14:51 +0200)]
luci-plugins: align naming
consistency in the repo
Signed-off-by: Paul Donald <redacted>
Han Yiming [Thu, 29 Jan 2026 09:23:37 +0000 (17:23 +0800)]
luci-base: add authentication plugin mechanism
This commit introduces a generic authentication plugin mechanism
to the LuCI dispatcher, enabling multi-factor authentication
(MFA/2FA) and other custom verification methods without
modifying core files.
This implementation integrates with the new plugin UI architecture
introduced in commit
617f364 (luci-mod-system: implement plugin UI
architecture), allowing authentication plugins to be managed
through the unified System > Plugins interface.
Signed-off-by: Han Yiming <redacted>
Dirk Brenken [Tue, 7 Apr 2026 17:34:33 +0000 (19:34 +0200)]
luci-app-banip: release 1.8.5-1
* sync with base package
Signed-off-by: Dirk Brenken <redacted>