Jo-Philipp Wich
b3d661cd84
ucode-mod-html: fix build with gcc 5
...
Older gcc versions raise a `label at end of compound statement` error due
to the empty default case. Fix the problem by adding an explicit `break`
statement.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2023-08-08 20:49:31 +02:00
Toke Høiland-Jørgensen
762c45eb2f
Merge pull request #6415 from stokito/acme
...
Update luci-app-acme to work with the updated acme client, and rework the UI some as well.
2023-08-08 13:43:49 +02:00
Sergey Ponomarev
d27bdac9b3
luci-app-acme: Translations update
...
The key type was rearranged.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:57:58 +03:00
Sergey Ponomarev
7e585855ed
luci-app-acme: Rename caption "Key size" to "Key type"
...
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:57:25 +03:00
Sergey Ponomarev
90d852c3e2
luci-app-acme: Translation: merge "ACME certificates" and "ACME certs"
...
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:56:48 +03:00
Sergey Ponomarev
b0f6079ead
luci-app-acme: Russian translation for new fields
...
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:56:42 +03:00
Sergey Ponomarev
ea913e1426
luci-app-acme: Update translations
...
Keys were rearranged automatically.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:55:23 +03:00
Sergey Ponomarev
e344960c55
luci-app-acme: List of certificates
...
Add Certificates section to help users to see issued certificates and path to them.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:32 +03:00
Sergey Ponomarev
bebad8f7f8
luci-app-acme: Account email explanation
...
Add rationale how the email is used.
The translation key is separate to keep an existing translation.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:29 +03:00
Sergey Ponomarev
32c3fd4922
luci-app-acme: DNS API: list of all providers
...
To simplify configuration we need a list of all supported providers.
Each provider has own set of params. We should show them when a user selected a provider.
To help a user to find instruction for the provider we will generate a link to Wiki.
A user still can change the Credentials option manually.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:27 +03:00
Sergey Ponomarev
585df1d137
luci-app-acme: Split Challenge Validation tab into two
...
The validation_method is now set to webroot by default.
This is the most used option.
The webroot option is now empty by default.
Into the description added that by default will be used /var/run/acme/challenge/
Webservers should serve the folder under /.well-known/acme-challenge/ url.
The folder is automatically created by the acmesh service on renewal.
The Challenge Validation Tab is split to Webroot and DNS and the validation method moved to general tab.
So ideally a user won't see the webroot folder option from other tab.
And a user can basically enable the webroot just in the general tab without leaving it.
The DNS validation needs too many options to it needs for own tab.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:23 +03:00
Sergey Ponomarev
390393316c
luci-app-acme: Remove update_nginx and update_uhttpd
...
The options now removed completely and hotplug hooks will be used instead.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:20 +03:00
Sergey Ponomarev
f2f41446ce
luci-app-acme: Move use_staging and key_type to advanced tab
...
The options are useful only for experienced users.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:18 +03:00
Sergey Ponomarev
9486292d42
luci-app-acme: Migrate old keylength to key_type
...
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:15 +03:00
Sergey Ponomarev
15ce930bcb
luci-app-acme: Rename keylength to key_type
...
The keylength option was renamed to key_type and values changed.
See 6d61014e51
Make it optional to let acme.sh to decide (currently ec256)
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:13 +03:00
Sergey Ponomarev
e39d4a22f4
luci-app-acme: Hide keysize and days columns
...
The columns makes little sense and instead we can keep more space for domains.
The days is really advanced option that is better not to change and it's support may be removed for simplicity.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:10 +03:00
Sergey Ponomarev
ea516da183
luci-app-acme: Reuse translations for removed state_dir option
...
In the commit acf40dc0d4
was removed the state_dir.
But translations were kept and they still have a value.
We should say to a user where the certs are stored now, and we can reuse the old translations.
They need to be fixed a little bit and already fixed for Russian, Ukrainian and Bulgarian languages.
See #6273
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-08 00:44:00 +03:00
Jo-Philipp Wich
9763e3e9d3
luci-base: runtime.uc: fix error500() invocation on theme failure
...
In case no single theme could be loaded successfully, the runtime class
failed to properly invoke the `error500()` method, which is only available
through the passed environment at this point.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2023-08-07 23:36:36 +02:00
Jo-Philipp Wich
107ed061a8
luci-base: dispatcher.uc: fix N_()
fallback implementation
...
The fallback implementation of `N_()` accessed the wrong variable, a
global `n` instead of the local `args`. Adjust the expression to reference
the correct variable.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2023-08-07 23:33:56 +02:00
Jo-Philipp Wich
a435d4e11a
luci-base: dispatcher.uc: fix error500() reporting in fallback case
...
Fix the `error500()` fallback code path to properly output the given error
message in case rendering the error template failed.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2023-08-07 23:29:50 +02:00
Jo-Philipp Wich
48b096de1c
Merge pull request #6504 from hnyman/cleanup
...
Remove old BROKEN luci-mod-admin-mini and luci-lib-rpcc
2023-08-07 01:16:43 +02:00
Hannu Nyman
46a8abc54b
luci-lib-rpcc: Remove old broken lib
...
Remove the old library that has been BROKEN since 2015.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2023-08-06 22:27:18 +03:00
Hannu Nyman
aebbafe177
luci-mod-admin-mini: Remove the broken ancient mini version
...
Remove the old mini version that has been marked BROKEN at least
since 2015 when LuCI build system was reorgnised in a major way.
The module is not compatible with the current stuff.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2023-08-06 22:18:47 +03:00
Hosted Weblate
264786c784
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (34 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/zh_Hant/
Translated using Weblate (Spanish)
Currently translated at 99.4% (185 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (56 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/es/
Translated using Weblate (Chinese (Traditional))
Currently translated at 97.6% (127 of 130 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (16 of 16 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Spanish)
Currently translated at 96.7% (269 of 278 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 92.7% (345 of 372 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 93.5% (2063 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (48 of 48 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 95.4% (63 of 66 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (38 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 91.6% (341 of 372 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 93.5% (2063 of 2206 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 9.4% (7 of 74 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% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.2% (4 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/lt/
Translated using Weblate (Lithuanian)
Currently translated at 4.0% (3 of 74 strings)
Translated using Weblate (Lithuanian)
Currently translated at 9.0% (3 of 33 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.4% (2 of 58 strings)
Translated using Weblate (Lithuanian)
Currently translated at 16.6% (3 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/lt/
Translated using Weblate (Lithuanian)
Currently translated at 4.7% (8 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lt/
Translated using Weblate (Lithuanian)
Currently translated at 4.0% (5 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 2.6% (3 of 113 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.6% (3 of 82 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.2% (4 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.1% (2 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 4.1% (8 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lt/
Translated using Weblate (Lithuanian)
Currently translated at 8.0% (2 of 25 strings)
Translated using Weblate (Lithuanian)
Currently translated at 6.0% (2 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 2.5% (6 of 238 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.5% (3 of 119 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 3.1% (6 of 192 strings)
Translated using Weblate (Lithuanian)
Currently translated at 9.6% (3 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.2% (1 of 44 strings)
Translated using Weblate (Lithuanian)
Currently translated at 7.6% (1 of 13 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/lt/
Translated using Weblate (Lithuanian)
Currently translated at 6.2% (1 of 16 strings)
Translated using Weblate (Lithuanian)
Currently translated at 2.1% (8 of 372 strings)
Translated using Weblate (Lithuanian)
Currently translated at 4.3% (5 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.0% (6 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 6.0% (5 of 82 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/lt/
Translated using Weblate (Lithuanian)
Currently translated at 4.6% (3 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 4.2% (94 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Italian)
Currently translated at 100.0% (67 of 67 strings)
Translated using Weblate (Spanish)
Currently translated at 85.0% (57 of 67 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (48 of 48 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (3 of 3 strings)
Translated using Weblate (Italian)
Currently translated at 31.8% (14 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/it/
Translated using Weblate (Italian)
Currently translated at 22.5% (42 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/it/
Translated using Weblate (Italian)
Currently translated at 18.9% (22 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/it/
Translated using Weblate (Italian)
Currently translated at 11.2% (14 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/it/
Translated using Weblate (Italian)
Currently translated at 19.3% (24 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/it/
Translated using Weblate (Spanish)
Currently translated at 100.0% (82 of 82 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/es/
Translated using Weblate (Italian)
Currently translated at 100.0% (23 of 23 strings)
Translated using Weblate (Italian)
Currently translated at 16.8% (19 of 113 strings)
Translated using Weblate (Italian)
Currently translated at 68.7% (191 of 278 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 93.5% (2063 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Italian)
Currently translated at 99.6% (2199 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Spanish)
Currently translated at 95.7% (2113 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Italian)
Currently translated at 14.5% (17 of 117 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/it/
Translated using Weblate (Italian)
Currently translated at 11.5% (15 of 130 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/it/
Translated using Weblate (Italian)
Currently translated at 41.0% (114 of 278 strings)
Translated using Weblate (Italian)
Currently translated at 99.5% (2196 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Italian)
Currently translated at 25.1% (53 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/it/
Translated using Weblate (Italian)
Currently translated at 32.6% (17 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/it/
Translated using Weblate (Italian)
Currently translated at 10.7% (14 of 130 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/it/
Translated using Weblate (Italian)
Currently translated at 18.9% (22 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/it/
Translated using Weblate (Italian)
Currently translated at 18.5% (23 of 124 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/it/
Translated using Weblate (Italian)
Currently translated at 25.8% (44 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (40 of 40 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/it/
Translated using Weblate (Italian)
Currently translated at 92.7% (2045 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Co-authored-by: Džiugas J <dziugas1959@hotmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Trevor <wowpapa3232@gmail.com>
Co-authored-by: random r <epsilin@yopmail.com>
Signed-off-by: Džiugas J <dziugas1959@hotmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Trevor <wowpapa3232@gmail.com>
Signed-off-by: random r <epsilin@yopmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-battstatus/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/zh_Hant/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/polipo
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/vnstat
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
2023-08-06 13:15:49 +03:00
Jo-Philipp Wich
85f898819c
Merge pull request #6502 from hnyman/dhcp-tabs
...
luci-mod-network: Adjust DHCP/DNS tab order
2023-08-06 00:41:14 +02:00
Hannu Nyman
7735bc1fdd
luci-mod-network: Adjust DNS/DHCP tab order
...
Adjust the order of tabs in the DNS/DHCP page.
Based on estimated importance of tabs
* move common (old) tabs to be earlier
* move the less frequently used (new) tabs later
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2023-08-05 19:05:57 +03:00
Hannu Nyman
503ae0018d
Merge pull request #6335 from arbolitoloco1/patch-4
...
luci-mod-network: add support for creating cname records
2023-08-05 18:49:50 +03:00
Santiago Kozak
8a170b3149
luci-mod-network: added support for cname records
...
This commit adds a tab that allows creating CNAME records
Signed-off-by: Santiago Kozak <santikzk1406@gmail.com>
2023-08-05 08:45:43 -03:00
Jo-Philipp Wich
0ea74956c9
Merge pull request #6490 from Ansuel/improve-chan-grap
2023-08-03 17:09:36 +02:00
Jo-Philipp Wich
52e8d5df94
Merge pull request #6491 from wordlesswind/patch-luci-app-firewall
2023-08-03 17:09:03 +02:00
Jo-Philipp Wich
541d2cd6b4
Merge pull request #5401 from systemcrash/static_lease_mac_wildcard
2023-08-03 17:08:19 +02:00
Jo-Philipp Wich
d76bcbf96a
Merge pull request #6497 from stokito/LUA_TARGET
2023-08-03 17:05:09 +02:00
Sergey Ponomarev
1eb42fbbce
luci-app-vpnc: Remove LUA_TARGET
...
The app was migrated to JS so the LUA_TARGET is not needed.
Also remove LUCI_PKGARCH:=all which is anyway a default.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-03 17:48:58 +03:00
Sergey Ponomarev
5360d43145
luci-app-uhttpd: Remove LUA_TARGET
...
The app was migrated to JS so the LUA_TARGET is not needed.
Also remove LUCI_PKGARCH:=all which is anyway a default.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-08-03 17:48:42 +03:00
Paul Dee
f73abffa2a
luci-mod-network: Static Leases improvements
...
Under DHCP and DNS, Static Leases tab:
Add extra fields and booleans
Add 'ignore' value for ip field
Add description text for fields
Enable wildcards in mac addresses
Signed-off-by: Paul Dee <itsascambutmailmeanyway@gmail.com>
2023-08-03 16:45:56 +02:00
Hosted Weblate
33e1c0d119
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 13.3% (2 of 15 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 50.0% (8 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 8.9% (8 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 16.1% (5 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 22.2% (4 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 5.8% (2 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 4.3% (8 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 13.4% (11 of 82 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 19.3% (12 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 10.0% (17 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 10.0% (24 of 238 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 7.5% (5 of 66 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 15.7% (6 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/nb_NO/
Translated using Weblate (Italian)
Currently translated at 26.1% (50 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/it/
Translated using Weblate (Italian)
Currently translated at 25.2% (43 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/it/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 19.7% (39 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 78.4% (80 of 102 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 28.0% (78 of 278 strings)
Translated using Weblate (Italian)
Currently translated at 40.6% (113 of 278 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 34.6% (129 of 372 strings)
Translated using Weblate (Italian)
Currently translated at 90.7% (2001 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Lithuanian)
Currently translated at 4.1% (7 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.2% (4 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 3.6% (7 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lt/
Translated using Weblate (Lithuanian)
Currently translated at 7.6% (2 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 5.7% (3 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 6.4% (2 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/lt/
Translated using Weblate (Lithuanian)
Currently translated at 4.0% (2 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.8% (7 of 372 strings)
Translated using Weblate (Lithuanian)
Currently translated at 77.0% (37 of 48 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.7% (83 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Italian)
Currently translated at 100.0% (38 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/it/
Translated using Weblate (Italian)
Currently translated at 87.8% (1939 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Lithuanian)
Currently translated at 3.6% (3 of 82 strings)
Translated using Weblate (Lithuanian)
Currently translated at 6.6% (4 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.2% (3 of 133 strings)
Translated using Weblate (Lithuanian)
Currently translated at 6.4% (4 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.8% (7 of 183 strings)
Translated using Weblate (Lithuanian)
Currently translated at 1.6% (6 of 372 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.0% (2 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 62.5% (30 of 48 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.4% (77 of 2206 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% (14 of 14 strings)
Translated using Weblate (Lithuanian)
Currently translated at 8.1% (6 of 74 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 4.5% (2 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 1.4% (4 of 278 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.0% (2 of 66 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/lt/
Translated using Weblate (Lithuanian)
Currently translated at 4.0% (2 of 49 strings)
Translated using Weblate (Lithuanian)
Currently translated at 2.7% (2 of 74 strings)
Translated using Weblate (Lithuanian)
Currently translated at 1.2% (1 of 82 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.5% (6 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.4% (3 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 1.7% (2 of 113 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.3% (2 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.1% (6 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.8% (1 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 4.0% (1 of 25 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.1% (4 of 127 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.8% (2 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.1% (1 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.6% (5 of 192 strings)
Translated using Weblate (Lithuanian)
Currently translated at 2.3% (3 of 130 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.2% (6 of 183 strings)
Translated using Weblate (Lithuanian)
Currently translated at 1.3% (5 of 372 strings)
Translated using Weblate (Lithuanian)
Currently translated at 52.0% (25 of 48 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.0% (1 of 33 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.3% (75 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 1.6% (1 of 62 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 58.3% (7 of 12 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/nb_NO/
Translated using Weblate (Italian)
Currently translated at 18.1% (21 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/it/
Translated using Weblate (Italian)
Currently translated at 16.8% (19 of 113 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 34.7% (766 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/nb_NO/
Translated using Weblate (Italian)
Currently translated at 84.8% (1872 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Co-authored-by: Allan Nordhøy <epost@anotheragency.no>
Co-authored-by: Džiugas J <dziugas1959@hotmail.com>
Co-authored-by: Eirik Sørstrømmen <sorstrommen@users.noreply.hosted.weblate.org>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: random r <epsilin@yopmail.com>
Signed-off-by: Allan Nordhøy <epost@anotheragency.no>
Signed-off-by: Džiugas J <dziugas1959@hotmail.com>
Signed-off-by: Eirik Sørstrømmen <sorstrommen@users.noreply.hosted.weblate.org>
Signed-off-by: random r <epsilin@yopmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/nb_NO/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/nb_NO/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/nb_NO/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/lt/
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/ntpc
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2023-08-02 15:59:28 +03:00
清靈語
5d1e581663
luci-app-firewall: cleaning up outdated instructions on hardware NAT
2023-07-31 13:01:29 +08:00
Christian Marangi
69a8e4a98d
luci-mod-status: improve channel graph for 5GHz radio
...
Improve channel graph for 5GHz radio by using dotted lines to identify
the intermediate channel, full line to identify the different channel
band and bold line to identify the different section of the wifi
channels.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
2023-07-30 23:09:59 +02:00
Christian Marangi
6d722ccdae
luci-mod-status: fix wrong position of channel for 5GHz radio
...
Channel tag for 5GHz radios is wrong and is confusing for any user
that wants to better identify the used channel from the graph.
Add some additional logic to better position the channel tag.
Fixes : #6419
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
2023-07-30 23:09:59 +02:00
Hosted Weblate
fd6fb5c7b6
Translated using Weblate (Lithuanian)
...
Currently translated at 4.0% (3 of 74 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/lt/
Translated using Weblate (Lithuanian)
Currently translated at 4.1% (2 of 48 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.2% (1 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 0.3% (1 of 278 strings)
Translated using Weblate (Lithuanian)
Currently translated at 1.5% (1 of 66 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.1% (2 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.2% (1 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.0% (1 of 49 strings)
Translated using Weblate (Lithuanian)
Currently translated at 23.5% (4 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.3% (1 of 74 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.0% (1 of 33 strings)
Translated using Weblate (Lithuanian)
Currently translated at 1.7% (1 of 58 strings)
Translated using Weblate (Lithuanian)
Currently translated at 5.5% (1 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.1% (2 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/lt/
Translated using Weblate (Lithuanian)
Currently translated at 0.9% (1 of 102 strings)
Translated using Weblate (Lithuanian)
Currently translated at 4.3% (2 of 46 strings)
Translated using Weblate (Lithuanian)
Currently translated at 0.8% (1 of 113 strings)
Translated using Weblate (Lithuanian)
Currently translated at 1.2% (1 of 82 strings)
Translated using Weblate (Lithuanian)
Currently translated at 2.4% (3 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 12.5% (3 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/lt/
Translated using Weblate (Lithuanian)
Currently translated at 0.5% (1 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 1.5% (3 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.5% (2 of 133 strings)
Translated using Weblate (Lithuanian)
Currently translated at 2.3% (3 of 127 strings)
Translation: OpenWrt/LuCI/applications/pbr
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspbr/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.0% (1 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 1.6% (4 of 238 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.0% (1 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 1.9% (1 of 52 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% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.6% (2 of 119 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 6.2% (3 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/lt/
Translated using Weblate (Lithuanian)
Currently translated at 5.0% (1 of 20 strings)
Translation: OpenWrt/LuCI/applications/ltqtapi
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsltqtapi/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.5% (3 of 192 strings)
Translated using Weblate (Lithuanian)
Currently translated at 4.8% (3 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.2% (1 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.6% (3 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.5% (2 of 130 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/lt/
Translated using Weblate (Lithuanian)
Currently translated at 2.0% (1 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/lt/
Translated using Weblate (Lithuanian)
Currently translated at 71.0% (27 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.6% (3 of 183 strings)
Translated using Weblate (Lithuanian)
Currently translated at 0.8% (3 of 372 strings)
Translated using Weblate (Lithuanian)
Currently translated at 2.5% (3 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/lt/
Translated using Weblate (Lithuanian)
Currently translated at 9.0% (1 of 11 strings)
Translated using Weblate (Lithuanian)
Currently translated at 2.5% (5 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 1.1% (1 of 88 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/lt/
Translated using Weblate (Lithuanian)
Currently translated at 3.6% (3 of 82 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.5% (1 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/lt/
Translated using Weblate (Lithuanian)
Currently translated at 6.2% (3 of 48 strings)
Translated using Weblate (Lithuanian)
Currently translated at 5.3% (3 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/lt/
Translated using Weblate (Lithuanian)
Currently translated at 1.8% (40 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/lt/
Translated using Weblate (Lithuanian)
Currently translated at 6.6% (1 of 15 strings)
Translation: OpenWrt/LuCI/applications/snmpd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssnmpd/lt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (183 of 183 strings)
Translated using Weblate (German)
Currently translated at 100.0% (183 of 183 strings)
Translated using Weblate (German)
Currently translated at 99.6% (277 of 278 strings)
Translated using Weblate (Spanish)
Currently translated at 95.0% (174 of 183 strings)
Translated using Weblate (German)
Currently translated at 73.5% (147 of 200 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% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/de/
Translated using Weblate (German)
Currently translated at 100.0% (89 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/de/
Translated using Weblate (German)
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/de/
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 (Italian)
Currently translated at 21.3% (19 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/it/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (238 of 238 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pt/
Translated using Weblate (Romanian)
Currently translated at 98.9% (181 of 183 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (278 of 278 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (2206 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Italian)
Currently translated at 82.9% (1829 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (German)
Currently translated at 100.0% (2206 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (Russian)
Currently translated at 100.0% (183 of 183 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (278 of 278 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (2206 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Co-authored-by: Alexander Mnich <alex@mnich.dev>
Co-authored-by: Džiugas J <dziugas1959@hotmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: random r <epsilin@yopmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Co-authored-by: st7105 <st7105@gmail.com>
Signed-off-by: Alexander Mnich <alex@mnich.dev>
Signed-off-by: Džiugas J <dziugas1959@hotmail.com>
Signed-off-by: random r <epsilin@yopmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Signed-off-by: st7105 <st7105@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/de/
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/luciapplicationsfirewall/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/es/
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/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/lt/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/polipo
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2023-07-30 21:47:25 +03:00
Jo-Philipp Wich
00a941e618
luci-mod-status: gracefully handle missing port stats
...
Ref: cba58fcafb (commitcomment-123043170)
Fixes: 4e46624817
("luci-mod-status: introduce ethernet port status view")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2023-07-29 22:03:31 +02:00
Stan Grishin
cb1529587f
Merge pull request #6487 from stangri/master-luci-app-simple-adblock
...
luci-app-simple-adblock: bugfix: unsupported DNS options display
2023-07-29 08:09:49 -07:00
Stan Grishin
8001cc5f2f
luci-app-simple-adblock: bugfix: unsupported DNS options display
...
* bugfix: move the break tag in front of the unsupported DNS options to pretty up
the output
* use pkg.Name in RPCD calls
* slightly change the version display in WebUI to make it consistent with other
packages
Signed-off-by: Stan Grishin <stangri@melmac.ca>
2023-07-28 23:30:24 +00:00
Hannu Nyman
68a671d2da
luci-app-nft-qos: Remove redundant MAC address item.
...
Remove the redundant upload rate MAC address field.
Download was removed by 1166050
of PR #4351 , but upload was overlooked.
Reference to PR #6477 .
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2023-07-27 18:20:40 +03:00
Jo-Philipp Wich
6649969dc7
i18n: fully initialize lithuanian translation
...
In particular ensure that luci-base has an (empty for now) po file
available so that lithuanian becomes available for building.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2023-07-27 13:17:31 +02:00
Jo-Philipp Wich
257301151e
Merge pull request #5918 from jow-/port-status
...
luci-mod-status: introduce ethernet port status view
2023-07-27 13:09:15 +02:00
Jo-Philipp Wich
4e46624817
luci-mod-status: introduce ethernet port status view
...
This commit adds an ethernet port status overview to the main status page.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2023-07-27 13:07:26 +02:00
Jo-Philipp Wich
01d26bff87
luci-app-nlbwmon: drop luci-compat dependency
...
Since the transition to client side JS, no compatibilty libraries are
required anymore.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2023-07-27 12:21:45 +02:00
Jo-Philipp Wich
66ddb2f747
build: enable packaging of Lithuanian translations
...
Ref: https://github.com/openwrt/luci/issues/3183#issuecomment-1652824925
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2023-07-27 10:35:31 +02:00
Hosted Weblate
a01e82b103
Translated using Weblate (Lithuanian)
...
Currently translated at 100.0% (6 of 6 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/lt/
Translated using Weblate (Lithuanian)
Currently translated at 35.7% (5 of 14 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (16 of 16 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (20 of 20 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (5 of 5 strings)
Translated using Weblate (Lithuanian)
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/lt/
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/lt/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (67 of 67 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/lt/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (183 of 183 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (278 of 278 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2206 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Translated using Weblate (Romanian)
Currently translated at 98.3% (180 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (183 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (278 of 278 strings)
Translated using Weblate (Spanish)
Currently translated at 97.1% (270 of 278 strings)
Translated using Weblate (Romanian)
Currently translated at 99.3% (2192 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (2206 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Spanish)
Currently translated at 95.8% (2114 of 2206 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% (183 of 183 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (278 of 278 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (2206 of 2206 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Italian)
Currently translated at 24.7% (42 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (67 of 67 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2204 of 2204 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 1.4% (1 of 67 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (49 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (197 of 197 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2204 of 2204 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Romanian)
Currently translated at 99.4% (2192 of 2204 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Polish)
Currently translated at 100.0% (2204 of 2204 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Added translation using Weblate (Chinese (Simplified))
Co-authored-by: Džiugas J <dziugas1959@hotmail.com>
Co-authored-by: Eric <hamburger2048@users.noreply.hosted.weblate.org>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: random r <epsilin@yopmail.com>
Co-authored-by: zhanhb <zhanhb88@gmail.com>
Signed-off-by: Džiugas J <dziugas1959@hotmail.com>
Signed-off-by: Eric <hamburger2048@users.noreply.hosted.weblate.org>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: random r <epsilin@yopmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci_modules_luci-mod-dsl/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscoovachilli/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnatmap/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/lt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/lt/
Translation: OpenWrt/LuCI/applications/coovachilli
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/natmap
Translation: OpenWrt/LuCI/applications/ntpc
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dsl
2023-07-27 09:19:14 +03:00