Florian Eckert
6f470e0d76
luci-mod-network: remove uppercase for interface name in modal view
...
Unify the network name display as shown in the overview by removing the
uppercase conversion.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-10-27 10:46:54 +02:00
Jo-Philipp Wich
a98e2ea17d
luci-lua-runtime: render cbi header/footer templates via ucode runtime
...
Trigger rendering of CBI header and footer templates via the ucode runtime
`include()` in order to ensure that scope data is properly inherited from
Lua templates (`cbi/header`) including ucode templates (`header`).
This fixes automatic triggering of the config apply flow on legacy Lua CBI
forms.
Ref: https://github.com/openwrt/luci/pull/6056#issuecomment-1292396588
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-26 22:02:16 +02:00
Jo-Philipp Wich
aca4591753
Merge pull request #6055 from TDT-AG/pr/20221026-luci-mod-network
...
luci-mod-network: remove uppercase for interface name on overview page
2022-10-26 15:39:53 +02:00
Jo-Philipp Wich
81f204d38f
luci-lua-runtime: fix loading header/footer templates for SimpleForms
...
Fixes : #6054
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-26 15:30:11 +02:00
Jo-Philipp Wich
ca57291bdd
luci-lua-runtime: ensure proper forwarding of route arguments to cbi action
...
Ensure that the optional cbi() `config` argument is set to an empty table
if unspecified to ensure that the static call argument array is exactly
two elements long, otherwise call arguments are shifted and the invoked
method might not receive the expected parameter.
This fixes, among others, the dispatching of `arcombine()` targets.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-26 15:12:17 +02:00
Florian Eckert
5ffaf47842
luci-mod-network: remove uppercase for interface name on overview page
...
In the overview page, the name of the interface is converted to
uppercase. However, this is not the name in the configuration. From my
point of view, this makes no sense. The name displayed should correspond
exactly to the name in the configuration.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-10-26 12:10:31 +02:00
Jo-Philipp Wich
70e32f0cb1
luci-base: dispatcher.uc: ensure usage of dashes in language tags
...
The LuCI uci configuration requires language tags with underscores due
limitations of uci option names but the language catalogs themselves
are designated with dash separated language tags.
Make sure to substitute underscores with dashes when determining the
desired request language in order to fix loading of languages such as
`pt-br` or `zh-cn`.
Ref: https://github.com/openwrt/luci/pull/5976#issuecomment-1290352951
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 13:01:31 +02:00
Jo-Philipp Wich
adc4ca65bc
luci-base: dispatcher.uc: reintroduce support for 'absent' fs depends
...
The ability to require certain paths to be absent for a menu entry to show
up was lost during the ucode conversion.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 12:50:37 +02:00
Jo-Philipp Wich
94dd7fdf60
luci-lua-runtime: drop Lua server gateway modules
...
Remove the uhttpd and CGI gateway modules as they're not compatible with
the Lua compat stub runtime anymore.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
21dacf2db7
luci-base: sys.uc: reliably skip TIME_WAIT connections in conntrack list
...
The TIME_WAIT indicator might not appear at the beginning of the tuple
string in some cases, so match it anywhere.
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
[add commit message]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
791a71d225
luci-base: sys.uc: fix parsing conntrack list
...
Ensure that the extracted tuple string starts with a space to fully match
all contained key-value pairs.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
60a9f01978
luci-base: sys.uc: increase init script START/STOP search space
...
Some init scripts, such as the sysfsutils one, declare their START or
STOP variables very late in the file. Duplicate the search buffer to
2048 byte in order to catch these cases.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
7e30a5e11e
luci-base: don't fail getInitList if no indexes can be determined
...
Gracefully handle missing indexes in the luci rpcd plugin getInitList
procedure.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
d9dcefd2aa
luci-base: dispatcher.uc: support cbi
and form
action types
...
Some existing LuCI apps ship menu.d JSON files with `cbi` and `form` typed
dispatch targets, support those as well.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
18ee34def2
luci-lua-runtime: preload luci.sys
...
Some existing model code expects the luci.sys namespace to be implicitly
available, even without requiring it beforehand.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
6b1be72a1e
luci-base: rebase translations
...
Re-scan base translations after ucode conversion and update po files.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
f478fe6c43
luci-mod-system: drop unused Lua code
...
Drop an unused, leftover Lua cbi model from the system module.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
97da0baeb6
luci-mod-status: transform status page Lua template into ucode template
...
Transform the only Lua template of the status module into an equivalent
ucode template and make it conditionally include the legacy Lua logic
factored out in a previous commit.
Only if the ucode Lua bridge is installed and loadable, the Lua template
loading the legacy Lua status partials is included.
After this commit, luci-mod-status is free of Lua dependencies.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
c7b300e614
luci-lua-runtime: add compatibility template for legacy Lua status includes
...
Add a compatibility template containing legacy Lua logic extracted from
the luci-mod-status main status page in order to free the status module
from any explicit or implicit Lua dependencies.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
daf7ceebba
luci-mod-status: remove uneeded libiwinfo-lua dependency
...
Since the LuCI status module was rewritten into client side views,
there is no server side Lua processing anymore.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
b1ab4e5ba9
luci-mod-network: remove uneeded libiwinfo-lua dependency
...
Since the LuCI network admin module was rewritten into client side views,
there is no server side Lua processing anymore. The iwinfo routines are
utilized through the corresponding rpcd plugin.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
b15d768c9a
luci.mk: automatically depend on luci-lua-runtime
...
Make packages having a non-empty luasrc/ directory automatically depend
on the LuCI Lua runtime package.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
673f38246a
treewide: separate Lua runtime resources
...
Move classes required for Lua runtime support into a new `luci-lua-runtime`
package. Also replace the `luci.http` and `luci.util` classes in
`luci-lib-base` with stubbed versions interacting with the ucode based
runtime environment.
Finally merge `luci-base-ucode` into the remainders of `luci-base`.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Jo-Philipp Wich
ded8ccf93e
luci-base-ucode: add initial ucode based LuCI runtime
...
This commits introduces an initial ucode based LuCI runtime. It supports
JSON menu files as used by Lua based LuCI and the template, call, view and
alias dispatch targets.
It is able to render a basic LuCI installation without errors. An embedded
Lua VM is lazily loaded when Lua based resources are encountered, such as
`*.htm` templates or server side Lua call targets.
When a template is requested, the ucode runtime first tries to render an
`/usr/share/ucode/luci/template/${path}.uc` ucode template and falls back
to rendering the corresponding `/usr/lib/lua/luci/view/${path}.htm` Lua
template in case no suitable ucode replacement is found. This allows for
gradual migration of existing Lua based tmeplates to ucode.
Furthermore, a set of stripped down LuCI libraries is shipped in the
`/usr/lib/lua/luci/ucodebridge/` directory. Those libraries provide
compatibility shims for the current Lua API towards Lua templates and Lua
based server side actions while utilizing the ucode request runtime state
internally.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-25 01:03:37 +02:00
Hannu Nyman
10d762eab7
timezone data: update to 2022e
...
Update timezone data to 2022e.
* http://mm.icann.org/pipermail/tz-announce/2022-September/000073.html
* http://mm.icann.org/pipermail/tz-announce/2022-October/000074.html
- Palestine transitions are now Saturdays at 02:00.
- Simplify three Ukraine zones into one.
- Jordan and Syria switch from +02/+03 with DST to year-round +03.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-10-24 19:00:38 +03:00
Hosted Weblate
c3377df93a
Translated using Weblate (Danish)
...
Currently translated at 100.0% (2079 of 2079 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 17.9% (35 of 195 strings)
Translated using Weblate (German)
Currently translated at 42.7% (47 of 110 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/de/
Translated using Weblate (German)
Currently translated at 96.2% (203 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (German)
Currently translated at 100.0% (50 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/de/
Translated using Weblate (French)
Currently translated at 88.7% (79 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/fr/
Translated using Weblate (German)
Currently translated at 51.6% (16 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/de/
Translated using Weblate (German)
Currently translated at 40.1% (47 of 117 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/de/
Translated using Weblate (German)
Currently translated at 86.3% (165 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/de/
Translated using Weblate (German)
Currently translated at 100.0% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/de/
Translated using Weblate (French)
Currently translated at 98.8% (175 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fr/
Translated using Weblate (Greek)
Currently translated at 14.1% (25 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/el/
Translated using Weblate (French)
Currently translated at 80.5% (29 of 36 strings)
Translated using Weblate (German)
Currently translated at 83.3% (30 of 36 strings)
Translated using Weblate (German)
Currently translated at 100.0% (15 of 15 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/de/
Translated using Weblate (German)
Currently translated at 95.7% (202 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (Arabic)
Currently translated at 4.4% (4 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ar/
Translated using Weblate (Arabic)
Currently translated at 8.9% (15 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 7.6% (5 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ar/
Translated using Weblate (Arabic)
Currently translated at 24.4% (12 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ar/
Translated using Weblate (Arabic)
Currently translated at 3.0% (2 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ar/
Translated using Weblate (Arabic)
Currently translated at 20.2% (19 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ar/
Translated using Weblate (Arabic)
Currently translated at 25.0% (13 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ar/
Translated using Weblate (Arabic)
Currently translated at 22.5% (7 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/ar/
Translated using Weblate (Arabic)
Currently translated at 73.3% (1525 of 2079 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ar/
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% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/de/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (177 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt/
Translated using Weblate (German)
Currently translated at 100.0% (177 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/de/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (196 of 196 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% (2079 of 2079 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% (2079 of 2079 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Spanish)
Currently translated at 100.0% (177 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/es/
Translated using Weblate (Polish)
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2079 of 2079 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Russian)
Currently translated at 100.0% (2079 of 2079 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Polish)
Currently translated at 99.9% (2077 of 2079 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Spanish)
Currently translated at 96.2% (2001 of 2079 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hans/
Co-authored-by: Abdullah AlShaikh <abdullah@alshai5.com>
Co-authored-by: Amaury <y0da@live.fr>
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: Eric <hamburger1024@mailbox.org>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Glax <gfreak70@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: TakissX <pxatzidakis@gmail.com>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: Zeik0s <zeik0s@zeik0s.at>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Abdullah AlShaikh <abdullah@alshai5.com>
Signed-off-by: Amaury <y0da@live.fr>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: Eric <hamburger1024@mailbox.org>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Glax <gfreak70@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: TakissX <pxatzidakis@gmail.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: Zeik0s <zeik0s@zeik0s.at>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/fr/
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/watchcat
2022-10-23 20:29:43 +03:00
Jo-Philipp Wich
b5f11bf6ee
luci-mod-status: fix determining DSL modem type
...
The `network.getDSLModemType()` function returns a promise, so handle it
accordingly.
Fixes: 45ab2cd6be
("luci-mod-status: use network.getDSLModemType()")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-22 15:46:47 +02:00
Andre Heider
a398ccfde6
luci-base: remove 'dsl' feature flag
...
This is now unused.
Signed-off-by: Andre Heider <a.heider@gmail.com>
2022-10-21 09:08:13 +02:00
Andre Heider
45ab2cd6be
luci-mod-status: use network.getDSLModemType()
...
This matches what luci-mod-network does for the DSL modem configuration.
Since this is based on a common uci config, it may also prevent issues as
fixed with 111c551c
"luci-base: fix DSL feature detection" in the future.
Signed-off-by: Andre Heider <a.heider@gmail.com>
2022-10-21 09:08:13 +02:00
Jo-Philipp Wich
e019fc5d60
luci-base: rebase translations
...
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-20 23:58:06 +02:00
Paul Dee
45f02d94b2
luci-app-dhcp: 'addresses' helptext improvement with info from manpage.
...
Placeholder hint also reflects syntax.
Signed-off-by: Paul Dee <itsascambutmailmeanyway@gmail.com>
[replace asdf.com with example.com, use … instead of ..., remove uneeded
entities]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-20 23:54:40 +02:00
Paul Dee
3240714ed3
luci-mod-network: 'mxhosts' tab added
...
DHCP Help does not document mxhost, but they are available in dnsmasq.
This effectively implements MX records within DNS.
Tested on 22.03.2
Signed-off-by: Paul Dee <itsascambutmailmeanyway@gmail.com>
[fix _() calls, fix commit subject, rebase onto current master]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-20 23:47:12 +02:00
Paul Dee
08a089740a
luci-mod-network: 'srvhosts' tab added
...
DHCP Help does not document srv-host, but they are available in dnsmasq.
This effectively implements SRV records within DNS.
Tested on 22.03.2
Signed-off-by: Paul Dee <itsascambutmailmeanyway@gmail.com>
[fix _() calls, join translation strings on the same line, replace …
with …, fix commit subject]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-20 23:36:56 +02:00
Hosted Weblate
b6c6de8243
Translated using Weblate (Russian)
...
Currently translated at 61.5% (72 of 117 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ru/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (177 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt_BR/
Translated using Weblate (Russian)
Currently translated at 58.3% (21 of 36 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (2060 of 2060 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (177 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hans/
Translated using Weblate (Danish)
Currently translated at 100.0% (177 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (2060 of 2060 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (117 of 117 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/da/
Translated using Weblate (Turkish)
Currently translated at 100.0% (89 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/tr/
Translated using Weblate (Polish)
Currently translated at 100.0% (177 of 177 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pl/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (117 of 117 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))
Currently translated at 99.8% (2057 of 2060 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (15 of 15 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/zh_Hans/
Translated using Weblate (Romanian)
Currently translated at 97.7% (87 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (89 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/pt_BR/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (117 of 117 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hans/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (117 of 117 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/pt_BR/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2060 of 2060 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 100.0% (2060 of 2060 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Eric <hamburger1024@mailbox.org>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hulen <shift0106@gmail.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Oğuz Ersen <oguz@ersen.moe>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: sergio <sergio+it@outerface.net>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Eric <hamburger1024@mailbox.org>
Signed-off-by: Hulen <shift0106@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Oğuz Ersen <oguz@ersen.moe>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: sergio <sergio+it@outerface.net>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/ru/
Translation: OpenWrt/LuCI/applications/watchcat
2022-10-19 12:29:57 +02:00
Hosted Weblate
a246839e0b
Translated using Weblate (Polish)
...
Currently translated at 100.0% (89 of 89 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (117 of 117 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (2060 of 2060 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (116 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (49 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hant/
Translated using Weblate (Swedish)
Currently translated at 36.1% (69 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/sv/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/zh_Hant/
Translated using Weblate (Swedish)
Currently translated at 27.6% (54 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/sv/
Translated using Weblate (Swedish)
Currently translated at 78.8% (142 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/sv/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (186 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (191 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (61 of 61 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 99.8% (2056 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Swedish)
Currently translated at 37.5% (774 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Danish)
Currently translated at 100.0% (2059 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Dutch)
Currently translated at 1.8% (4 of 212 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (110 of 110 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% (211 of 211 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% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/pt_BR/
Translated using Weblate (Polish)
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (65 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/pl/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (195 of 195 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% (180 of 180 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% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (2059 of 2059 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% (2059 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Romanian)
Currently translated at 100.0% (2059 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hulen <shift0106@gmail.com>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Raymond Minneboo <raymond@minneboo.net>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Hulen <shift0106@gmail.com>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/nl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/zh_Hant/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/uhttpd
2022-10-17 21:24:40 +02:00
Viktor Tsvetkov
3e9d9a9dbb
sysauth: add autocomplete and id attributes to login inputs
...
this let browser automatically fill according to HTML spec for input elements.
luci-theme-bootstrap and luci-base are affected.
Signed-off-by: Viktor Tsvetkov <zwetvik@gmail.com>
[indentation fix]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-15 14:31:47 +02:00
Jo-Philipp Wich
1586ac49f8
treewide: resync translations
...
Fixes : #6020
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-10-15 14:24:00 +02:00
Hosted Weblate
81842dcd14
Translated using Weblate (German)
...
Currently translated at 42.5% (46 of 108 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/de/
Translated using Weblate (Italian)
Currently translated at 28.7% (19 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/it/
Translated using Weblate (Italian)
Currently translated at 11.9% (10 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/it/
Translated using Weblate (Italian)
Currently translated at 21.1% (11 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 18.8% (35 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 33.8% (21 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/it/
Translated using Weblate (Italian)
Currently translated at 13.0% (16 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/it/
Translated using Weblate (Italian)
Currently translated at 16.6% (10 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/it/
Translated using Weblate (Italian)
Currently translated at 22.3% (38 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% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/ltqtapi
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsltqtapi/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 65.4% (110 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/it/
Translated using Weblate (Italian)
Currently translated at 99.4% (195 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/it/
Translated using Weblate (Italian)
Currently translated at 22.5% (23 of 102 strings)
Translated using Weblate (Italian)
Currently translated at 22.9% (17 of 74 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Italian)
Currently translated at 12.8% (44 of 343 strings)
Translated using Weblate (Italian)
Currently translated at 47.0% (968 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Steffen Möller <steffen_moeller@gmx.de>
Co-authored-by: garis <garis94@gmail.com>
Signed-off-by: Steffen Möller <steffen_moeller@gmx.de>
Signed-off-by: garis <garis94@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/it/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
2022-10-11 18:34:57 +03:00
Hosted Weblate
6ba9d0c618
Translated using Weblate (German)
...
Currently translated at 100.0% (48 of 48 strings)
Translated using Weblate (German)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/de/
Translated using Weblate (Russian)
Currently translated at 63.9% (71 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ru/
Translated using Weblate (German)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/de/
Translated using Weblate (German)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/de/
Translated using Weblate (German)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/de/
Translated using Weblate (German)
Currently translated at 97.7% (43 of 44 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (2059 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Portuguese)
Currently translated at 89.9% (1852 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Romanian)
Currently translated at 100.0% (191 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (36 of 36 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (2059 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Swedish)
Currently translated at 33.8% (63 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/sv/
Translated using Weblate (Spanish)
Currently translated at 96.3% (1984 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Swedish)
Currently translated at 30.1% (56 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/sv/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2059 of 2059 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 100.0% (2059 of 2059 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% (2059 of 2059 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: Eric <hamburger1024@mailbox.org>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
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: ssantos <ssantos@web.de>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: Eric <hamburger1024@mailbox.org>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.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: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/de/
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-10-09 19:47:52 +03:00
Florian Eckert
e156d8f6a2
Merge pull request #5996 from janh/filterwin2k-description
...
luci-mod-network: improve description for filterwin2k option
2022-10-04 07:40:25 +02:00
Hosted Weblate
c52115d197
Translated using Weblate (Greek)
...
Currently translated at 4.7% (10 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/el/
Translated using Weblate (Greek)
Currently translated at 20.0% (5 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/el/
Translated using Weblate (Greek)
Currently translated at 10.6% (10 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/el/
Translated using Weblate (Greek)
Currently translated at 16.1% (10 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/el/
Translated using Weblate (Greek)
Currently translated at 12.5% (3 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/el/
Translated using Weblate (Greek)
Currently translated at 10.0% (2 of 20 strings)
Translation: OpenWrt/LuCI/applications/ltqtapi
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsltqtapi/el/
Translated using Weblate (Greek)
Currently translated at 12.2% (6 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/el/
Translated using Weblate (Greek)
Currently translated at 3.0% (6 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/el/
Translated using Weblate (Greek)
Currently translated at 10.5% (19 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/el/
Translated using Weblate (Greek)
Currently translated at 12.2% (24 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/el/
Translated using Weblate (Greek)
Currently translated at 2.2% (1 of 44 strings)
Translated using Weblate (Greek)
Currently translated at 14.2% (7 of 49 strings)
Translated using Weblate (Greek)
Currently translated at 16.5% (35 of 212 strings)
Translated using Weblate (Greek)
Currently translated at 19.8% (68 of 343 strings)
Translated using Weblate (Greek)
Currently translated at 13.5% (5 of 37 strings)
Translated using Weblate (Greek)
Currently translated at 30.8% (632 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/el/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: TakissX <pxatzidakis@gmail.com>
Signed-off-by: TakissX <pxatzidakis@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/el/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/upnp
2022-10-03 10:35:08 +02:00
Jan Hoffmann
befaf15596
luci-base: sync translations
...
Signed-off-by: Jan Hoffmann <jan@3e8.eu>
2022-09-30 19:52:19 +02:00
Jan Hoffmann
ec4f219b2b
luci-mod-network: improve description for filterwin2k option
...
Make it clear that this option also filters some not-so-useless queries.
Signed-off-by: Jan Hoffmann <jan@3e8.eu>
2022-09-30 19:49:43 +02:00
Jo-Philipp Wich
0c5d7dd8d7
Merge pull request #5983 from librick/feature_sk_ecc
...
luci-mod-system: allow ecdsa-sk and ed25519-sk key types
2022-09-30 10:08:10 +02:00
Hosted Weblate
25f75e08f1
Translated using Weblate (Greek)
...
Currently translated at 19.2% (66 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 99.1% (2029 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Serbian)
Currently translated at 78.7% (270 of 343 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (84 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (191 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (36 of 36 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (2046 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Co-authored-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Leon Baždar <leon.bazdar@fer.hr>
Co-authored-by: TakissX <pxatzidakis@gmail.com>
Co-authored-by: semih <semiht@gmail.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: semih <semiht@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/sr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/tr/
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/watchcat
2022-09-29 18:22:30 +03:00
Hosted Weblate
bb1400a744
Translated using Weblate (Dutch)
...
Currently translated at 1.1% (2 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/nl/
Translated using Weblate (Dutch)
Currently translated at 57.1% (16 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/nl/
Translated using Weblate (Dutch)
Currently translated at 12.8% (44 of 343 strings)
Translated using Weblate (Dutch)
Currently translated at 45.9% (17 of 37 strings)
Translated using Weblate (Dutch)
Currently translated at 8.3% (171 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/nl/
Translated using Weblate (Russian)
Currently translated at 100.0% (82 of 82 strings)
Co-authored-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Raymond Minneboo <raymond@minneboo.net>
Signed-off-by: Raymond Minneboo <raymond@minneboo.net>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/nl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/nl/
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
2022-09-22 18:44:18 +03:00
Eric McDonald
2b3c852aa3
luci-mod-system: allow ecdsa-sk and ed25519-sk key types
...
Allow adding ecdsa-sk and ed25519-sk SSH keys in LuCI
These key types can be generated via the -t flag in ssh-keygen and are
supported in recent versions of dropbear. As ssh-keygen ignores the -b
flag when generating ecdsa-sk and ed25519-sk keys, the curve field in
the objects returned by the decode function is set to fixed strings for
both ecdsa-sk and ed25519-sk public key strings. This is in contrast to
ecdsa keys for which various curves can be provided (e.g., NIST P-256,
NIST P-384, and NIST P-521).
Signed-off-by: Eric McDonald <ericmcdonald@protonmail.com>
2022-09-21 17:25:37 -04:00
Jo-Philipp Wich
944b55738e
luci-mod-system: sshkeys.js: prevent XSS through pubkey comments
...
Ensure to not display public key comments verbatim in order to prevent
injection of markup.
Reported-by: Eric McDonald <ericmcdonald@protonmail.com>
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-09-21 14:47:41 +02:00
Hosted Weblate
c22f1c3f2a
Translated using Weblate (Czech)
...
Currently translated at 60.9% (209 of 343 strings)
Translated using Weblate (Slovak)
Currently translated at 56.2% (9 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/sk/
Translated using Weblate (Slovak)
Currently translated at 1.4% (3 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/sk/
Translated using Weblate (Slovak)
Currently translated at 34.0% (17 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/sk/
Translated using Weblate (Slovak)
Currently translated at 0.0% (0 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/sk/
Translated using Weblate (Slovak)
Currently translated at 3.5% (3 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/sk/
Translated using Weblate (Slovak)
Currently translated at 9.0% (4 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/sk/
Translated using Weblate (Slovak)
Currently translated at 15.1% (5 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/sk/
Translated using Weblate (Slovak)
Currently translated at 12.7% (12 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/sk/
Translated using Weblate (Slovak)
Currently translated at 3.6% (4 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/sk/
Translated using Weblate (Slovak)
Currently translated at 16.6% (3 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/sk/
Translated using Weblate (Slovak)
Currently translated at 13.4% (7 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/sk/
Translated using Weblate (Slovak)
Currently translated at 8.8% (3 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/sk/
Translated using Weblate (Slovak)
Currently translated at 13.7% (4 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/sk/
Translated using Weblate (Slovak)
Currently translated at 3.7% (7 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/sk/
Translated using Weblate (Slovak)
Currently translated at 17.6% (3 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/sk/
Translated using Weblate (Slovak)
Currently translated at 8.3% (16 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/sk/
Translated using Weblate (Slovak)
Currently translated at 6.3% (7 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/sk/
Translated using Weblate (Slovak)
Currently translated at 23.0% (3 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/sk/
Translated using Weblate (Slovak)
Currently translated at 12.5% (10 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/sk/
Translated using Weblate (Slovak)
Currently translated at 4.0% (5 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/sk/
Translated using Weblate (Slovak)
Currently translated at 14.5% (9 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/sk/
Translated using Weblate (Slovak)
Currently translated at 9.4% (16 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/sk/
Translated using Weblate (Slovak)
Currently translated at 10.4% (5 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/sk/
Translated using Weblate (Slovak)
Currently translated at 19.3% (6 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/sk/
Translated using Weblate (Slovak)
Currently translated at 1.7% (1 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/sk/
Translated using Weblate (Slovak)
Currently translated at 20.4% (40 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/sk/
Translated using Weblate (Slovak)
Currently translated at 23.0% (6 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/sk/
Translated using Weblate (Slovak)
Currently translated at 25.0% (3 of 12 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/sk/
Translated using Weblate (Slovak)
Currently translated at 4.1% (8 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/sk/
Translated using Weblate (Slovak)
Currently translated at 22.0% (37 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/sk/
Translated using Weblate (Slovak)
Currently translated at 24.4% (44 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/sk/
Translated using Weblate (Slovak)
Currently translated at 9.7% (11 of 113 strings)
Translated using Weblate (Slovak)
Currently translated at 5.2% (7 of 133 strings)
Translated using Weblate (Slovak)
Currently translated at 6.8% (7 of 102 strings)
Translated using Weblate (Slovak)
Currently translated at 47.8% (22 of 46 strings)
Translated using Weblate (Slovak)
Currently translated at 11.2% (22 of 195 strings)
Translated using Weblate (Slovak)
Currently translated at 10.4% (20 of 191 strings)
Translated using Weblate (Slovak)
Currently translated at 4.0% (3 of 74 strings)
Translated using Weblate (Slovak)
Currently translated at 62.2% (132 of 212 strings)
Translated using Weblate (Slovak)
Currently translated at 6.2% (1 of 16 strings)
Translated using Weblate (Slovak)
Currently translated at 65.8% (226 of 343 strings)
Translated using Weblate (Slovak)
Currently translated at 7.3% (6 of 82 strings)
Translated using Weblate (Slovak)
Currently translated at 6.8% (4 of 58 strings)
Translated using Weblate (Slovak)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Slovak)
Currently translated at 36.8% (753 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sk/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jose Riha <jose1711@gmail.com>
Signed-off-by: Jose Riha <jose1711@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat/sk/
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/polipo
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/vnstat
2022-09-20 00:26:54 +02:00
Jo-Philipp Wich
4f17b55ab4
Merge pull request #5977 from danielkucera/patch-1
...
proper cache control in firefox
2022-09-19 09:02:02 +02:00
Jo-Philipp Wich
d8078cae25
Merge pull request #5979 from ldir-EDB0/nftables
...
luci-mod-status: nftables.js: correct icmp display
2022-09-19 09:01:26 +02:00
Kevin Darbyshire-Bryant
6a03a88430
luci-mod-status: nftables.js: correct icmp display
...
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
2022-09-18 09:11:14 +01:00
Hosted Weblate
a9562dee61
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/zh_Hans/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (48 of 48 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/pt_BR/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/pt/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 94.4% (102 of 108 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/pt_BR/
Co-authored-by: Eric <hamburger1024@mailbox.org>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: Eric <hamburger1024@mailbox.org>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt/
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-09-17 13:23:15 +02:00
Daniel Kucera
34dd31ae9a
proper cache control in firefox
...
Added more meta headers to ensure proper cache control in Firefox.
Before this patch, the `/` url hasn't even been requested when opened in Firefox.
Signed-off-by: Daniel Kucera <daniel.kucera@gmail.com>
2022-09-17 07:18:52 +02:00
Hosted Weblate
5fcf2375ca
Translated using Weblate (Greek)
...
Currently translated at 9.5% (9 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/el/
Translated using Weblate (Greek)
Currently translated at 18.0% (62 of 343 strings)
Translated using Weblate (Spanish)
Currently translated at 96.4% (1974 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Danish)
Currently translated at 100.0% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (36 of 36 strings)
Translated using Weblate (Ukrainian)
Currently translated at 23.0% (45 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 85.5% (154 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Swedish)
Currently translated at 55.7% (34 of 61 strings)
Translated using Weblate (Swedish)
Currently translated at 15.9% (18 of 113 strings)
Translated using Weblate (Swedish)
Currently translated at 37.8% (774 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Russian)
Currently translated at 100.0% (2046 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Co-authored-by: Darin Avdeyeva <yulyablack@inbox.lv>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Co-authored-by: TakissX <pxatzidakis@gmail.com>
Co-authored-by: Vladimir Kopitsa <v.kopitsa@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: Darin Avdeyeva <yulyablack@inbox.lv>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: TakissX <pxatzidakis@gmail.com>
Signed-off-by: Vladimir Kopitsa <v.kopitsa@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/da/
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/watchcat
2022-09-14 20:17:24 +03:00
Hosted Weblate
1d1361bc63
Translated using Weblate (Danish)
...
Currently translated at 100.0% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (36 of 36 strings)
Translated using Weblate (Ukrainian)
Currently translated at 23.0% (45 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 85.5% (154 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Swedish)
Currently translated at 55.7% (34 of 61 strings)
Translated using Weblate (Swedish)
Currently translated at 15.9% (18 of 113 strings)
Translated using Weblate (Swedish)
Currently translated at 37.8% (774 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Russian)
Currently translated at 100.0% (2046 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Co-authored-by: Darin Avdeyeva <yulyablack@inbox.lv>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Co-authored-by: Vladimir Kopitsa <v.kopitsa@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: Darin Avdeyeva <yulyablack@inbox.lv>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: Vladimir Kopitsa <v.kopitsa@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/da/
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/watchcat
2022-09-11 19:34:49 +03:00
Hosted Weblate
ce2a47c5f3
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (36 of 36 strings)
Translated using Weblate (German)
Currently translated at 63.4% (118 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/de/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (191 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (110 of 110 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% (36 of 36 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (2046 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Danish)
Currently translated at 100.0% (2046 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (36 of 36 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (2046 of 2046 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% (191 of 191 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 86.1% (31 of 36 strings)
Translated using Weblate (Japanese)
Currently translated at 71.0% (150 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ja/
Translated using Weblate (Japanese)
Currently translated at 20.4% (9 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ja/
Translated using Weblate (Japanese)
Currently translated at 28.7% (27 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ja/
Translated using Weblate (Japanese)
Currently translated at 48.2% (14 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/ja/
Translated using Weblate (Spanish)
Currently translated at 100.0% (116 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/es/
Translated using Weblate (Japanese)
Currently translated at 100.0% (24 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ja/
Translated using Weblate (Spanish)
Currently translated at 100.0% (170 of 170 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% (125 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/es/
Translated using Weblate (Japanese)
Currently translated at 32.9% (63 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ja/
Translated using Weblate (Japanese)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ja/
Translated using Weblate (Spanish)
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Japanese)
Currently translated at 62.4% (83 of 133 strings)
Translated using Weblate (Japanese)
Currently translated at 28.2% (54 of 191 strings)
Translated using Weblate (Japanese)
Currently translated at 80.4% (1646 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ja/
Translated using Weblate (Spanish)
Currently translated at 96.4% (1974 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hulen <shift0106@gmail.com>
Co-authored-by: Malkovich78 <gonibanez@hotmail.com>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: ssantos <ssantos@web.de>
Co-authored-by: yamaken <k-yamada@yamaken.jp>
Signed-off-by: Hulen <shift0106@gmail.com>
Signed-off-by: Malkovich78 <gonibanez@hotmail.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: ssantos <ssantos@web.de>
Signed-off-by: yamaken <k-yamada@yamaken.jp>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ja/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ja/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hant/
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/watchcat
2022-09-07 17:49:15 +03:00
Hannu Nyman
10bcb228a7
timezone data: update to 2022c
...
Update timezone data to 2022c.
http://mm.icann.org/pipermail/tz-announce/2022-August/000071.html
http://mm.icann.org/pipermail/tz-announce/2022-August/000072.html
* Iran no longer observes DST after 2022.
* Rename Europe/Kiev to Europe/Kyiv.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-09-03 00:29:20 +03:00
Hosted Weblate
62dfdb666b
Translated using Weblate (German)
...
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/de/
Translated using Weblate (Russian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ru/
Translated using Weblate (Greek)
Currently translated at 17.7% (61 of 343 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (2046 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Greek)
Currently translated at 14.5% (50 of 343 strings)
Translated using Weblate (German)
Currently translated at 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/de/
Translated using Weblate (German)
Currently translated at 100.0% (52 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/de/
Translated using Weblate (German)
Currently translated at 99.0% (109 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/de/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pt/
Translated using Weblate (Portuguese)
Currently translated at 99.0% (109 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/pt/
Translated using Weblate (German)
Currently translated at 100.0% (133 of 133 strings)
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 (German)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/de/
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: Hannu Nyman <hannu.nyman@iki.fi>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: TakissX <pxatzidakis@gmail.com>
Co-authored-by: Vlad <Vlad.Slepov@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Signed-off-by: Vlad <Vlad.Slepov@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/el/
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/statistics
2022-09-02 19:27:33 +03:00
Hannu Nyman
2c3c7f5c50
luci-mod-network: Offer ft-over-air by default for 802.11r
...
OpenWrt commit 2984a0420 changed the default 802.11r Fast Transition
method to be ft-over-air instead of ft-over-ds.
Offer ft-over-air as the first item in the drop-down list, so that
it gets selected by default when 802.11r option is enabled.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-09-01 18:08:56 +03:00
Jo-Philipp Wich
46181e5ace
Merge pull request #5570 from systemcrash/rsn_preauth
...
luci-mod-network: Expose RSN Preauth WPA2-EAP setting.
2022-08-30 20:53:42 +02:00
Jo-Philipp Wich
2adba1b8d0
Merge pull request #5589 from systemcrash/multi_to_unicast
...
luci-mod-network: Expose multicast_to_unicast setting
2022-08-30 20:53:26 +02:00
Hosted Weblate
36460dfd53
Translated using Weblate (Swedish)
...
Currently translated at 70.5% (12 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/sv/
Translated using Weblate (Polish)
Currently translated at 100.0% (191 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/pl/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (191 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (110 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (36 of 36 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (36 of 36 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2046 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (2046 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Swedish)
Currently translated at 12.1% (4 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/sv/
Translated using Weblate (Swedish)
Currently translated at 16.1% (5 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/sv/
Translated using Weblate (Swedish)
Currently translated at 25.5% (24 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/sv/
Translated using Weblate (Swedish)
Currently translated at 35.2% (6 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/sv/
Translated using Weblate (Swedish)
Currently translated at 36.1% (69 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/sv/
Translated using Weblate (Swedish)
Currently translated at 13.3% (8 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/sv/
Translated using Weblate (Swedish)
Currently translated at 48.9% (96 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/sv/
Translated using Weblate (Spanish)
Currently translated at 97.9% (187 of 191 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/es/
Translated using Weblate (Spanish)
Currently translated at 99.0% (109 of 110 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/es/
Translated using Weblate (Swedish)
Currently translated at 60.8% (14 of 23 strings)
Translated using Weblate (Swedish)
Currently translated at 69.4% (25 of 36 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Spanish)
Currently translated at 96.4% (1974 of 2046 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: MkQtS <onewordwrong@aliyun.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hans/
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/watchcat
2022-08-29 23:17:08 +03:00
Hannu Nyman
6052790b4f
treewide: sync translations - i18n
...
Sync translations.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-08-28 18:55:48 +03:00
Hosted Weblate
c331de5630
Translated using Weblate (Ukrainian)
...
Currently translated at 39.3% (13 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 19.3% (6 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/uk/
Translated using Weblate (Ukrainian)
Currently translated at 42.3% (22 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/uk/
Translated using Weblate (Ukrainian)
Currently translated at 18.7% (15 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/uk/
Translated using Weblate (Ukrainian)
Currently translated at 40.5% (47 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/uk/
Translated using Weblate (Ukrainian)
Currently translated at 8.8% (11 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 29.0% (18 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/uk/
Translated using Weblate (Ukrainian)
Currently translated at 14.6% (18 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/uk/
Translated using Weblate (Ukrainian)
Currently translated at 19.4% (33 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/uk/
Translated using Weblate (Ukrainian)
Currently translated at 18.7% (9 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/uk/
Translated using Weblate (Ukrainian)
Currently translated at 25.8% (8 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/uk/
Translated using Weblate (Ukrainian)
Currently translated at 7.1% (4 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/uk/
Translated using Weblate (Ukrainian)
Currently translated at 22.4% (11 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/uk/
Translated using Weblate (Ukrainian)
Currently translated at 18.4% (31 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 28.5% (56 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 26.0% (6 of 23 strings)
Translated using Weblate (Ukrainian)
Currently translated at 17.6% (20 of 113 strings)
Translated using Weblate (Ukrainian)
Currently translated at 16.9% (33 of 195 strings)
Translated using Weblate (Ukrainian)
Currently translated at 14.8% (11 of 74 strings)
Translated using Weblate (Ukrainian)
Currently translated at 24.3% (20 of 82 strings)
Translated using Weblate (Persian)
Currently translated at 16.2% (6 of 37 strings)
Translated using Weblate (Persian)
Currently translated at 4.8% (4 of 82 strings)
Translated using Weblate (Persian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/fa/
Translated using Weblate (Persian)
Currently translated at 8.4% (18 of 212 strings)
Translated using Weblate (Persian)
Currently translated at 89.7% (44 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/fa/
Translated using Weblate (Spanish)
Currently translated at 96.4% (1957 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Danish)
Currently translated at 25.5% (24 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/da/
Translated using Weblate (Danish)
Currently translated at 16.9% (11 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/da/
Translated using Weblate (Danish)
Currently translated at 9.1% (17 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/da/
Translated using Weblate (Polish)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pl/
Translated using Weblate (Greek)
Currently translated at 13.9% (48 of 343 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pl/
Translated using Weblate (Ukrainian)
Currently translated at 94.0% (1908 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Co-authored-by: Artem <artem@molotov.work>
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: TakissX <pxatzidakis@gmail.com>
Co-authored-by: Vlad <vladhmail@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: reza <rezad1393@protonmail.ch>
Signed-off-by: Artem <artem@molotov.work>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Vlad <vladhmail@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: reza <rezad1393@protonmail.ch>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/fa/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/fa/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/fa/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/uk/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
2022-08-28 18:41:24 +03:00
Hosted Weblate
083daefcc3
Translated using Weblate (Polish)
...
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pl/
Translated using Weblate (Greek)
Currently translated at 13.9% (48 of 343 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pl/
Translated using Weblate (Ukrainian)
Currently translated at 94.0% (1908 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Co-authored-by: Artem <artem@molotov.work>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: TakissX <pxatzidakis@gmail.com>
Signed-off-by: Artem <artem@molotov.work>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/el/
Translation: OpenWrt/LuCI/applications/statistics
2022-08-24 16:57:36 +03:00
Hosted Weblate
f34839c7a6
Translated using Weblate (Italian)
...
Currently translated at 33.8% (21 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/it/
Translated using Weblate (Italian)
Currently translated at 22.3% (38 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 10.7% (7 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/it/
Translated using Weblate (Italian)
Currently translated at 24.1% (47 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/it/
Translated using Weblate (Italian)
Currently translated at 37.9% (74 of 195 strings)
Translated using Weblate (Italian)
Currently translated at 21.6% (16 of 74 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Italian)
Currently translated at 74.3% (61 of 82 strings)
Translated using Weblate (Italian)
Currently translated at 47.7% (969 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Italian)
Currently translated at 92.6% (76 of 82 strings)
Translated using Weblate (Italian)
Currently translated at 19.9% (42 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 18.1% (8 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 24.0% (6 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/it/
Translated using Weblate (Italian)
Currently translated at 14.8% (14 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/it/
Translated using Weblate (Italian)
Currently translated at 9.0% (10 of 111 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 24.1% (7 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/it/
Translated using Weblate (Italian)
Currently translated at 19.2% (36 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/it/
Translated using Weblate (Italian)
Currently translated at 12.9% (15 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 21.0% (41 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/it/
Translated using Weblate (Russian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ru/
Translated using Weblate (Italian)
Currently translated at 11.9% (20 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/it/
Translated using Weblate (Italian)
Currently translated at 84.4% (152 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/it/
Translated using Weblate (Italian)
Currently translated at 99.4% (195 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (23 of 23 strings)
Translated using Weblate (Italian)
Currently translated at 13.2% (15 of 113 strings)
Translated using Weblate (Italian)
Currently translated at 6.7% (9 of 133 strings)
Translated using Weblate (Italian)
Currently translated at 12.5% (43 of 343 strings)
Translated using Weblate (Italian)
Currently translated at 47.7% (968 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Russian)
Currently translated at 98.3% (61 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ru/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hans/
Translated using Weblate (Russian)
Currently translated at 62.9% (39 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ru/
Co-authored-by: Alex Qin <haozi04@gmail.com>
Co-authored-by: Angemon25 <anmo5info@gmail.com>
Co-authored-by: Gerardo <gerardo.zinno@aol.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Vlad <Vlad.Slepov@gmail.com>
Signed-off-by: Alex Qin <haozi04@gmail.com>
Signed-off-by: Angemon25 <anmo5info@gmail.com>
Signed-off-by: Gerardo <gerardo.zinno@aol.com>
Signed-off-by: Vlad <Vlad.Slepov@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/it/
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
2022-08-17 16:49:02 +03:00
Hosted Weblate
f117cff72b
Translated using Weblate (Korean)
...
Currently translated at 100.0% (48 of 48 strings)
Translated using Weblate (Korean)
Currently translated at 17.3% (9 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ko/
Translated using Weblate (Korean)
Currently translated at 10.0% (17 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ko/
Translated using Weblate (Korean)
Currently translated at 14.2% (7 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ko/
Translated using Weblate (Korean)
Currently translated at 5.8% (20 of 343 strings)
Translated using Weblate (Korean)
Currently translated at 75.0% (36 of 48 strings)
Translated using Weblate (Korean)
Currently translated at 75.0% (36 of 48 strings)
Translated using Weblate (Korean)
Currently translated at 37.9% (80 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ko/
Translated using Weblate (Korean)
Currently translated at 11.3% (5 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ko/
Translated using Weblate (Korean)
Currently translated at 44.0% (11 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ko/
Translated using Weblate (Korean)
Currently translated at 14.8% (14 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ko/
Translated using Weblate (Korean)
Currently translated at 6.8% (2 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/ko/
Translated using Weblate (Korean)
Currently translated at 5.3% (9 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ko/
Translated using Weblate (Korean)
Currently translated at 45.9% (17 of 37 strings)
Translated using Weblate (Korean)
Currently translated at 13.0% (3 of 23 strings)
Translated using Weblate (Korean)
Currently translated at 6.1% (7 of 113 strings)
Translated using Weblate (Korean)
Currently translated at 4.1% (8 of 191 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2029 of 2029 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 100.0% (2029 of 2029 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 94.0% (1908 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Meano Lee <meanocat@gmail.com>
Co-authored-by: SangHoon Kim <hts.sanghoon.kim@outlook.com>
Co-authored-by: Tianling Shen <i@cnsztl.eu.org>
Co-authored-by: Остап Гайванович <pamik405@gmail.com>
Signed-off-by: Meano Lee <meanocat@gmail.com>
Signed-off-by: SangHoon Kim <hts.sanghoon.kim@outlook.com>
Signed-off-by: Tianling Shen <i@cnsztl.eu.org>
Signed-off-by: Остап Гайванович <pamik405@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/ko/
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-08-10 23:46:53 +02:00
Florian Eckert
1a3a1c6522
Merge pull request #5923 from TDT-AG/pr/20220803-luci-mod-system
...
luci-mod-system: add config option to invert heartbeat trigger
2022-08-08 08:45:20 +02:00
Hosted Weblate
01dec98991
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (2029 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Polish)
Currently translated at 100.0% (2029 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Danish)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (84 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (116 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (2029 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (2029 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@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: drax red <drax@outlook.dk>
Co-authored-by: pololoko111 <peciek83@gmail.com>
Co-authored-by: 王攀 <41330784@qq.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: 王攀 <41330784@qq.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pl/
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/statistics
2022-08-07 20:13:16 +03:00
Florian Eckert
d4330a53ee
luci-mod-system: add config option to invert heartbeat trigger
...
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-08-05 12:58:10 +02:00
Florian Eckert
bb9476cb94
Merge pull request #5765 from TDT-AG/pr/20220412-luci-mod-system
...
luci-mod-system: mount sections are always mounted unless they are explicitly not mounted
2022-08-03 09:47:50 +02:00
Florian Eckert
a70c5705e4
luci-compat: fix common cbi-page-actions position
...
With legacy applications, the common page actions "Save and Apply" are
not displayed correctly, so that they are not aligned on the right as
with javascript applications. To fix the alignment, the control-group
css class is removed.
This was determined with the application 'luci-app-nft-qos'
with the theme 'luci-theme-bootstrap'.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-08-03 09:08:58 +02:00
Jo-Philipp Wich
abd9125fbf
luci-base: sys.lua: make timeout optional when parsing conntrack entries
...
Fixes : #5909
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-08-01 11:57:30 +02:00
Hosted Weblate
67cf91b4ae
Translated using Weblate (Danish)
...
Currently translated at 100.0% (195 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/da/
Translated using Weblate (Korean)
Currently translated at 66.6% (32 of 48 strings)
Translated using Weblate (Korean)
Currently translated at 100.0% (3 of 3 strings)
Translated using Weblate (Korean)
Currently translated at 37.4% (79 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ko/
Translated using Weblate (Korean)
Currently translated at 9.0% (4 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ko/
Translated using Weblate (Korean)
Currently translated at 40.0% (10 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ko/
Translated using Weblate (Korean)
Currently translated at 6.4% (2 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/ko/
Translated using Weblate (Korean)
Currently translated at 12.7% (12 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ko/
Translated using Weblate (Korean)
Currently translated at 4.5% (5 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ko/
Translated using Weblate (Korean)
Currently translated at 1.6% (3 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ko/
Translated using Weblate (Korean)
Currently translated at 23.5% (4 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/ko/
Translated using Weblate (Korean)
Currently translated at 6.9% (13 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ko/
Translated using Weblate (Korean)
Currently translated at 13.8% (15 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ko/
Translated using Weblate (Korean)
Currently translated at 23.0% (3 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/ko/
Translated using Weblate (Korean)
Currently translated at 12.5% (10 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ko/
Translated using Weblate (Korean)
Currently translated at 50.0% (3 of 6 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/ko/
Translated using Weblate (Korean)
Currently translated at 14.5% (9 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ko/
Translated using Weblate (Korean)
Currently translated at 9.4% (16 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ko/
Translated using Weblate (Korean)
Currently translated at 8.3% (4 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/ko/
Translated using Weblate (Korean)
Currently translated at 20.8% (5 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ko/
Translated using Weblate (Korean)
Currently translated at 20.0% (4 of 20 strings)
Translation: OpenWrt/LuCI/applications/ltqtapi
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsltqtapi/ko/
Translated using Weblate (Korean)
Currently translated at 29.5% (58 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ko/
Translated using Weblate (Korean)
Currently translated at 14.2% (7 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ko/
Translated using Weblate (Korean)
Currently translated at 3.0% (6 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ko/
Translated using Weblate (French)
Currently translated at 100.0% (195 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fr/
Translated using Weblate (Korean)
Currently translated at 7.8% (3 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/ko/
Translated using Weblate (Korean)
Currently translated at 14.4% (26 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ko/
Translated using Weblate (Korean)
Currently translated at 6.2% (2 of 32 strings)
Translated using Weblate (Korean)
Currently translated at 4.9% (3 of 61 strings)
Translated using Weblate (Korean)
Currently translated at 4.0% (3 of 74 strings)
Translated using Weblate (Korean)
Currently translated at 5.8% (20 of 343 strings)
Translated using Weblate (Korean)
Currently translated at 43.2% (16 of 37 strings)
Translated using Weblate (Korean)
Currently translated at 5.3% (6 of 113 strings)
Translated using Weblate (Korean)
Currently translated at 6.8% (4 of 58 strings)
Translated using Weblate (Korean)
Currently translated at 3.6% (7 of 191 strings)
Translated using Weblate (Korean)
Currently translated at 10.7% (21 of 195 strings)
Translated using Weblate (Korean)
Currently translated at 4.5% (6 of 133 strings)
Translated using Weblate (Korean)
Currently translated at 13.0% (6 of 46 strings)
Translated using Weblate (Korean)
Currently translated at 33.3% (24 of 72 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (2029 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Korean)
Currently translated at 32.5% (661 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Danish)
Currently translated at 89.2% (174 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/da/
Translated using Weblate (Danish)
Currently translated at 25.1% (47 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/da/
Translated using Weblate (Korean)
Currently translated at 59.1% (29 of 49 strings)
Translated using Weblate (Korean)
Currently translated at 36.0% (76 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ko/
Translated using Weblate (French)
Currently translated at 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/fr/
Translated using Weblate (Korean)
Currently translated at 3.5% (3 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ko/
Translated using Weblate (Korean)
Currently translated at 6.8% (3 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ko/
Translated using Weblate (Korean)
Currently translated at 9.5% (9 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ko/
Translated using Weblate (Korean)
Currently translated at 3.6% (4 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ko/
Translated using Weblate (Korean)
Currently translated at 16.6% (3 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/ko/
Translated using Weblate (Korean)
Currently translated at 15.3% (8 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ko/
Translated using Weblate (French)
Currently translated at 100.0% (186 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/fr/
Translated using Weblate (Korean)
Currently translated at 4.8% (9 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ko/
Translated using Weblate (Korean)
Currently translated at 10.0% (8 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ko/
Translated using Weblate (Korean)
Currently translated at 6.8% (8 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ko/
Translated using Weblate (French)
Currently translated at 22.4% (26 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/fr/
Translated using Weblate (Korean)
Currently translated at 3.2% (4 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ko/
Translated using Weblate (Korean)
Currently translated at 33.3% (2 of 6 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/ko/
Translated using Weblate (Korean)
Currently translated at 8.0% (5 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ko/
Translated using Weblate (Korean)
Currently translated at 8.1% (10 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ko/
Translated using Weblate (Korean)
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/ko/
Translated using Weblate (French)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/fr/
Translated using Weblate (Korean)
Currently translated at 8.8% (15 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ko/
Translated using Weblate (Korean)
Currently translated at 12.9% (4 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/ko/
Translated using Weblate (Korean)
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/ko/
Translated using Weblate (French)
Currently translated at 43.0% (28 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/fr/
Translated using Weblate (Korean)
Currently translated at 23.0% (6 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ko/
Translated using Weblate (Korean)
Currently translated at 2.0% (4 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ko/
Translated using Weblate (French)
Currently translated at 99.4% (194 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fr/
Translated using Weblate (Korean)
Currently translated at 77.4% (48 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ko/
Translated using Weblate (Korean)
Currently translated at 13.8% (25 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ko/
Translated using Weblate (French)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fr/
Translated using Weblate (French)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/fr/
Translated using Weblate (Korean)
Currently translated at 100.0% (16 of 16 strings)
Translated using Weblate (Korean)
Currently translated at 14.2% (7 of 49 strings)
Translated using Weblate (Korean)
Currently translated at 5.8% (6 of 102 strings)
Translated using Weblate (Korean)
Currently translated at 4.3% (15 of 343 strings)
Translated using Weblate (Korean)
Currently translated at 6.0% (5 of 82 strings)
Translated using Weblate (Korean)
Currently translated at 4.4% (5 of 113 strings)
Translated using Weblate (Korean)
Currently translated at 24.0% (6 of 25 strings)
Translated using Weblate (Korean)
Currently translated at 2.6% (5 of 191 strings)
Translated using Weblate (Korean)
Currently translated at 9.2% (18 of 195 strings)
Translated using Weblate (Korean)
Currently translated at 3.0% (4 of 133 strings)
Translated using Weblate (Korean)
Currently translated at 14.2% (2 of 14 strings)
Translated using Weblate (Korean)
Currently translated at 4.5% (2 of 44 strings)
Translated using Weblate (Korean)
Currently translated at 18.1% (6 of 33 strings)
Translated using Weblate (French)
Currently translated at 100.0% (23 of 23 strings)
Translated using Weblate (French)
Currently translated at 100.0% (32 of 32 strings)
Translated using Weblate (French)
Currently translated at 100.0% (191 of 191 strings)
Translated using Weblate (Korean)
Currently translated at 25.9% (55 of 212 strings)
Translated using Weblate (French)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (French)
Currently translated at 68.2% (56 of 82 strings)
Translated using Weblate (French)
Currently translated at 100.0% (2033 of 2033 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (French)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/fr/
Translated using Weblate (French)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (French)
Currently translated at 38.4% (75 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fr/
Translated using Weblate (French)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fr/
Translated using Weblate (French)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/fr/
Translated using Weblate (French)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Czech)
Currently translated at 92.0% (23 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/cs/
Translated using Weblate (French)
Currently translated at 100.0% (186 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/fr/
Translated using Weblate (French)
Currently translated at 93.5% (101 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/fr/
Translated using Weblate (French)
Currently translated at 33.8% (21 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/fr/
Translated using Weblate (French)
Currently translated at 61.7% (105 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/fr/
Translated using Weblate (French)
Currently translated at 64.5% (20 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/fr/
Translated using Weblate (French)
Currently translated at 100.0% (49 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/fr/
Translated using Weblate (French)
Currently translated at 38.4% (75 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fr/
Translated using Weblate (Czech)
Currently translated at 10.2% (20 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/cs/
Translated using Weblate (Czech)
Currently translated at 48.8% (88 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/cs/
Translated using Weblate (French)
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (French)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Czech)
Currently translated at 90.9% (10 of 11 strings)
Translated using Weblate (French)
Currently translated at 71.4% (245 of 343 strings)
Translated using Weblate (French)
Currently translated at 68.2% (56 of 82 strings)
Translated using Weblate (Czech)
Currently translated at 60.9% (50 of 82 strings)
Translated using Weblate (Czech)
Currently translated at 89.1% (33 of 37 strings)
Translated using Weblate (French)
Currently translated at 100.0% (2033 of 2033 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (Czech)
Currently translated at 69.2% (1406 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (French)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (French)
Currently translated at 61.1% (104 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/fr/
Translated using Weblate (French)
Currently translated at 98.7% (2007 of 2033 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (Danish)
Currently translated at 100.0% (2029 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Spanish)
Currently translated at 99.4% (195 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/es/
Translated using Weblate (Spanish)
Currently translated at 96.4% (1957 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Korean)
Currently translated at 66.0% (33 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ko/
Translated using Weblate (Korean)
Currently translated at 7.1% (14 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (2029 of 2029 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 29.1% (592 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: Christophe Blancon <christophe.blancon@gmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jakub Brož <brozikcz@gmail.com>
Co-authored-by: SangHoon Kim <hts.sanghoon.kim@outlook.com>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: somni <me@somni.one>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: Christophe Blancon <christophe.blancon@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Jakub Brož <brozikcz@gmail.com>
Signed-off-by: SangHoon Kim <hts.sanghoon.kim@outlook.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: somni <me@somni.one>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/ko/
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/luciapplicationsfwknopd/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/cs/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-battstatus/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/ko/
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/ntpc
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/qos
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/splash
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
2022-08-01 10:34:29 +03:00
Kevin Darbyshire-Bryant
e96c1f31db
luci-mod-dashboard: show IPv6 connection uptime
...
Show connection uptime for both IPv4 & IPv6 interfaces.
Rename display field from 'Connected since' to 'Uptime' as this makes
more sense to me. You could say 'Connected for' or 'Connection
duration'. After a lot of thought decided that 'Uptime' is what I'm
most comfortable saying.
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
2022-07-29 15:01:04 +01:00
Jo-Philipp Wich
801d4513b2
luci-mod-network: ensure consistent bridge port and network interface order
...
Ref: #5899
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-07-27 17:33:59 +02:00
Jo-Philipp Wich
37422e891a
luci-base: revise array sorting
...
Refactor various sort operations throughout luci-base to use the new
L.naturalCompare() comparator function.
This primarily ensures that embedded numbers are sorted numerically and
not in a lexicographical way.
It also simplifies some code as a side effect.
Ref: #5899
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-07-27 17:32:58 +02:00
Jo-Philipp Wich
8199b2ce9a
luci-base: luci.js: add array sort utilities
...
Add two new utility functions L.naturalCompare() and L.sortedArray() to
simplify sorting arrays naturally.
Ref: #5899
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-07-27 17:31:01 +02:00
Hosted Weblate
0c16e10d03
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (2029 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (2029 of 2029 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Danish)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/da/
Translated using Weblate (French)
Currently translated at 18.0% (38 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/fr/
Translated using Weblate (French)
Currently translated at 99.4% (185 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/fr/
Translated using Weblate (French)
Currently translated at 20.3% (38 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/fr/
Translated using Weblate (French)
Currently translated at 98.9% (184 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/fr/
Translated using Weblate (French)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Catalan)
Currently translated at 4.7% (10 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ca/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (50 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/uk/
Translated using Weblate (Russian)
Currently translated at 27.2% (18 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ru/
Translated using Weblate (Russian)
Currently translated at 36.9% (31 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ru/
Translated using Weblate (Catalan)
Currently translated at 9.0% (4 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ca/
Translated using Weblate (Catalan)
Currently translated at 20.0% (5 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ca/
Translated using Weblate (Catalan)
Currently translated at 7.4% (7 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ca/
Translated using Weblate (Russian)
Currently translated at 63.9% (71 of 111 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 57.6% (30 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ru/
Translated using Weblate (Catalan)
Currently translated at 6.8% (2 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/ca/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (24 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/uk/
Translated using Weblate (Catalan)
Currently translated at 15.3% (4 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ca/
Translated using Weblate (French)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/fr/
Translated using Weblate (Ukrainian)
Currently translated at 85.0% (153 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Russian)
Currently translated at 59.6% (37 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ru/
Translated using Weblate (Russian)
Currently translated at 71.1% (121 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ru/
Translated using Weblate (Catalan)
Currently translated at 12.0% (16 of 133 strings)
Translated using Weblate (Russian)
Currently translated at 63.6% (28 of 44 strings)
Translated using Weblate (Catalan)
Currently translated at 43.2% (16 of 37 strings)
Translated using Weblate (French)
Currently translated at 99.0% (2006 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Co-authored-by: Alexey Carterline <consulive@live.com>
Co-authored-by: Artem <artem@molotov.work>
Co-authored-by: Christophe Blancon <christophe.blancon@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: dtalens <databio@gmail.com>
Signed-off-by: Alexey Carterline <consulive@live.com>
Signed-off-by: Artem <artem@molotov.work>
Signed-off-by: Christophe Blancon <christophe.blancon@gmail.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: dtalens <databio@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ca/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ca/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/fr/
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-07-27 16:34:48 +03:00
INAGAKI Hiroshi
f2fc6d1676
luci-base: sync translations
...
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
2022-07-27 11:26:32 +09:00
Hosted Weblate
4d77b1b269
Translated using Weblate (German)
...
Currently translated at 100.0% (84 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/de/
Translated using Weblate (French)
Currently translated at 96.2% (1950 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (German)
Currently translated at 99.9% (2024 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (French)
Currently translated at 92.8% (78 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/fr/
Translated using Weblate (French)
Currently translated at 22.4% (26 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/fr/
Translated using Weblate (French)
Currently translated at 47.7% (54 of 113 strings)
Translated using Weblate (French)
Currently translated at 95.7% (1938 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (Urdu)
Currently translated at 87.5% (63 of 72 strings)
Translated using Weblate (Urdu)
Currently translated at 0.6% (14 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ur/
Translated using Weblate (French)
Currently translated at 98.9% (184 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/fr/
Translated using Weblate (French)
Currently translated at 37.4% (73 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fr/
Translated using Weblate (French)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/fr/
Translated using Weblate (French)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fr/
Translated using Weblate (French)
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (French)
Currently translated at 71.4% (245 of 343 strings)
Translated using Weblate (French)
Currently translated at 86.7% (1757 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Added translation using Weblate (Urdu)
Added translation using Weblate (Urdu)
Translated using Weblate (Japanese)
Currently translated at 81.1% (1644 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ja/
Translated using Weblate (German)
Currently translated at 99.9% (2024 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (German)
Currently translated at 97.9% (48 of 49 strings)
Translated using Weblate (German)
Currently translated at 96.6% (58 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/de/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (84 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/pt/
Translated using Weblate (German)
Currently translated at 94.1% (16 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/de/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt/
Translated using Weblate (German)
Currently translated at 99.4% (195 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/de/
Translated using Weblate (German)
Currently translated at 93.7% (30 of 32 strings)
Co-authored-by: Christophe Blancon <christophe.blancon@gmail.com>
Co-authored-by: Hannu Nyman <hannu.nyman@iki.fi>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Co-authored-by: Usama Khursheed <Usamakhursheedkhan@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Christophe Blancon <christophe.blancon@gmail.com>
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Signed-off-by: Usama Khursheed <Usamakhursheedkhan@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/ur/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/de/
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-07-24 19:17:04 +03:00
Jo-Philipp Wich
25dcd0b77c
luci-base: uci.js: prevent sending empty uci set operations
...
Under certain circumstances, a staged uci option value might get unset
again before saving the config, leaving an empty section change set
behind, causing the save call to send an empty uci set request via rpc,
triggering an ubus code 4 (Resource not found) error.
In particular this prevented bridge VLANs from getting saved properly.
Fixes : #5876
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-07-23 00:10:17 +02:00
Jo-Philipp Wich
2771360108
luci-base: form.js: fix removing just created named GridSection
...
Since the `handleModalSave()` handler of the GridSection class invokes
`handleModalCancel()` after saving the data but before removing the
`addedSection` property, the `handleModalCancel` handler incorrectly
removed the uci section that has just been created.
This bug didn't affect anonymous GridSections because after saving the
id of the created section changes, causing the remove command to fail,
but for named ones with stable section IDs, the bug manifested.
Solve the issue by passing a flag to `handleModalCancel()` indicating
whether the method was called from a safe operation and use it do
decide whether to delete the new staged uci section or not.
Fixes : #5760
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-07-22 23:41:05 +02:00
Hosted Weblate
5d7af48672
Translated using Weblate (Dutch)
...
Currently translated at 6.4% (12 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/nl/
Translated using Weblate (Spanish)
Currently translated at 96.4% (1953 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Added translation using Weblate (Dutch)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/zh_Hant/
Translated using Weblate (Chinese (Traditional))
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 (Spanish)
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/es/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (84 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (62 of 62 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% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 99.5% (2016 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Spanish)
Currently translated at 96.4% (1953 of 2025 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% (2025 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hulen <shift0106@gmail.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: croissantpetrichor <pierollsporkoctopus@proton.me>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Hulen <shift0106@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: croissantpetrichor <pierollsporkoctopus@proton.me>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hant/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/tinyproxy
2022-07-19 12:35:29 +03:00
Hosted Weblate
40814784d2
Added translation using Weblate (Urdu)
...
Translated using Weblate (Spanish)
Currently translated at 96.6% (58 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/es/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pt_BR/
Translated using Weblate (Polish)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/pl/
Translated using Weblate (Spanish)
Currently translated at 90.6% (29 of 32 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (196 of 196 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% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/pl/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/pt_BR/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (60 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 96.6% (58 of 60 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/zh_Hans/
Co-authored-by: Eric <alchemillatruth@purelymail.com>
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: Paul Spooren <mail@aparcar.org>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Paul Spooren <mail@aparcar.org>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/es/
Translation: OpenWrt/LuCI/applications/watchcat
2022-07-14 00:32:17 +02:00
Santiago Kozak
df8b5f4e38
luci-mod-dashboard: improve label's display
...
Removing overflow and position, adding padding and increasing font size for the label.
Signed-off-by: Santiago Kozak <santikzk1406@gmail.com>
2022-07-12 20:10:02 -03:00
Jo-Philipp Wich
ef7fe79ffc
luci-mod-network: demote WPA-PSK to "low" security in the choice list
...
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-07-12 16:12:30 +02:00
Hosted Weblate
f3060db771
Translated using Weblate (Dutch)
...
Currently translated at 12.5% (43 of 343 strings)
Translated using Weblate (Dutch)
Currently translated at 45.9% (17 of 37 strings)
Translated using Weblate (Dutch)
Currently translated at 8.3% (170 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/nl/
Co-authored-by: Fabrice Delahaij <fdelahaij@extreemhost.nl>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Signed-off-by: Fabrice Delahaij <fdelahaij@extreemhost.nl>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/nl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/nl/
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
2022-07-11 11:22:29 +02:00
Hosted Weblate
cf73d5a439
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (32 of 32 strings)
Translated using Weblate (German)
Currently translated at 99.9% (2024 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (32 of 32 strings)
Translated using Weblate (Spanish)
Currently translated at 84.6% (94 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/es/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2025 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (German)
Currently translated at 30.7% (32 of 104 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/de/
Translated using Weblate (German)
Currently translated at 95.2% (201 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (German)
Currently translated at 45.1% (14 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/de/
Translated using Weblate (German)
Currently translated at 37.8% (42 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/de/
Translated using Weblate (German)
Currently translated at 94.1% (16 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/de/
Translated using Weblate (German)
Currently translated at 88.7% (166 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/de/
Translated using Weblate (German)
Currently translated at 100.0% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/de/
Translated using Weblate (German)
Currently translated at 99.4% (195 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/de/
Translated using Weblate (German)
Currently translated at 90.6% (29 of 32 strings)
Translated using Weblate (Chinese (Simplified))
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_Hans/
Co-authored-by: Arbolito Loco <santikzk1406@gmail.com>
Co-authored-by: Christian Sch <pr0byt3@web.de>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: MkQtS <onewordwrong@aliyun.com>
Co-authored-by: Zheng Qian <sotux82@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Arbolito Loco <santikzk1406@gmail.com>
Signed-off-by: Christian Sch. <pr0byt3@web.de>
Signed-off-by: MkQtS <onewordwrong@aliyun.com>
Signed-off-by: Zheng Qian <sotux82@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hans/
Translation: OpenWrt/LuCI/applications/watchcat
2022-07-10 20:15:19 +03:00
Jo-Philipp Wich
3a6f37f9df
luci-mod-network: fix sort operations
...
Ensure to return [-1, 0, 1] from the sort callback instead of [0, 1]
which fails in non-FF browsers.
Fixes : #5859
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-07-08 16:03:14 +02:00
Jo-Philipp Wich
e1932592c3
luci-base: use different cookie names for HTTP and HTTPS
...
Since HTTP cookies may not overwrite HTTPS ("secure") ones, users are
frequently unable to log into LuCI when a stale, "secure" `sysauth` cookie
is still present in the browser as it commonly happens after e.g. a
sysupgrade operation or when frequently jumping between HTTP and HTTPS
access.
Rework the dispatcher to set either a `sysauth_http` or `sysauth_https`
cookie, depending on the HTTPS state of the server connection and accept
both cookie names when verifying the session ID.
This allows users to log into a HTTP-only LuCI instance while a stale,
"secure" HTTPS cookie is still present.
Requires commit 2b0539ef9d
("lucihttp: update to latest Git HEAD") to
function properly.
Fixes : #5843
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-07-08 15:38:53 +02:00
Jo-Philipp Wich
2f5ef2e6b3
Merge pull request #5852 from y04/master
...
Optimized PNG filesizes
2022-07-05 23:52:24 +02:00
Alexander Georgievskiy
88c62fe218
luci-mod-status: nftables.js: fix OOM on big nftables IP sets
...
Signed-off-by: Alexander Georgievskiy <galeksandrp@gmail.com>
2022-07-05 15:00:38 +03:00
Hosted Weblate
2b25474059
Translated using Weblate (English)
...
Currently translated at 0.0% (0 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/en/
Translated using Weblate (English)
Currently translated at 11.1% (2 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/en/
Translated using Weblate (English)
Currently translated at 0.0% (0 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/en/
Translated using Weblate (English)
Currently translated at 2.5% (2 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/en/
Translated using Weblate (English)
Currently translated at 0.5% (1 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/en/
Translated using Weblate (English)
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/en/
Translated using Weblate (English)
Currently translated at 0.0% (0 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/en/
Translated using Weblate (English)
Currently translated at 0.0% (0 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/en/
Translated using Weblate (English)
Currently translated at 0.5% (1 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/en/
Translated using Weblate (English)
Currently translated at 25.1% (49 of 195 strings)
Translated using Weblate (English)
Currently translated at 77.4% (148 of 191 strings)
Translated using Weblate (English)
Currently translated at 0.0% (0 of 72 strings)
Translated using Weblate (English)
Currently translated at 98.2% (111 of 113 strings)
Translated using Weblate (English)
Currently translated at 34.9% (120 of 343 strings)
Translated using Weblate (English)
Currently translated at 84.0% (21 of 25 strings)
Translated using Weblate (English)
Currently translated at 0.0% (0 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/en/
Translated using Weblate (English)
Currently translated at 2.7% (2 of 72 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/en/
Translated using Weblate (English)
Currently translated at 0.4% (1 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/en/
Translated using Weblate (English)
Currently translated at 0.0% (0 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/en/
Translated using Weblate (English)
Currently translated at 1.0% (1 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/en/
Translated using Weblate (English)
Currently translated at 0.0% (0 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/en/
Translated using Weblate (English)
Currently translated at 16.6% (3 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/en/
Translated using Weblate (English)
Currently translated at 0.0% (0 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/en/
Translated using Weblate (English)
Currently translated at 3.7% (3 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/en/
Translated using Weblate (English)
Currently translated at 0.0% (0 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/en/
Translated using Weblate (English)
Currently translated at 0.8% (1 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/en/
Translated using Weblate (English)
Currently translated at 0.0% (0 of 13 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/en/
Translated using Weblate (English)
Currently translated at 0.8% (1 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/en/
Translated using Weblate (English)
Currently translated at 3.2% (1 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/en/
Translated using Weblate (English)
Currently translated at 1.0% (2 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/en/
Translated using Weblate (English)
Currently translated at 0.5% (1 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/en/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt/
Translated using Weblate (English)
Currently translated at 62.9% (39 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/en/
Translated using Weblate (English)
Currently translated at 0.5% (1 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/en/
Translated using Weblate (English)
Currently translated at 0.0% (0 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/en/
Translated using Weblate (English)
Currently translated at 1.1% (2 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/en/
Translated using Weblate (English)
Currently translated at 34.0% (15 of 44 strings)
Translated using Weblate (English)
Currently translated at 25.6% (50 of 195 strings)
Translated using Weblate (English)
Currently translated at 10.8% (8 of 74 strings)
Translated using Weblate (English)
Currently translated at 93.9% (31 of 33 strings)
Translated using Weblate (English)
Currently translated at 1.3% (1 of 72 strings)
Translated using Weblate (English)
Currently translated at 0.0% (0 of 16 strings)
Translated using Weblate (English)
Currently translated at 60.3% (35 of 58 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2025 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
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% (84 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/de/
Translated using Weblate (German)
Currently translated at 99.4% (194 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/de/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (170 of 170 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% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (German)
Currently translated at 99.9% (2023 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (Polish)
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/pl/
Translated using Weblate (Turkish)
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/tr/
Translated using Weblate (Polish)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pl/
Translated using Weblate (German)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/de/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (170 of 170 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% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/es/
Translated using Weblate (Spanish)
Currently translated at 98.3% (61 of 62 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/es/
Translated using Weblate (Spanish)
Currently translated at 96.3% (1952 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hannu Nyman <hannu.nyman@iki.fi>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Mc Giver <mcgivergim@gmail.com>
Co-authored-by: Oğuz Ersen <oguz@ersen.moe>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: Zheng Qian <sotux82@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Mc Giver <mcgivergim@gmail.com>
Signed-off-by: Oğuz Ersen <oguz@ersen.moe>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: Zheng Qian <sotux82@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat/en/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/olsr
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/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/vnstat
2022-07-03 13:27:49 +03:00
Florian Eckert
f2e6f28cc3
treewide: sync translations
...
Sync translations.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-06-30 10:17:07 +02:00
Hosted Weblate
2d6fcb4fee
Translated using Weblate (English)
...
Currently translated at 1.4% (3 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/en/
Translated using Weblate (Greek)
Currently translated at 11.7% (2 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/el/
Translated using Weblate (English)
Currently translated at 22.2% (4 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/en/
Translated using Weblate (Greek)
Currently translated at 15.3% (8 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/el/
Translated using Weblate (English)
Currently translated at 0.5% (1 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/en/
Translated using Weblate (Greek)
Currently translated at 5.3% (10 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/el/
Translated using Weblate (English)
Currently translated at 6.2% (5 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/en/
Translated using Weblate (English)
Currently translated at 1.1% (2 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/en/
Translated using Weblate (English)
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/en/
Translated using Weblate (English)
Currently translated at 1.0% (2 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/en/
Translated using Weblate (English)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/en/
Translated using Weblate (English)
Currently translated at 2.2% (4 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/en/
Translated using Weblate (English)
Currently translated at 26.6% (52 of 195 strings)
Translated using Weblate (English)
Currently translated at 78.0% (149 of 191 strings)
Translated using Weblate (English)
Currently translated at 35.2% (121 of 343 strings)
Translated using Weblate (Spanish)
Currently translated at 96.3% (1952 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (English)
Currently translated at 0.1% (1 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/en/
Translated using Weblate (Greek)
Currently translated at 31.2% (632 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/el/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/pt_BR/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (84 of 84 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 100.0% (17 of 17 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 (Portuguese (Brazil))
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (2025 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Indonesian)
Currently translated at 18.3% (9 of 49 strings)
Translated using Weblate (German)
Currently translated at 100.0% (50 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/de/
Translated using Weblate (Russian)
Currently translated at 100.0% (2025 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Added translation using Weblate (Indonesian)
Added translation using Weblate (Indonesian)
Added translation using Weblate (Indonesian)
Translated using Weblate (Danish)
Currently translated at 100.0% (2025 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (195 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hans/
Translated using Weblate (Chinese (Simplified))
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_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (32 of 32 strings)
Translated using Weblate (Spanish)
Currently translated at 96.3% (1952 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Turkish)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/tr/
Translated using Weblate (Turkish)
Currently translated at 95.2% (80 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/tr/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (25 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/uk/
Translated using Weblate (Turkish)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/tr/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Turkish)
Currently translated at 95.7% (1938 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: Artem <artem@molotov.work>
Co-authored-by: Christian Neff <christian.neff@gmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Josef Schlehofer <pepe@bloodkings.eu>
Co-authored-by: MarioK239 <marios.k239@gmail.com>
Co-authored-by: Mc Giver <mcgivergim@gmail.com>
Co-authored-by: MkQtS <onewordwrong@aliyun.com>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: Yody <yooody@pm.me>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: metezd <itoldyouthat@protonmail.com>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: Artem <artem@molotov.work>
Signed-off-by: Christian Neff <christian.neff@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Josef Schlehofer <pepe@bloodkings.eu>
Signed-off-by: MarioK239 <marios.k239@gmail.com>
Signed-off-by: Mc Giver <mcgivergim@gmail.com>
Signed-off-by: MkQtS <onewordwrong@aliyun.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: metezd <itoldyouthat@protonmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/id/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-06-29 11:08:09 +02:00
y04
37477ca614
luci-base: optimized icons filesizes
...
Optimized PNG filesize without any quality loss.
Signed-off-by: Alexander Semukhin <semukhin@mail.com>
2022-06-25 01:45:55 +02:00
Jo-Philipp Wich
53a998895b
luci-mod-network: wireless.js: fix typo in description string
...
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-06-21 23:54:12 +02:00
Hosted Weblate
5f778fed14
Added translation using Weblate (Bosnian)
...
Translated using Weblate (Polish)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/pl/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (84 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (84 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/pl/
Translated using Weblate (Spanish)
Currently translated at 98.4% (65 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/es/
Translated using Weblate (Spanish)
Currently translated at 98.8% (83 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/es/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (34 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/uk/
Translated using Weblate (Polish)
Currently translated at 94.0% (79 of 84 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (2025 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2025 of 2025 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Swedish)
Currently translated at 36.8% (69 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/sv/
Co-authored-by: Artem <artem@molotov.work>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: mfaraguna <mladen.faraguna@gmail.com>
Signed-off-by: Artem <artem@molotov.work>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
2022-06-21 22:33:53 +02:00
Jo-Philipp Wich
375e8c8e92
luci-base: complete German translation
...
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-06-21 12:29:09 +02:00
Jo-Philipp Wich
06bbd09511
luci-base: resync translations
...
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-06-21 08:54:44 +02:00
Jo-Philipp Wich
f039069ac5
luci-mod-network: wireless.js: expose wifi-iface macaddr option
...
Fixes : #5845
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-06-21 08:52:50 +02:00
Jo-Philipp Wich
cc3d97ccec
luci-base: remove redundant english translations
...
Drop translations that match the msgid as well as stry, misplaced spanish
ones.
Ref: https://forum.openwrt.org/t/openwrt-22-03-0-rc4/129874/50
Ref: https://forum.openwrt.org/t/openwrt-22-03-0-rc4/129874/60
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-06-20 10:57:06 +02:00
Hosted Weblate
0720d342a3
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (34 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2024 of 2024 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 100.0% (2024 of 2024 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Russian)
Currently translated at 80.6% (25 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/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 100.0% (18 of 18 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% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/ru/
Translated using Weblate (Russian)
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/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (24 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ru/
Translated using Weblate (Russian)
Currently translated at 93.1% (27 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/ru/
Translated using Weblate (Russian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (2024 of 2024 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% (2024 of 2024 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Romanian)
Currently translated at 99.0% (2005 of 2024 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% (102 of 102 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Russian)
Currently translated at 67.8% (114 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% (102 of 102 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% (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% (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% (49 of 49 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% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ru/
Translated using Weblate (Russian)
Currently translated at 67.8% (114 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% (196 of 196 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% (102 of 102 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ru/
Translated using Weblate (Romanian)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 95.5% (1933 of 2024 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Spanish)
Currently translated at 9.0% (8 of 88 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/es/
Translated using Weblate (Russian)
Currently translated at 100.0% (2024 of 2024 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Russian)
Currently translated at 86.0% (43 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ru/
Translated using Weblate (Spanish)
Currently translated at 6.8% (6 of 88 strings)
Translation: OpenWrt/LuCI/applications/mosquitto
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmosquitto/es/
Translated using Weblate (Danish)
Currently translated at 100.0% (2024 of 2024 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Spanish)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (2024 of 2024 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 100.0% (2024 of 2024 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% (2024 of 2024 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Spanish)
Currently translated at 96.3% (1951 of 2024 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: AHOHNMYC <lqwh2h2cwa@protonmail.com>
Co-authored-by: Alexey Dobrovolsky <dobrovolskiy.alexey@gmail.com>
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Localizer <Localizer_in_Russian@protonmail.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: MkQtS <onewordwrong@aliyun.com>
Co-authored-by: Sergey V. Lobanov <sergey@lobanov.in>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: AHOHNMYC <lqwh2h2cwa@protonmail.com>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Localizer <Localizer_in_Russian@protonmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: MkQtS <onewordwrong@aliyun.com>
Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ru/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
2022-06-19 16:00:56 +03:00
Jo-Philipp Wich
8effea58d7
luci-base: network.js: consider uci config for Device.getType()/getParent()
...
For network devices declared in uci but not yet created by netifd, the
runtime status information will be unavailable, causing methods such as
`getType()` to assume plain ethernet interfaces and `getParent()` to fail
resolving parent devices.
Fall back to infer the information from uci configuration settings in such
cases to give accurate type hints to callers.
In particular, this prevents LuCI from turning wireless target networks
containing a to-be-created bridge device into bridges themselves.
Fixes: https://github.com/openwrt/packages/issues/18768
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-06-16 09:52:36 +02:00
Hannu Nyman
3d64f07480
treewide: sync translations
...
Sync translations.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-06-12 19:45:05 +03:00
Hosted Weblate
3735862801
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 (Portuguese)
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (German)
Currently translated at 90.0% (153 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/de/
Translated using Weblate (German)
Currently translated at 94.7% (200 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (German)
Currently translated at 78.2% (133 of 170 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% (33 of 33 strings)
Translated using Weblate (German)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (German)
Currently translated at 87.7% (1741 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (Danish)
Currently translated at 17.0% (14 of 82 strings)
Translated using Weblate (Dutch)
Currently translated at 0.5% (1 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/nl/
Translated using Weblate (Dutch)
Currently translated at 0.9% (2 of 212 strings)
Translated using Weblate (Dutch)
Currently translated at 67.1% (131 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/nl/
Translated using Weblate (Dutch)
Currently translated at 1.1% (4 of 343 strings)
Translated using Weblate (Dutch)
Currently translated at 43.2% (16 of 37 strings)
Translated using Weblate (Dutch)
Currently translated at 8.3% (166 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/nl/
Translated using Weblate (Polish)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/pl/
Translated using Weblate (Spanish)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/es/
Translated using Weblate (Polish)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (1986 of 1986 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Spanish)
Currently translated at 96.5% (1918 of 1986 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Added translation using Weblate (Dutch)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (32 of 32 strings)
Translated using Weblate (German)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/de/
Translated using Weblate (German)
Currently translated at 99.2% (132 of 133 strings)
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Martin Bezemer <m.bezemer+openwrt@gmail.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: MkQtS <onewordwrong@aliyun.com>
Co-authored-by: Steffen Möller <steffen_moeller@gmx.de>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Martin Bezemer <m.bezemer+openwrt@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Steffen Möller <steffen_moeller@gmx.de>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/nl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/nl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/nl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/zh_Hans/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/watchcat
2022-06-12 19:31:53 +03:00
Hosted Weblate
62ee3fbfbf
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (1986 of 1986 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (English)
Currently translated at 4.1% (3 of 72 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/en/
Translated using Weblate (English)
Currently translated at 1.4% (3 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/en/
Translated using Weblate (German)
Currently translated at 94.7% (200 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (English)
Currently translated at 22.2% (4 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/en/
Translated using Weblate (German)
Currently translated at 98.0% (51 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/de/
Translated using Weblate (English)
Currently translated at 0.5% (1 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/en/
Translated using Weblate (English)
Currently translated at 6.2% (5 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/en/
Translated using Weblate (English)
Currently translated at 1.7% (2 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/en/
Translated using Weblate (English)
Currently translated at 1.6% (2 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/en/
Translated using Weblate (English)
Currently translated at 1.1% (2 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/en/
Translated using Weblate (English)
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/en/
Translated using Weblate (English)
Currently translated at 1.0% (2 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/en/
Translated using Weblate (English)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/en/
Translated using Weblate (German)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/de/
Translated using Weblate (English)
Currently translated at 2.2% (4 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/en/
Translated using Weblate (German)
Currently translated at 66.4% (113 of 170 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% (116 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/de/
Translated using Weblate (German)
Currently translated at 99.4% (195 of 196 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% (113 of 113 strings)
Translated using Weblate (German)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (English)
Currently translated at 26.6% (52 of 195 strings)
Translated using Weblate (English)
Currently translated at 78.0% (149 of 191 strings)
Translated using Weblate (English)
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (English)
Currently translated at 4.1% (3 of 72 strings)
Translated using Weblate (English)
Currently translated at 99.1% (112 of 113 strings)
Translated using Weblate (English)
Currently translated at 35.2% (121 of 343 strings)
Translated using Weblate (English)
Currently translated at 88.0% (22 of 25 strings)
Translated using Weblate (English)
Currently translated at 15.3% (304 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/en/
Translated using Weblate (German)
Currently translated at 87.7% (1741 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (English)
Currently translated at 0.9% (2 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/en/
Translated using Weblate (English)
Currently translated at 6.0% (2 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/en/
Translated using Weblate (English)
Currently translated at 2.1% (2 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/en/
Translated using Weblate (Spanish)
Currently translated at 83.7% (93 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/es/
Translated using Weblate (English)
Currently translated at 0.9% (1 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/en/
Translated using Weblate (English)
Currently translated at 16.6% (3 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/en/
Translated using Weblate (English)
Currently translated at 0.9% (1 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/en/
Translated using Weblate (English)
Currently translated at 3.7% (3 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/en/
Translated using Weblate (English)
Currently translated at 7.6% (1 of 13 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/en/
Translated using Weblate (English)
Currently translated at 1.6% (2 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/en/
Translated using Weblate (English)
Currently translated at 6.4% (2 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/en/
Translated using Weblate (English)
Currently translated at 2.0% (4 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/en/
Translated using Weblate (English)
Currently translated at 0.5% (1 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/en/
Translated using Weblate (English)
Currently translated at 29.5% (18 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/en/
Translated using Weblate (English)
Currently translated at 1.1% (2 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/en/
Translated using Weblate (English)
Currently translated at 2.6% (1 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/en/
Translated using Weblate (English)
Currently translated at 1.6% (3 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/en/
Translated using Weblate (English)
Currently translated at 36.3% (16 of 44 strings)
Translated using Weblate (English)
Currently translated at 25.6% (50 of 195 strings)
Translated using Weblate (English)
Currently translated at 12.1% (9 of 74 strings)
Translated using Weblate (English)
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (English)
Currently translated at 1.3% (1 of 72 strings)
Translated using Weblate (English)
Currently translated at 6.2% (1 of 16 strings)
Translated using Weblate (English)
Currently translated at 62.0% (36 of 58 strings)
Translated using Weblate (Spanish)
Currently translated at 96.5% (1917 of 1986 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (English)
Currently translated at 15.1% (300 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/en/
Translated using Weblate (Spanish)
Currently translated at 96.5% (1917 of 1986 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (English)
Currently translated at 3.2% (2 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/en/
Translated using Weblate (Spanish)
Currently translated at 96.5% (1918 of 1986 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% (1986 of 1986 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Russian)
Currently translated at 86.0% (43 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ru/
Translated using Weblate (Russian)
Currently translated at 44.6% (83 of 186 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% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/ru/
Translated using Weblate (Russian)
Currently translated at 28.3% (32 of 113 strings)
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: James White <james@jmwhite.co.uk>
Co-authored-by: João Paulo da Silva <dasilvaj4@gmail.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Zheng Qian <sotux82@gmail.com>
Co-authored-by: masta0f1eave <lomskoff.dima@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Co-authored-by: viniribeirossa <viniribeirossa@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: James White <james@jmwhite.co.uk>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Zheng Qian <sotux82@gmail.com>
Signed-off-by: masta0f1eave <lomskoff.dima@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Signed-off-by: viniribeirossa <viniribeirossa@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/en/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat/en/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/olsr
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/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/vnstat
2022-06-07 20:29:46 +03:00
Hosted Weblate
d9254563ce
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (English)
Currently translated at 3.2% (2 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/en/
Translated using Weblate (Spanish)
Currently translated at 96.5% (1918 of 1986 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% (1986 of 1986 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Russian)
Currently translated at 86.0% (43 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ru/
Translated using Weblate (Russian)
Currently translated at 44.6% (83 of 186 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% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/ru/
Translated using Weblate (Russian)
Currently translated at 28.3% (32 of 113 strings)
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: James White <james@jmwhite.co.uk>
Co-authored-by: João Paulo da Silva <dasilvaj4@gmail.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: masta0f1eave <lomskoff.dima@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: James White <james@jmwhite.co.uk>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: masta0f1eave <lomskoff.dima@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ru/
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/radicale2
2022-06-04 00:07:01 +03:00
Hosted Weblate
586978b3b8
Translated using Weblate (Polish)
...
Currently translated at 100.0% (25 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (1986 of 1986 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Hungarian)
Currently translated at 96.0% (48 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/hu/
Translated using Weblate (Polish)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/pl/
Translated using Weblate (Italian)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/it/
Translated using Weblate (Italian)
Currently translated at 13.2% (15 of 113 strings)
Translated using Weblate (Ukrainian)
Currently translated at 96.8% (1922 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Italian)
Currently translated at 48.8% (970 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Danish)
Currently translated at 10.0% (8 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/da/
Translated using Weblate (Danish)
Currently translated at 9.4% (11 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (1985 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (1985 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Polish)
Currently translated at 100.0% (16 of 16 strings)
Translated using Weblate (Persian)
Currently translated at 4.1% (3 of 72 strings)
Translated using Weblate (Persian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/fa/
Translated using Weblate (Persian)
Currently translated at 7.5% (16 of 212 strings)
Translated using Weblate (Persian)
Currently translated at 91.8% (45 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/fa/
Translated using Weblate (Persian)
Currently translated at 53.4% (102 of 191 strings)
Translated using Weblate (Persian)
Currently translated at 18.0% (11 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/fa/
Translated using Weblate (Persian)
Currently translated at 9.4% (20 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/fa/
Translated using Weblate (Russian)
Currently translated at 100.0% (1985 of 1985 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% (1985 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Spanish)
Currently translated at 96.3% (1913 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Added translation using Weblate (Persian)
Added translation using Weblate (Persian)
Added translation using Weblate (Persian)
Translated using Weblate (Romanian)
Currently translated at 98.0% (1947 of 1985 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% (1985 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1985 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
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 (Spanish)
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/es/
Translated using Weblate (Russian)
Currently translated at 40.7% (86 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ru/
Translated using Weblate (Russian)
Currently translated at 38.7% (12 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/ru/
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 (Russian)
Currently translated at 43.5% (85 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Russian)
Currently translated at 26.5% (30 of 113 strings)
Translated using Weblate (Russian)
Currently translated at 97.9% (1945 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Polish)
Currently translated at 100.0% (1985 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Spanish)
Currently translated at 96.3% (1913 of 1985 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: Alexey Dobrovolsky <dobrovolskiy.alexey@gmail.com>
Co-authored-by: Amir Mahdi ajoodani <amir.ajoodani@gmail.com>
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Carlo Alberto Ferraris <cafxx@strayorange.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: KinteLiX <superh552@gmail.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Mc Giver <mcgivergim@gmail.com>
Co-authored-by: Vladdrako <vladdrako007@gmail.com>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: 王攀 <41330784@qq.com>
Signed-off-by: Alexey Dobrovolsky <dobrovolskiy.alexey@gmail.com>
Signed-off-by: Amir Mahdi ajoodani <amir.ajoodani@gmail.com>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Carlo Alberto Ferraris <cafxx@strayorange.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: KinteLiX <superh552@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Mc Giver <mcgivergim@gmail.com>
Signed-off-by: Vladdrako <vladdrako007@gmail.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: 王攀 <41330784@qq.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/fa/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/fa/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/fa/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/pl/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/wol
2022-05-24 20:59:01 +03:00
Jo-Philipp Wich
34813ff2b6
luci-mod-network: interfaces.js: remove references to original MAC/MTU
...
Do not show the original values for MAC and MTU in device list tooltips
anymore as the values we read from the netdev might already stem from
overridden config settings.
Since there's no generic way to acquire that information, remove the
potentially confusing information.
Fixes : #5820
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-20 19:41:14 +02:00
Jo-Philipp Wich
d6dbedd9e2
luci-base: ui.js: add required CSS class to dynlist widget
...
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-17 21:48:01 +02:00
Jo-Philipp Wich
9c136c9bea
luci-base: form.js: minor tweaks for mobile styling
...
- Annotate gridsection textvalue cells as CBI.DummyValue widgets
- Replace `<br>` elements with newlines in `stripTags()`
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-17 15:07:48 +02:00
Jo-Philipp Wich
b6ae1d4f4a
luci-base: form.js: trim option description
...
If a whitespace-only description is set on an element, the CSS :empty
selector will not match, causing description icons to be shown when
there's no actual content.
To avoid that, trim the description string when building the element.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-16 16:12:01 +02:00
Jo-Philipp Wich
4e090e38d2
luci-base: luci.js: remove wrong CSS class from page footer
...
The `control-group` class is meant for gapless grouping of inputs with
buttons, while the page actions are just distinct buttons in a row.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-16 16:04:56 +02:00
Jo-Philipp Wich
e4e001b596
luci-base: form.js: remove stray <br>
elements from section placeholder
...
Theme CSS styles shoudl take care of introducing padding as needed.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-16 16:03:14 +02:00
Jo-Philipp Wich
3be479446b
luci-base: form.js: save parent map on opening nested modal map
...
Before opening (rendering) a nested modal map, make sure to save the parent
modal map in order to persist any structural uci changes, such as newly added
anonymous sections to prevent the nested map from operating on stale values
or ephemeral config section IDs.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-16 13:43:09 +02:00
Jo-Philipp Wich
f24606b1ff
luci-base: form.js: handle SectionValue objects in GridSection modals
...
The existing logic for cloning section options into the modal form section
container did not properly handle SectionValue objects. Introduce a new
`cloneOptions()` helper to recursively traverse and properly clowning
such nested sections.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-16 13:40:49 +02:00
Jo-Philipp Wich
0c81e25faa
luci-base: form.js: reset parent maps on returning from nested section modal
...
The nested section modal might have changed values also covered/displayed by
the parent map, so ensure to reload all parent maps in the current modal
view stack to ensure that no stale values are shown on return.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-16 13:39:36 +02:00
Jo-Philipp Wich
818776451d
luci-base: form.js: allow overriding section placeholder of TableSections
...
The existing implementation was hardcoding the empty TableSection placeholder
instead of invoking `renderSectionPlaceholder()` which might be overridden by
various forms.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-16 13:35:18 +02:00
Jo-Philipp Wich
733ee9a7b6
luci-base: ui.js: warn about connectivity loss on changing iface settings
...
If specific settings such as the protocol, IP address or netmask of an
interface the user is connected to are changed, the apply/rollback
mechanism might interfere. Display an additional warning dialog in this
case, instructing the user to manually reconnect and offering to continue
with a less safe unchecked apply mechanism.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-16 13:35:18 +02:00
Hannu Nyman
edb258422c
treewide: Sync translations - i18n
...
Sync translations.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-05-15 20:08:56 +03:00
Hosted Weblate
ac98b7282d
Translated using Weblate (Greek)
...
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Greek)
Currently translated at 3.7% (8 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/el/
Translated using Weblate (Greek)
Currently translated at 6.4% (5 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/el/
Translated using Weblate (Greek)
Currently translated at 13.6% (6 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/el/
Translated using Weblate (Greek)
Currently translated at 8.5% (8 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/el/
Translated using Weblate (Greek)
Currently translated at 13.4% (7 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/el/
Translated using Weblate (Greek)
Currently translated at 4.8% (9 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/el/
Translated using Weblate (Greek)
Currently translated at 16.6% (1 of 6 strings)
Translation: OpenWrt/LuCI/applications/olsr-services
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-services/el/
Translated using Weblate (Greek)
Currently translated at 14.5% (9 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/el/
Translated using Weblate (Greek)
Currently translated at 7.3% (9 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/el/
Translated using Weblate (Greek)
Currently translated at 8.7% (5 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/el/
Translated using Weblate (Greek)
Currently translated at 12.9% (22 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/el/
Translated using Weblate (Greek)
Currently translated at 12.9% (4 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/el/
Translated using Weblate (Greek)
Currently translated at 6.1% (4 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/el/
Translated using Weblate (Greek)
Currently translated at 30.7% (8 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/el/
Translated using Weblate (Greek)
Currently translated at 8.1% (4 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/el/
Translated using Weblate (Greek)
Currently translated at 7.0% (8 of 113 strings)
Translated using Weblate (Greek)
Currently translated at 3.0% (4 of 133 strings)
Translated using Weblate (German)
Currently translated at 96.2% (128 of 133 strings)
Translated using Weblate (Greek)
Currently translated at 5.8% (6 of 102 strings)
Translated using Weblate (Greek)
Currently translated at 12.2% (6 of 49 strings)
Translated using Weblate (Greek)
Currently translated at 17.9% (35 of 195 strings)
Translated using Weblate (Greek)
Currently translated at 17.2% (33 of 191 strings)
Translated using Weblate (Greek)
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (German)
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Greek)
Currently translated at 18.1% (6 of 33 strings)
Translated using Weblate (Greek)
Currently translated at 100.0% (14 of 14 strings)
Translated using Weblate (Greek)
Currently translated at 13.1% (45 of 343 strings)
Translated using Weblate (German)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Greek)
Currently translated at 10.9% (9 of 82 strings)
Translated using Weblate (Greek)
Currently translated at 26.9% (524 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/el/
Translated using Weblate (Polish)
Currently translated at 100.0% (65 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/pl/
Translated using Weblate (Russian)
Currently translated at 100.0% (49 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ru/
Translated using Weblate (Polish)
Currently translated at 100.0% (196 of 196 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% (343 of 343 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Polish)
Currently translated at 100.0% (1944 of 1944 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% (186 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (186 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Spanish)
Currently translated at 97.0% (1886 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: Darin Avdeyeva <yulyablack@inbox.lv>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: MarioK239 <marios.k239@gmail.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Mc Giver <mcgivergim@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Co-authored-by: В. Икогнитто <vmk1981rus@gmail.com>
Signed-off-by: Darin Avdeyeva <yulyablack@inbox.lv>
Signed-off-by: MarioK239 <marios.k239@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Mc Giver <mcgivergim@gmail.com>
Signed-off-by: В. Икогнитто <vmk1981rus@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/el/
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/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
2022-05-15 20:06:04 +03:00
Hosted Weblate
4e768e565b
Translated using Weblate (Polish)
...
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pl/
Translated using Weblate (Romanian)
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (1944 of 1944 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% (1944 of 1944 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% (196 of 196 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% (58 of 58 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (34 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Czech)
Currently translated at 72.3% (1407 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (Russian)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Persian)
Currently translated at 100.0% (3 of 3 strings)
Translated using Weblate (Danish)
Currently translated at 15.8% (13 of 82 strings)
Translated using Weblate (Danish)
Currently translated at 42.5% (83 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 13.8% (9 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/da/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Russian)
Currently translated at 42.5% (83 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ru/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (123 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Danish)
Currently translated at 35.8% (70 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/da/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hans/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hans/
Translated using Weblate (Spanish)
Currently translated at 93.7% (15 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/es/
Translated using Weblate (Spanish)
Currently translated at 97.0% (1886 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: Alexey Dobrovolsky <dobrovolskiy.alexey@gmail.com>
Co-authored-by: Amir Mahdi ajoodani <amir.ajoodani@gmail.com>
Co-authored-by: Ashus <weblate.org@ashus.net>
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
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: Mc Giver <mcgivergim@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: 王攀 <41330784@qq.com>
Signed-off-by: Alexey Dobrovolsky <dobrovolskiy.alexey@gmail.com>
Signed-off-by: Ashus <weblate.org@ashus.net>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Mc Giver <mcgivergim@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: 王攀 <41330784@qq.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-battstatus/fa/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/zh_Hant/
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/polipo
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/modules/luci-mod-battstatus
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-05-10 22:17:24 +03:00
Florian Eckert
ef73f2271c
Merge pull request #5801 from odmdas/sysntpd-iface
...
luci-mod-system: add interface selection for NTPD
2022-05-06 16:23:38 +02:00
Jo-Philipp Wich
8583efb5a9
luci-base: ui.js: make "Apply unchecked" available from the changes dialog
...
Previously, "Apply unchecked" was only possible from the save action of CBI
maps, allow to invoke it from the configuration change dialog as well.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-06 13:42:55 +02:00
Jo-Philipp Wich
b6797821b8
luci-base: ui.js: gracefully handle failing confirm calls on rollback
...
Do not abort the poll loop if some confirm request attempts fail, which
might happen when the device starts rolling back its configuration.
Before that fix, the rollback information dialog offering an unchecked
apply was not reliably presented in such situations.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-06 13:42:54 +02:00
Jo-Philipp Wich
f2fa59e89a
luci-base: form.js: rework stacked modal CBI map logic
...
Only stack a new modal CBI map on top of the currently displayed modal one
if the related map or section differs. This prevents misbehavior when
switching the protocol of interfaces.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-06 13:42:54 +02:00
Alexey Dobrovolsky
24ac5a2bf6
luci-mod-system: add interface selection for NTPD
...
UCI option `interface` for sysntpd server was introduced in
OpenWrt commit 4da60500ebd2. NTP server binds to the specified interface,
or if unspecified, to all.
This patch adds selection widget to LuCI.
Signed-off-by: Alexey Dobrovolsky <dobrovolskiy.alexey@gmail.com>
2022-05-06 00:08:18 +03:00
Hosted Weblate
f00d8b20b5
Translated using Weblate (Spanish)
...
Currently translated at 93.8% (46 of 49 strings)
Translated using Weblate (Greek)
Currently translated at 100.0% (3 of 3 strings)
Translated using Weblate (Greek)
Currently translated at 5.8% (1 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/el/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (211 of 211 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% (52 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (62 of 62 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% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (65 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (133 of 133 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Translated using Weblate (Spanish)
Currently translated at 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (12 of 12 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/es/
Translated using Weblate (Spanish)
Currently translated at 97.0% (1886 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Danish)
Currently translated at 22.3% (21 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/da/
Translated using Weblate (Danish)
Currently translated at 18.2% (31 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/da/
Translated using Weblate (Danish)
Currently translated at 18.3% (36 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/da/
Translated using Weblate (German)
Currently translated at 29.8% (31 of 104 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/de/
Translated using Weblate (Romanian)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Spanish)
Currently translated at 97.0% (1886 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
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: Mc Giver <mcgivergim@gmail.com>
Co-authored-by: Oğuz Ersen <oguz@ersen.moe>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: nekkidtruth <nekkid@gmail.com>
Co-authored-by: semih <semiht@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Mc Giver <mcgivergim@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: nekkidtruth <nekkid@gmail.com>
Signed-off-by: semih <semiht@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-battstatus/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/es/
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/modules/luci-mod-battstatus
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-05-05 21:15:46 +03:00
Jo-Philipp Wich
111c551cdb
luci-base: fix DSL feature detection
...
On boards with ADSL instead of VDSL support we need to expect an
`/sbin/dsl_cpe_control` instead of an `/sbin/vdsl_cpe_control` executable.
Ref: https://forum.openwrt.org/t/dsl-line-stats/126580
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-05-03 14:55:00 +02:00
Hosted Weblate
b9cb143be3
Translated using Weblate (German)
...
Currently translated at 28.8% (30 of 104 strings)
Translation: OpenWrt/LuCI/applications/smartdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssmartdns/de/
Translated using Weblate (German)
Currently translated at 95.4% (127 of 133 strings)
Translated using Weblate (German)
Currently translated at 94.3% (199 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (German)
Currently translated at 96.1% (50 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/de/
Translated using Weblate (German)
Currently translated at 98.7% (79 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/de/
Translated using Weblate (German)
Currently translated at 100.0% (49 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/de/
Translated using Weblate (German)
Currently translated at 99.4% (167 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/de/
Translated using Weblate (German)
Currently translated at 65.8% (112 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/de/
Translated using Weblate (German)
Currently translated at 99.1% (115 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/de/
Translated using Weblate (German)
Currently translated at 99.1% (112 of 113 strings)
Translated using Weblate (German)
Currently translated at 88.7% (118 of 133 strings)
Translated using Weblate (German)
Currently translated at 99.0% (101 of 102 strings)
Translated using Weblate (German)
Currently translated at 12.5% (4 of 32 strings)
Translated using Weblate (German)
Currently translated at 89.4% (1739 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (German)
Currently translated at 18.4% (39 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (Spanish)
Currently translated at 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (German)
Currently translated at 89.5% (1740 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (Spanish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/es/
Translated using Weblate (German)
Currently translated at 92.5% (87 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/de/
Translated using Weblate (German)
Currently translated at 62.9% (117 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/de/
Translated using Weblate (German)
Currently translated at 94.8% (37 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/de/
Translated using Weblate (Spanish)
Currently translated at 95.8% (163 of 170 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% (123 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/es/
Translated using Weblate (Spanish)
Currently translated at 97.0% (1886 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Swedish)
Currently translated at 75.0% (12 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/sv/
Translated using Weblate (German)
Currently translated at 100.0% (72 of 72 strings)
Translation: OpenWrt/LuCI/applications/xinetd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsxinetd/de/
Translated using Weblate (German)
Currently translated at 98.0% (51 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/de/
Translated using Weblate (German)
Currently translated at 88.2% (165 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/de/
Translated using Weblate (German)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/de/
Translated using Weblate (German)
Currently translated at 99.4% (194 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/de/
Translated using Weblate (Swedish)
Currently translated at 51.7% (15 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/sv/
Translated using Weblate (Swedish)
Currently translated at 28.4% (53 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/sv/
Translated using Weblate (Swedish)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/sv/
Translated using Weblate (Swedish)
Currently translated at 92.1% (35 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/sv/
Translated using Weblate (German)
Currently translated at 99.1% (340 of 343 strings)
Translated using Weblate (German)
Currently translated at 89.5% (1740 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (German)
Currently translated at 89.2% (306 of 343 strings)
Translated using Weblate (Indonesian)
Currently translated at 100.0% (50 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/id/
Translated using Weblate (Portuguese)
Currently translated at 97.9% (48 of 49 strings)
Translated using Weblate (German)
Currently translated at 95.9% (47 of 49 strings)
Translated using Weblate (Indonesian)
Currently translated at 100.0% (61 of 61 strings)
Translated using Weblate (Indonesian)
Currently translated at 22.1% (47 of 212 strings)
Translated using Weblate (German)
Currently translated at 17.5% (37 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (German)
Currently translated at 17.5% (37 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/de/
Translated using Weblate (Swedish)
Currently translated at 24.4% (23 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/sv/
Translated using Weblate (German)
Currently translated at 50.0% (47 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/de/
Translated using Weblate (Swedish)
Currently translated at 85.5% (95 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/sv/
Translated using Weblate (German)
Currently translated at 32.4% (36 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/de/
Translated using Weblate (German)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/omcproxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsomcproxy/de/
Translated using Weblate (German)
Currently translated at 86.0% (161 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/de/
Translated using Weblate (German)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/de/
Translated using Weblate (German)
Currently translated at 98.7% (79 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/de/
Translated using Weblate (German)
Currently translated at 99.4% (194 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/de/
Translated using Weblate (German)
Currently translated at 98.3% (60 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/de/
Translated using Weblate (Swedish)
Currently translated at 44.8% (13 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/sv/
Translated using Weblate (German)
Currently translated at 96.5% (28 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/de/
Translated using Weblate (Swedish)
Currently translated at 100.0% (40 of 40 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/sv/
Translated using Weblate (Swedish)
Currently translated at 56.4% (61 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/sv/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/pt/
Translated using Weblate (German)
Currently translated at 95.4% (42 of 44 strings)
Translated using Weblate (German)
Currently translated at 100.0% (191 of 191 strings)
Translated using Weblate (Swedish)
Currently translated at 39.7% (772 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 38.8% (756 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/nb_NO/
Translated using Weblate (German)
Currently translated at 89.4% (1738 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Added translation using Weblate (Persian)
Translated using Weblate (Swedish)
Currently translated at 38.8% (756 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Portuguese)
Currently translated at 96.1% (1870 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Finnish)
Currently translated at 84.8% (28 of 33 strings)
Translated using Weblate (Finnish)
Currently translated at 88.0% (22 of 25 strings)
Translation: OpenWrt/LuCI/applications/cshark
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscshark/fi/
Translated using Weblate (Finnish)
Currently translated at 70.8% (17 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/fi/
Translated using Weblate (Finnish)
Currently translated at 28.8% (15 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/fi/
Translated using Weblate (Finnish)
Currently translated at 87.9% (1709 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
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 (Portuguese)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt/
Translated using Weblate (Portuguese)
Currently translated at 94.6% (1840 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Co-authored-by: Allan Nordhøy <epost@anotheragency.no>
Co-authored-by: Arief Hidayat <kekesed97@gmail.com>
Co-authored-by: Christoph Loesch <github-mail@chil.at>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Co-authored-by: Mc Giver <mcgivergim@gmail.com>
Co-authored-by: Meh nomanda <mehdblockchain@gmail.com>
Co-authored-by: croghostrider <cro.ghost.rider@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Allan Nordhøy <epost@anotheragency.no>
Signed-off-by: Arief Hidayat <kekesed97@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: Mc Giver <mcgivergim@gmail.com>
Signed-off-by: croghostrider <cro.ghost.rider@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/id/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/id/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-04-29 19:06:54 +03:00
Jo-Philipp Wich
531c0ecff2
luci-base: sys.lua: fix parsing conntrack entries without timeout
...
Flow offloaded conntrack entries carry no timeout value and trip up the
record parsing routine. Adjust the code to properly deal with such entries.
Ref: https://forum.openwrt.org/t/offloading-breaks-connections-list/126423
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-04-29 12:18:17 +02:00
Jo-Philipp Wich
180d39dcd2
luci-base: ui: resolve aliases and rewrites on obtaining menu node children
...
Extend LuCI.ui.menu.getChildren() to resolve aliases and rewrites prior to
returning the menu nodes. This allows aliasing entire menu trees instead of
just single pages.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-04-28 16:06:25 +02:00
Jo-Philipp Wich
904c174caf
luci-mod-network: routes: allow prefixes as route source
...
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-04-28 12:08:37 +02:00
Jo-Philipp Wich
c2eb30bba7
luci-mod-system: enforce availability of english as language choice
...
Always offer english, regardless of whether a dummy language pack for it
is installed or not.
Fixes : #5783
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-04-27 20:54:58 +02:00
Jo-Philipp Wich
1ae142d7d1
luci-mod-network: diagnostics: peg max traceroute hops to rpc timeout
...
In the worst case, traceroute might take up to 30s to complete when tracing
a completely unreachable path, due to the default limit of 30 hops multiplied
by the per-hop deadline of 1 second (-w 1).
Limit the maximum amount of hops to the configured rpc execution timeout,
20 second by default, in order to avoid running into timed out rpc requests.
Fixes : #5782
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-04-27 20:43:05 +02:00
Jo-Philipp Wich
2f80fe3767
luci-mod-status: hide iptables firewall status when nft is present
...
Do not expose the iptables status page as menu item when nftables is present
on the system. Instead add a warning banner to the nftables status page
directing the user to the hidden iptables status page when we encounter
legacy rules on the system.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-04-27 13:19:48 +02:00
Jo-Philipp Wich
2e4b5fb8ff
luci-base: dispatcher.lua: support "absent" fs dependency for menu nodes
...
The "absent" dependency type requires the given path to not exist on the
local system for the condition to be satisified. This is useful to disable
menu nodes depending on the presence of specific files.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-04-27 13:19:23 +02:00
Jo-Philipp Wich
bd739c7abc
Merge pull request #5718 from ptpt52/fix-switch
...
luci-mod-network: switch: Fix multi instances handling
2022-04-27 12:47:26 +02:00
Chen Minqiang
d65c5e6496
luci-mod-network: switch: Fix multi instances handling
...
Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
2022-04-27 18:36:33 +08:00
Jo-Philipp Wich
f04011f068
luci-mod-network: avoid needlessly writing none
RA flags
...
Fixes : #5725
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-04-27 12:19:13 +02:00
Jo-Philipp Wich
f2f7e0c1f7
luci-mod-status: nftables: add translations for further expression kinds
...
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-04-27 12:19:13 +02:00
Hosted Weblate
95ab04aa65
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (58 of 58 strings)
Translated using Weblate (Finnish)
Currently translated at 59.4% (22 of 37 strings)
Translated using Weblate (Finnish)
Currently translated at 87.7% (1705 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hans/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Chinese (Traditional))
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))
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))
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))
Currently translated at 100.0% (23 of 23 strings)
Translated using Weblate (Finnish)
Currently translated at 32.6% (15 of 46 strings)
Translated using Weblate (Finnish)
Currently translated at 31.7% (39 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/fi/
Translated using Weblate (Finnish)
Currently translated at 27.8% (17 of 61 strings)
Translated using Weblate (Finnish)
Currently translated at 54.5% (18 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/fi/
Translated using Weblate (Finnish)
Currently translated at 70.4% (43 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/fi/
Translated using Weblate (Finnish)
Currently translated at 53.0% (26 of 49 strings)
Translated using Weblate (Finnish)
Currently translated at 60.0% (15 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/fi/
Translated using Weblate (Finnish)
Currently translated at 35.4% (11 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/fi/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Hindi)
Currently translated at 100.0% (125 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/hi/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (1944 of 1944 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% (57 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/uk/
Translated using Weblate (Portuguese)
Currently translated at 78.6% (48 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt/
Translated using Weblate (Ukrainian)
Currently translated at 21.7% (5 of 23 strings)
Translated using Weblate (Ukrainian)
Currently translated at 85.9% (49 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/uk/
Translated using Weblate (Ukrainian)
Currently translated at 59.3% (79 of 133 strings)
Translated using Weblate (Ukrainian)
Currently translated at 35.6% (68 of 191 strings)
Translated using Weblate (Ukrainian)
Currently translated at 98.7% (1919 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Persian)
Currently translated at 3.3% (7 of 212 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (50 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/uk/
Translated using Weblate (Russian)
Currently translated at 82.0% (41 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ru/
Translated using Weblate (Ukrainian)
Currently translated at 32.0% (16 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/uk/
Translated using Weblate (Ukrainian)
Currently translated at 27.4% (17 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/uk/
Translated using Weblate (Ukrainian)
Currently translated at 85.0% (153 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 17.5% (37 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Ukrainian)
Currently translated at 22.3% (21 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/uk/
Translated using Weblate (Ukrainian)
Currently translated at 24.3% (27 of 111 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 27.5% (8 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/uk/
Translated using Weblate (Ukrainian)
Currently translated at 18.1% (34 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Ukrainian)
Currently translated at 39.6% (46 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/uk/
Translated using Weblate (Ukrainian)
Currently translated at 22.5% (44 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 79.4% (143 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 79.4% (143 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 28.0% (55 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 98.7% (1920 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 17.6% (33 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (German)
Currently translated at 86.0% (161 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/de/
Translated using Weblate (Ukrainian)
Currently translated at 16.9% (33 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 61.6% (111 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (German)
Currently translated at 66.4% (113 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/de/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1944 of 1944 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 98.7% (1920 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hulen <shift0106@gmail.com>
Co-authored-by: James Braves <dubavy@zetmail.com>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: Vitaly SymbX <symbx.live@gmail.com>
Co-authored-by: Vladdrako <vladdrako007@gmail.com>
Co-authored-by: bkaskar <roypbc@yahoo.com>
Co-authored-by: ssantos <ssantos@web.de>
Co-authored-by: ziaei <ziaei@mail.ir>
Co-authored-by: 王攀 <41330784@qq.com>
Signed-off-by: Hulen <shift0106@gmail.com>
Signed-off-by: James Braves <dubavy@zetmail.com>
Signed-off-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Signed-off-by: Vitaly SymbX <symbx.live@gmail.com>
Signed-off-by: Vladdrako <vladdrako007@gmail.com>
Signed-off-by: bkaskar <roypbc@yahoo.com>
Signed-off-by: ssantos <ssantos@web.de>
Signed-off-by: 王攀 <41330784@qq.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/fa/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/fi/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/polipo
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
2022-04-22 20:36:57 +03:00
Hosted Weblate
89c3cb878f
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 23.0% (18 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/uk/
Translated using Weblate (Ukrainian)
Currently translated at 22.3% (21 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/uk/
Translated using Weblate (Ukrainian)
Currently translated at 23.4% (26 of 111 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 40.3% (21 of 52 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% (34 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/uk/
Translated using Weblate (Ukrainian)
Currently translated at 27.5% (8 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/uk/
Translated using Weblate (Ukrainian)
Currently translated at 7.5% (14 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/uk/
Translated using Weblate (Ukrainian)
Currently translated at 16.5% (31 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Ukrainian)
Currently translated at 18.5% (20 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 38.4% (10 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% (12 of 12 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/uk/
Translated using Weblate (Ukrainian)
Currently translated at 14.3% (28 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 46.6% (84 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hans/
Translated using Weblate (Ukrainian)
Currently translated at 16.8% (19 of 113 strings)
Translated using Weblate (Ukrainian)
Currently translated at 59.3% (79 of 133 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Ukrainian)
Currently translated at 16.4% (32 of 195 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Ukrainian)
Currently translated at 19.2% (66 of 343 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Ukrainian)
Currently translated at 98.7% (1920 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 7.5% (14 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/uk/
Translated using Weblate (Ukrainian)
Currently translated at 27.0% (36 of 133 strings)
Translated using Weblate (Ukrainian)
Currently translated at 98.7% (1920 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (65 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (25 of 25 strings)
Translation: OpenWrt/LuCI/applications/cshark
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscshark/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (123 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (133 of 133 strings)
Translated using Weblate (Chinese (Traditional))
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))
Currently translated at 100.0% (116 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/zh_Hant/
Translated using Weblate (Chinese (Traditional))
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))
Currently translated at 100.0% (23 of 23 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Ukrainian)
Currently translated at 17.5% (37 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (50 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/zh_Hant/
Translated using Weblate (Ukrainian)
Currently translated at 21.7% (17 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/uk/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/zh_Hant/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hans/
Translated using Weblate (Ukrainian)
Currently translated at 16.5% (31 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Ukrainian)
Currently translated at 14.0% (8 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/uk/
Translated using Weblate (Ukrainian)
Currently translated at 38.4% (10 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/uk/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/zh_Hant/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (195 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hans/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Ukrainian)
Currently translated at 11.2% (15 of 133 strings)
Translated using Weblate (Ukrainian)
Currently translated at 16.4% (32 of 195 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (191 of 191 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Ukrainian)
Currently translated at 19.2% (66 of 343 strings)
Translated using Weblate (Ukrainian)
Currently translated at 23.1% (19 of 82 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1944 of 1944 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 98.8% (1922 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Ukrainian)
Currently translated at 84.5% (1644 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Russian)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 96.7% (30 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/zh_Hant/
Translated using Weblate (Chinese (Traditional))
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))
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 (Ukrainian)
Currently translated at 16.1% (5 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/uk/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hant/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/uk/
Translated using Weblate (Ukrainian)
Currently translated at 15.5% (29 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/uk/
Translated using Weblate (Ukrainian)
Currently translated at 18.5% (20 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/uk/
Translated using Weblate (Ukrainian)
Currently translated at 14.3% (28 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/uk/
Translated using Weblate (Ukrainian)
Currently translated at 46.6% (84 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/uk/
Translated using Weblate (Italian)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/it/
Translated using Weblate (Italian)
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/it/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hans/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (187 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Italian)
Currently translated at 97.7% (43 of 44 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (32 of 32 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 92.0% (1790 of 1944 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 79.7% (1550 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Co-authored-by: G R <gradaellig@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Vladdrako <vladdrako007@gmail.com>
Co-authored-by: 王攀 <41330784@qq.com>
Signed-off-by: G R <gradaellig@gmail.com>
Signed-off-by: Vladdrako <vladdrako007@gmail.com>
Signed-off-by: 王攀 <41330784@qq.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/uk/
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/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/uk/
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/luciapplicationswatchcat/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/zh_Hant/
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/openvpn
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/rp-pppoe-server
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-04-18 19:54:58 +03:00
Hosted Weblate
eb8949ec89
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (61 of 61 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 89.5% (1740 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Russian)
Currently translated at 42.0% (82 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ru/
Translated using Weblate (Spanish)
Currently translated at 95.7% (1862 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Romanian)
Currently translated at 96.9% (32 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Turkish)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/tr/
Translated using Weblate (Japanese)
Currently translated at 32.7% (20 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ja/
Translated using Weblate (Turkish)
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Turkish)
Currently translated at 94.8% (1844 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kensei Sakai <s.kensei.c.556@gmail.com>
Co-authored-by: Mustafa Volkan Vurulkan <mustafa.vurulkan@gmail.com>
Co-authored-by: TheXAHTEP <ivuckov2010@ya.ru>
Co-authored-by: 王攀 <41330784@qq.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Kensei Sakai <s.kensei.c.556@gmail.com>
Signed-off-by: Mustafa Volkan Vurulkan <mustafa.vurulkan@gmail.com>
Signed-off-by: TheXAHTEP <ivuckov2010@ya.ru>
Signed-off-by: 王攀 <41330784@qq.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/zh_Hant/
Translation: OpenWrt/LuCI/applications/radicale2
2022-04-14 13:40:50 +03:00
Florian Eckert
b6fb2b1697
luci-mod-system: Set description to blank if the trigger has none
...
In this case the cbi description div will not be generated and when
switching to another trigger later, attempts to change the description
div contents will fail.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-04-12 14:14:27 +02:00
Florian Eckert
2135525b72
Revert "luci-mod-system: Set description to blank if the trigger has none"
...
This reverts commit 3de5446003
.
I have unfortunately edited the wrong line!
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-04-12 14:12:04 +02:00
Florian Eckert
5abb2847ba
luci-mod-system: mount sections are always mounted unless they are explicitly not mounted
...
fixes #4862
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-04-12 13:01:17 +02:00
Florian Eckert
3de5446003
luci-mod-system: Set description to blank if the trigger has none
...
In this case the cbi description div will not be generated and when
switching to another trigger later, attempts to change the description
div contents will fail.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-04-12 10:05:36 +02:00
Hosted Weblate
3ea1d08df8
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (65 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (195 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/es/
Translated using Weblate (Spanish)
Currently translated at 95.8% (1863 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Portuguese)
Currently translated at 96.9% (32 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/pt/
Translated using Weblate (German)
Currently translated at 88.2% (15 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/de/
Translated using Weblate (Spanish)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/es/
Translated using Weblate (Polish)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Spanish)
Currently translated at 92.9% (1807 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Lanchon <lanchon@gmail.com>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Lanchon <lanchon@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
2022-04-07 21:38:44 +03:00
Jo-Philipp Wich
7110635134
luci-base: ucitrack: fix broken affects logic
...
Changes on a given configuration should trigger change events on affected
configurations, not the other way around.
Fixes : #5745
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-03-30 14:12:38 +02:00
Hosted Weblate
db2ae35988
Translated using Weblate (Finnish)
...
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/fi/
Translated using Weblate (Finnish)
Currently translated at 100.0% (40 of 40 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/fi/
Translated using Weblate (Finnish)
Currently translated at 87.6% (1704 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (German)
Currently translated at 96.9% (32 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/de/
Translated using Weblate (Chinese (Traditional))
Currently translated at 60.6% (37 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hant/
Translated using Weblate (German)
Currently translated at 87.8% (29 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/de/
Translated using Weblate (Indonesian)
Currently translated at 22.1% (47 of 212 strings)
Translated using Weblate (Korean)
Currently translated at 30.3% (590 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Danish)
Currently translated at 17.0% (16 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/da/
Translated using Weblate (Danish)
Currently translated at 4.7% (8 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/da/
Translated using Weblate (Danish)
Currently translated at 56.4% (61 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/da/
Translated using Weblate (Danish)
Currently translated at 30.2% (59 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/da/
Translated using Weblate (Korean)
Currently translated at 34.1% (72 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ko/
Translated using Weblate (Finnish)
Currently translated at 87.6% (1704 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (Korean)
Currently translated at 2.2% (1 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ko/
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 (Korean)
Currently translated at 7.6% (4 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ko/
Translated using Weblate (Korean)
Currently translated at 11.1% (12 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ko/
Translated using Weblate (Korean)
Currently translated at 7.5% (6 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ko/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/pt/
Translated using Weblate (Korean)
Currently translated at 2.5% (3 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ko/
Translated using Weblate (German)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/pagekitec
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspagekitec/de/
Translated using Weblate (Korean)
Currently translated at 4.8% (6 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ko/
Translated using Weblate (Korean)
Currently translated at 5.2% (9 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ko/
Translated using Weblate (Korean)
Currently translated at 4.0% (8 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ko/
Translated using Weblate (Korean)
Currently translated at 6.1% (3 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ko/
Translated using Weblate (Korean)
Currently translated at 3.5% (6 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ko/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/pt_BR/
Translated using Weblate (Korean)
Currently translated at 2.9% (3 of 102 strings)
Translated using Weblate (Korean)
Currently translated at 3.4% (12 of 343 strings)
Translated using Weblate (Korean)
Currently translated at 3.6% (3 of 82 strings)
Translated using Weblate (Korean)
Currently translated at 1.7% (2 of 113 strings)
Translated using Weblate (Korean)
Currently translated at 6.6% (13 of 195 strings)
Translated using Weblate (Korean)
Currently translated at 1.5% (2 of 133 strings)
Translated using Weblate (Korean)
Currently translated at 0.0% (0 of 44 strings)
Translated using Weblate (Finnish)
Currently translated at 87.6% (1704 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (Korean)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/ko/
Translated using Weblate (Korean)
Currently translated at 8.3% (2 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ko/
Translated using Weblate (Korean)
Currently translated at 7.6% (2 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/ko/
Translated using Weblate (Korean)
Currently translated at 10.2% (5 of 49 strings)
Translated using Weblate (Korean)
Currently translated at 2.6% (9 of 343 strings)
Translated using Weblate (Korean)
Currently translated at 2.4% (2 of 82 strings)
Translated using Weblate (Korean)
Currently translated at 12.0% (3 of 25 strings)
Translated using Weblate (Korean)
Currently translated at 6.1% (12 of 195 strings)
Translated using Weblate (Korean)
Currently translated at 8.6% (4 of 46 strings)
Translated using Weblate (Korean)
Currently translated at 100.0% (16 of 16 strings)
Translated using Weblate (Korean)
Currently translated at 6.2% (1 of 16 strings)
Translated using Weblate (Korean)
Currently translated at 18.0% (38 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ko/
Translated using Weblate (Korean)
Currently translated at 5.7% (3 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ko/
Translated using Weblate (Korean)
Currently translated at 10.1% (11 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ko/
Translated using Weblate (Korean)
Currently translated at 1.7% (2 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ko/
Translated using Weblate (Korean)
Currently translated at 4.7% (8 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ko/
Translated using Weblate (Korean)
Currently translated at 3.5% (7 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ko/
Translated using Weblate (Korean)
Currently translated at 2.9% (5 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ko/
Translated using Weblate (Korean)
Currently translated at 0.9% (1 of 102 strings)
Translated using Weblate (Korean)
Currently translated at 8.0% (2 of 25 strings)
Translated using Weblate (Korean)
Currently translated at 36.0% (9 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/ko/
Translated using Weblate (Korean)
Currently translated at 6.4% (4 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ko/
Translated using Weblate (Korean)
Currently translated at 40.5% (15 of 37 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (33 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/pl/
Translated using Weblate (Vietnamese)
Currently translated at 6.0% (2 of 33 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/vi/
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 (Polish)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/pl/
Translated using Weblate (Turkish)
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/tr/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (80 of 80 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/zh_Hans/
Translated using Weblate (Vietnamese)
Currently translated at 96.0% (24 of 25 strings)
Co-authored-by: Arief Hidayat <kekesed97@gmail.com>
Co-authored-by: Barlos Lee <barlos.lee@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jeffeditae <nguyenvoanhson75@gmail.com>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Oğuz Ersen <oguz@ersen.moe>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: dikastia <dikastia@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Barlos Lee <barlos.lee@gmail.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Jeffeditae <nguyenvoanhson75@gmail.com>
Signed-off-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Oğuz Ersen <oguz@ersen.moe>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: dikastia <dikastia@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/id/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/vi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ko/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat/ko/
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/radicale2
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/vnstat
2022-03-29 21:10:57 +03:00
Max S Kash
8a46648e5b
luci-mod-status,mod-network: Added fqdn-name to DHCPv4 lease table
...
Added code to display fcdn-name in DHCPv4 lease table.
(based on code in DHCPv6 lease table)
Signed-off-by: Max S Kash <asukms@ya.ru>
Indentation adjused and wrapped commit message
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2022-03-28 09:52:05 +02:00
Hannu Nyman
d9ffe11985
treewide: sync translations
...
Sync translations.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-03-26 08:44:49 +02:00
Hosted Weblate
781b895f53
Translated using Weblate (Finnish)
...
Currently translated at 14.8% (11 of 74 strings)
Translated using Weblate (Finnish)
Currently translated at 10.2% (8 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/fi/
Translated using Weblate (Finnish)
Currently translated at 81.8% (27 of 33 strings)
Translated using Weblate (Finnish)
Currently translated at 10.6% (7 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/fi/
Translated using Weblate (Finnish)
Currently translated at 66.0% (33 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/fi/
Translated using Weblate (Finnish)
Currently translated at 91.1% (31 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/fi/
Translated using Weblate (Finnish)
Currently translated at 87.6% (1704 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (Greek)
Currently translated at 2.8% (6 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/el/
Translated using Weblate (Finnish)
Currently translated at 30.8% (38 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/fi/
Translated using Weblate (Finnish)
Currently translated at 53.8% (14 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/fi/
Translated using Weblate (Finnish)
Currently translated at 86.9% (1691 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (German)
Currently translated at 100.0% (50 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/de/
Translated using Weblate (Greek)
Currently translated at 4.5% (3 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/el/
Translated using Weblate (Greek)
Currently translated at 3.8% (3 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/el/
Translated using Weblate (Greek)
Currently translated at 11.3% (5 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/el/
Translated using Weblate (Greek)
Currently translated at 9.6% (3 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/el/
Translated using Weblate (Greek)
Currently translated at 7.4% (7 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/el/
Translated using Weblate (Greek)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/el/
Translated using Weblate (Greek)
Currently translated at 3.2% (6 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/el/
Translated using Weblate (Greek)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/el/
Translated using Weblate (Greek)
Currently translated at 12.9% (8 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/el/
Translated using Weblate (Greek)
Currently translated at 5.2% (3 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/el/
Translated using Weblate (Greek)
Currently translated at 11.1% (19 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/el/
Translated using Weblate (Greek)
Currently translated at 1.5% (3 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/el/
Translated using Weblate (Greek)
Currently translated at 4.9% (3 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/el/
Translated using Weblate (Greek)
Currently translated at 16.0% (27 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/el/
Translated using Weblate (Greek)
Currently translated at 10.0% (18 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/el/
Translated using Weblate (Greek)
Currently translated at 6.1% (7 of 113 strings)
Translated using Weblate (Greek)
Currently translated at 10.2% (5 of 49 strings)
Translated using Weblate (Greek)
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Greek)
Currently translated at 100.0% (11 of 11 strings)
Translated using Weblate (Greek)
Currently translated at 12.8% (44 of 343 strings)
Translated using Weblate (Greek)
Currently translated at 10.9% (9 of 82 strings)
Translated using Weblate (Greek)
Currently translated at 13.7% (8 of 58 strings)
Translated using Weblate (Greek)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Greek)
Currently translated at 26.1% (508 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/el/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: MarioK239 <marios.k239@gmail.com>
Co-authored-by: asdf-tw <wibi.tomw91@live.at>
Signed-off-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Signed-off-by: MarioK239 <marios.k239@gmail.com>
Signed-off-by: asdf-tw <wibi.tomw91@live.at>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/el/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/polipo
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/upnp
2022-03-26 08:42:03 +02:00
Hannu Nyman
15bbe6979b
timezone data: update to 2022a
...
Update timezone data to 2022a.
http://mm.icann.org/pipermail/tz-announce/2022-March/000070.html
* Palestine will spring forward on 2022-03-27, not 2022-03-26.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-03-24 21:09:41 +02:00
Hosted Weblate
fe9aa934ba
Translated using Weblate (Danish)
...
Currently translated at 7.0% (8 of 113 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/da/
Translated using Weblate (Danish)
Currently translated at 17.8% (35 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/da/
Translated using Weblate (Chinese (Traditional))
Currently translated at 89.4% (1741 of 1946 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Co-authored-by: Barlos Lee <barlos.lee@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: Barlos Lee <barlos.lee@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/da/
Translation: OpenWrt/LuCI/applications/radicale2
2022-03-20 23:24:57 +02:00
Hosted Weblate
f27fe280aa
Translated using Weblate (Portuguese)
...
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/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (196 of 196 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% (72 of 72 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (11 of 11 strings)
Translated using Weblate (Portuguese)
Currently translated at 93.7% (1822 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Russian)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Portuguese)
Currently translated at 93.7% (1822 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Finnish)
Currently translated at 21.0% (41 of 195 strings)
Translated using Weblate (Finnish)
Currently translated at 64.4% (116 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fi/
Translated using Weblate (Finnish)
Currently translated at 27.6% (54 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fi/
Translated using Weblate (Finnish)
Currently translated at 62.0% (31 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/fi/
Translated using Weblate (Spanish)
Currently translated at 91.7% (1784 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Finnish)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Finnish)
Currently translated at 100.0% (3 of 3 strings)
Translated using Weblate (Finnish)
Currently translated at 19.4% (41 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/fi/
Translated using Weblate (Finnish)
Currently translated at 14.5% (7 of 48 strings)
Translated using Weblate (Finnish)
Currently translated at 76.4% (26 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/fi/
Translated using Weblate (Finnish)
Currently translated at 13.5% (10 of 74 strings)
Translated using Weblate (Finnish)
Currently translated at 18.1% (8 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/fi/
Translated using Weblate (Finnish)
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/fi/
Translated using Weblate (Finnish)
Currently translated at 22.9% (14 of 61 strings)
Translated using Weblate (Finnish)
Currently translated at 28.5% (38 of 133 strings)
Translated using Weblate (Finnish)
Currently translated at 64.2% (18 of 28 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/fi/
Translated using Weblate (Finnish)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Finnish)
Currently translated at 100.0% (14 of 14 strings)
Translated using Weblate (Finnish)
Currently translated at 14.8% (29 of 195 strings)
Translated using Weblate (Finnish)
Currently translated at 42.8% (21 of 49 strings)
Translated using Weblate (Finnish)
Currently translated at 41.9% (26 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/fi/
Translated using Weblate (Finnish)
Currently translated at 26.3% (15 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/fi/
Translated using Weblate (Finnish)
Currently translated at 15.4% (26 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/fi/
Translated using Weblate (Finnish)
Currently translated at 7.6% (5 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/fi/
Translated using Weblate (Finnish)
Currently translated at 57.2% (103 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fi/
Translated using Weblate (Finnish)
Currently translated at 32.2% (10 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/fi/
Translated using Weblate (Finnish)
Currently translated at 100.0% (18 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/fi/
Translated using Weblate (Finnish)
Currently translated at 86.8% (1688 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Co-authored-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: moonlightz <hugo.simoes.1984@gmail.com>
Signed-off-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Signed-off-by: moonlightz <hugo.simoes.1984@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-battstatus/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt/
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/ntpc
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/modules/luci-mod-battstatus
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-03-16 22:45:00 +02:00
Hosted Weblate
b51bc162d9
Translated using Weblate (Finnish)
...
Currently translated at 12.3% (14 of 113 strings)
Translated using Weblate (Finnish)
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/fi/
Translated using Weblate (Finnish)
Currently translated at 13.7% (16 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/fi/
Translated using Weblate (Finnish)
Currently translated at 8.9% (7 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/fi/
Translated using Weblate (Finnish)
Currently translated at 86.8% (1688 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1946 of 1946 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Finnish)
Currently translated at 18.4% (39 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/fi/
Translated using Weblate (Finnish)
Currently translated at 38.4% (10 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/fi/
Translated using Weblate (Finnish)
Currently translated at 12.1% (10 of 82 strings)
Translated using Weblate (Finnish)
Currently translated at 95.3% (327 of 343 strings)
Translated using Weblate (Finnish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Finnish)
Currently translated at 14.3% (28 of 195 strings)
Translated using Weblate (Finnish)
Currently translated at 41.3% (81 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/fi/
Translated using Weblate (Finnish)
Currently translated at 15.7% (9 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/fi/
Translated using Weblate (Finnish)
Currently translated at 56.6% (102 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fi/
Translated using Weblate (Finnish)
Currently translated at 16.5% (31 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/fi/
Translated using Weblate (Finnish)
Currently translated at 84.2% (1637 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (Romanian)
Currently translated at 99.4% (1936 of 1946 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 99.4% (1936 of 1946 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Finnish)
Currently translated at 91.8% (45 of 49 strings)
Translated using Weblate (Finnish)
Currently translated at 17.5% (37 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/fi/
Translated using Weblate (Finnish)
Currently translated at 11.5% (13 of 113 strings)
Translated using Weblate (Finnish)
Currently translated at 18.8% (36 of 191 strings)
Translated using Weblate (Finnish)
Currently translated at 12.5% (6 of 48 strings)
Translated using Weblate (Finnish)
Currently translated at 30.0% (37 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/fi/
Translated using Weblate (Finnish)
Currently translated at 19.4% (33 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/fi/
Translated using Weblate (Finnish)
Currently translated at 34.6% (9 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/fi/
Translated using Weblate (Finnish)
Currently translated at 8.1% (9 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/fi/
Translated using Weblate (Finnish)
Currently translated at 87.5% (14 of 16 strings)
Translated using Weblate (Finnish)
Currently translated at 15.9% (7 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/fi/
Translated using Weblate (Finnish)
Currently translated at 12.9% (15 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/fi/
Translated using Weblate (Finnish)
Currently translated at 12.0% (13 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/fi/
Translated using Weblate (Finnish)
Currently translated at 6.5% (4 of 61 strings)
Translated using Weblate (Finnish)
Currently translated at 10.9% (9 of 82 strings)
Translated using Weblate (Finnish)
Currently translated at 54.0% (20 of 37 strings)
Translated using Weblate (Finnish)
Currently translated at 6.0% (8 of 133 strings)
Translated using Weblate (Finnish)
Currently translated at 68.7% (11 of 16 strings)
Translated using Weblate (Finnish)
Currently translated at 7.6% (6 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/fi/
Translated using Weblate (Finnish)
Currently translated at 19.7% (15 of 76 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/fi/
Translated using Weblate (Finnish)
Currently translated at 95.3% (327 of 343 strings)
Translated using Weblate (Finnish)
Currently translated at 68.8% (42 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/fi/
Translated using Weblate (Finnish)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/fi/
Translated using Weblate (Finnish)
Currently translated at 10.3% (6 of 58 strings)
Translated using Weblate (Finnish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Finnish)
Currently translated at 100.0% (14 of 14 strings)
Translated using Weblate (Finnish)
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Finnish)
Currently translated at 6.2% (2 of 32 strings)
Translated using Weblate (Finnish)
Currently translated at 13.8% (27 of 195 strings)
Translated using Weblate (Finnish)
Currently translated at 22.4% (11 of 49 strings)
Translated using Weblate (Finnish)
Currently translated at 28.0% (7 of 25 strings)
Translation: OpenWrt/LuCI/applications/cshark
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscshark/fi/
Translated using Weblate (Finnish)
Currently translated at 22.5% (14 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/fi/
Translated using Weblate (Finnish)
Currently translated at 41.3% (81 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/fi/
Translated using Weblate (Finnish)
Currently translated at 12.2% (7 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/fi/
Translated using Weblate (Finnish)
Currently translated at 6.1% (4 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/fi/
Translated using Weblate (Finnish)
Currently translated at 95.0% (19 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/fi/
Translated using Weblate (Finnish)
Currently translated at 20.4% (10 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/fi/
Translated using Weblate (Finnish)
Currently translated at 56.6% (102 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fi/
Translated using Weblate (Finnish)
Currently translated at 56.0% (14 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/fi/
Translated using Weblate (Finnish)
Currently translated at 12.9% (4 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/fi/
Translated using Weblate (Finnish)
Currently translated at 20.2% (19 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/fi/
Translated using Weblate (Finnish)
Currently translated at 26.9% (14 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/fi/
Translated using Weblate (Finnish)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/fi/
Translated using Weblate (Finnish)
Currently translated at 27.1% (53 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fi/
Translated using Weblate (Finnish)
Currently translated at 16.0% (30 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/fi/
Translated using Weblate (Finnish)
Currently translated at 7.8% (8 of 102 strings)
Translated using Weblate (Finnish)
Currently translated at 62.0% (31 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/fi/
Translated using Weblate (Finnish)
Currently translated at 80.2% (1560 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: Simona Iacob <s@zp1.net>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Signed-off-by: Simona Iacob <s@zp1.net>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationscommands/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswol/fi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/fi/
Translation: OpenWrt/LuCI/applications/commands
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/ntpc
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/polipo
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/applications/vnstat
Translation: OpenWrt/LuCI/applications/watchcat
Translation: OpenWrt/LuCI/applications/wol
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-03-13 18:10:30 +02:00
Jo-Philipp Wich
03bb0e2493
luci-compat: fix evaluating or()
and and()
datatype expressions
...
Fixes : #5705
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-03-10 13:31:11 +01:00
Hosted Weblate
1c3f3939ce
Translated using Weblate (German)
...
Currently translated at 100.0% (123 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/de/
Translated using Weblate (Russian)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Polish)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
2022-03-09 19:32:20 +02:00
Hosted Weblate
98e0832f18
Translated using Weblate (Danish)
...
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Romanian)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ro/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/zh_Hans/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pt_BR/
Translated using Weblate (Spanish)
Currently translated at 80.3% (49 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/es/
Translated using Weblate (Spanish)
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1944 of 1944 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 94.9% (1848 of 1946 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% (1944 of 1944 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 91.7% (1784 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Danish)
Currently translated at 98.5% (1916 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Polish)
Currently translated at 100.0% (61 of 61 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (1944 of 1944 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Chinese (Traditional))
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))
Currently translated at 90.9% (101 of 111 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))
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/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (43 of 43 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% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 95.7% (179 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (61 of 61 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 94.3% (1740 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1845 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hulen <shift0106@gmail.com>
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: drax red <drax@outlook.dk>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Hulen <shift0106@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: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/zh_Hant/
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/uhttpd
2022-03-06 17:42:14 +02:00
Hannu Nyman
469fc33b2f
treewide: Sync translations - i18n
...
Sync translations.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-03-04 21:05:08 +02:00
Hosted Weblate
c7f0a15482
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (211 of 211 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% (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 100.0% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/tr/
Translated using Weblate (German)
Currently translated at 61.5% (120 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/de/
Translated using Weblate (Turkish)
Currently translated at 100.0% (133 of 133 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (1845 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Translated using Weblate (Romanian)
Currently translated at 99.4% (1834 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Greek)
Currently translated at 27.4% (506 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/el/
Translated using Weblate (German)
Currently translated at 94.2% (1739 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (Danish)
Currently translated at 6.1% (7 of 113 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (133 of 133 strings)
Translated using Weblate (Danish)
Currently translated at 6.4% (5 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (56 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/da/
Translated using Weblate (German)
Currently translated at 61.5% (120 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/de/
Translated using Weblate (German)
Currently translated at 100.0% (43 of 43 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/de/
Translated using Weblate (German)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/de/
Translated using Weblate (Romanian)
Currently translated at 99.2% (1832 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: HACKER3000 <hacker3000@posteo.org>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: MarioK239 <marios.k239@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: semih <semiht@gmail.com>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: HACKER3000 <hacker3000@posteo.org>
Signed-off-by: MarioK239 <marios.k239@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: semih <semiht@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/da/
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/radicale2
2022-03-03 16:53:38 +02:00
Jo-Philipp Wich
d29400ea09
luci-base: ui: fix null access in ui.Table.update()
...
Fixes : #5702
Fixes: e0e6989a4a
("luci-base: introduce new LuCI.ui.Table class")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-02-27 20:33:02 +01:00
Jo-Philipp Wich
b5b66e994d
Merge pull request #5696 from jow-/sortable-status-tables
...
Introduce sortable status tables
2022-02-25 12:36:03 +01:00
Jo-Philipp Wich
d8ed1e7b7d
luci-base: form.js: add column sorting to TableSections and GridSections
...
Add ability to reorder TableSection and GridSection rows by clicking on
column headers.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-02-24 23:45:18 +01:00
Jo-Philipp Wich
e0e6989a4a
luci-base: introduce new LuCI.ui.Table class
...
Introduce a new `LuCI.ui.Table` class to simplify generating HTML tables
for data output and turn the existing `cbi_update_table()` procedure into
a wrapper around this new facility.
Tables generated by the new class closely resemble the old markup but
provide additional sorting capabilities.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-02-24 23:45:17 +01:00
Hosted Weblate
03796f7f6b
Translated using Weblate (German)
...
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/de/
Translated using Weblate (German)
Currently translated at 21.1% (22 of 104 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% (78 of 78 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% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/vnstat2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat2/de/
Translated using Weblate (German)
Currently translated at 29.0% (9 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/de/
Translated using Weblate (German)
Currently translated at 100.0% (18 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/de/
Translated using Weblate (German)
Currently translated at 85.5% (160 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/de/
Translated using Weblate (German)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/de/
Translated using Weblate (Polish)
Currently translated at 100.0% (125 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/pl/
Translated using Weblate (German)
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/de/
Translated using Weblate (German)
Currently translated at 99.1% (122 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/de/
Translated using Weblate (German)
Currently translated at 100.0% (57 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/de/
Translated using Weblate (German)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/de/
Translated using Weblate (German)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/de/
Translated using Weblate (German)
Currently translated at 65.2% (111 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/de/
Translated using Weblate (German)
Currently translated at 98.9% (194 of 196 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% (49 of 49 strings)
Translated using Weblate (German)
Currently translated at 100.0% (191 of 191 strings)
Translated using Weblate (German)
Currently translated at 100.0% (61 of 61 strings)
Translated using Weblate (German)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (German)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (German)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (1845 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Romanian)
Currently translated at 99.2% (1831 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Spanish)
Currently translated at 96.5% (1782 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (German)
Currently translated at 93.2% (1720 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (German)
Currently translated at 95.0% (19 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/de/
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Christoph Loesch <github-mail@chil.at>
Co-authored-by: Daniel Pawlik <pawlik.dan@gmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Christoph Loesch <github-mail@chil.at>
Signed-off-by: Daniel Pawlik <pawlik.dan@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/de/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/de/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
2022-02-24 07:58:05 +01:00
Hosted Weblate
5be8c4b730
Translated using Weblate (Danish)
...
Currently translated at 100.0% (1845 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 17.4% (34 of 195 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/tr/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1845 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Turkish)
Currently translated at 98.5% (1819 of 1845 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 100.0% (1845 of 1845 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% (1845 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Italian)
Currently translated at 52.5% (969 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Italian)
Currently translated at 21.1% (11 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/it/
Translated using Weblate (Turkish)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/tr/
Translated using Weblate (Italian)
Currently translated at 29.4% (5 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/it/
Translated using Weblate (Italian)
Currently translated at 18.1% (34 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/it/
Translated using Weblate (Italian)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/it/
Translated using Weblate (Italian)
Currently translated at 32.2% (20 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/it/
Translated using Weblate (Italian)
Currently translated at 14.5% (7 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/it/
Translated using Weblate (Italian)
Currently translated at 10.7% (7 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/it/
Translated using Weblate (Turkish)
Currently translated at 100.0% (61 of 61 strings)
Translated using Weblate (Italian)
Currently translated at 6.0% (8 of 133 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (48 of 48 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Italian)
Currently translated at 37.4% (73 of 195 strings)
Translated using Weblate (Italian)
Currently translated at 67.0% (128 of 191 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (14 of 14 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (11 of 11 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Italian)
Currently translated at 12.2% (42 of 343 strings)
Translated using Weblate (Italian)
Currently translated at 52.3% (966 of 1845 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Italian)
Currently translated at 8.1% (9 of 111 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 100.0% (61 of 61 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (1823 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Oğuz Ersen <oguzersen@protonmail.com>
Co-authored-by: ToldYouThat <itoldyouthat@protonmail.com>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: pisquan8 <cimurro@outlook.de>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Oğuz Ersen <oguzersen@protonmail.com>
Signed-off-by: ToldYouThat <itoldyouthat@protonmail.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: pisquan8 <cimurro@outlook.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/tr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/it/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/ntpc
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-02-22 19:00:43 +02:00
Paul Dee
b2101a23a9
luci-mod-network: (wireless) Expose multicast_to_unicast setting.
...
From https://w1.fi/cgit/hostap/commit/?id=34f7c699a6bcb5c45f82ceb6743354ad79296078
add support for multicast_to_unicast conversion in the wireless settings
Tested on: 21.02.1
Signed-off-by: Paul Dee <itsascambutmailmeanyway@gmail.com>
2022-02-22 16:12:00 +01:00
Jo-Philipp Wich
5663fd596b
luci-base: properly handle promise targets in Request.request()
...
Under some circumstances, ubus RPC requests may be initiated while LuCI is
still resolving the `rpcBaseURL` value. In this situation, the `target`
argument of the `request()` call will be a pending promise object which
results in an invalid URL when serialized by `expandURL()`, leading to an
`Failed to execute 'open' on 'XMLHttpRequest': Invalid URL` exception.
This commonly occured on the index status page which immediately initiates
ubus RPC calls on load to discover existing status page partials.
Solve the issue by filtering the given `target` argument through
`Promise.resolve()` before expanding the URL and initiating the actual
request.
Fixes : #3747
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-02-21 14:59:16 +01:00
Jo-Philipp Wich
8890111784
Merge pull request #4515 from TDT-AG/pr/20201014-diag-ping6
...
luci-mod-network: diagnostics.js: don't pass IP version flag to ping6
2022-02-18 21:20:49 +01:00
Jo-Philipp Wich
a381a8d2dd
Merge pull request #5654 from clayface/rule-uidrange
...
luci-mod-network: add support for UID iprules, add descriptions to routing/rules sections
2022-02-18 21:17:52 +01:00
Hosted Weblate
3db6c9b79f
Translated using Weblate (Ukrainian)
...
Currently translated at 17.0% (36 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/uk/
Translated using Weblate (Ukrainian)
Currently translated at 31.8% (14 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 27.5% (8 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/uk/
Translated using Weblate (Ukrainian)
Currently translated at 17.8% (30 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 17.3% (4 of 23 strings)
Translated using Weblate (Ukrainian)
Currently translated at 15.9% (18 of 113 strings)
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Ukrainian)
Currently translated at 85.0% (1551 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1823 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Slovak)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Russian)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Slovak)
Currently translated at 41.4% (755 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sk/
Translated using Weblate (Russian)
Currently translated at 100.0% (1823 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Ukrainian)
Currently translated at 55.5% (10 of 18 strings)
Translation: OpenWrt/LuCI/applications/nextdns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnextdns/uk/
Translated using Weblate (Ukrainian)
Currently translated at 95.0% (19 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/uk/
Translated using Weblate (Spanish)
Currently translated at 99.4% (179 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/es/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (61 of 61 strings)
Translated using Weblate (Ukrainian)
Currently translated at 15.6% (5 of 32 strings)
Translated using Weblate (Ukrainian)
Currently translated at 85.0% (1551 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Co-authored-by: Alfredo Pepote <newfulluser@outlook.com>
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Dušan Kazik <prescott66@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Taras Rosa <taras1rosa@gmail.com>
Co-authored-by: Vova Buran <heneral@gmail.com>
Signed-off-by: Alfredo Pepote <newfulluser@outlook.com>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Dušan Kazik <prescott66@gmail.com>
Signed-off-by: Taras Rosa <taras1rosa@gmail.com>
Signed-off-by: Vova Buran <heneral@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ru/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/uk/
Translation: OpenWrt/LuCI/applications/opkg
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/uhttpd
Translation: OpenWrt/LuCI/applications/watchcat
2022-02-18 18:12:21 +02:00
Jo-Philipp Wich
21784446c1
luci-app-firewall: fix setting unspecified zone on forwardings
...
Fixes : #5685
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-02-16 00:27:37 +01:00
Hosted Weblate
1f525bda49
Translated using Weblate (Ukrainian)
...
Currently translated at 38.7% (45 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/uk/
Translated using Weblate (Ukrainian)
Currently translated at 8.0% (10 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/uk/
Translated using Weblate (Ukrainian)
Currently translated at 22.5% (7 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/uk/
Translated using Weblate (Spanish)
Currently translated at 98.8% (178 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/es/
Translated using Weblate (Ukrainian)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Ukrainian)
Currently translated at 85.0% (1550 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Greek)
Currently translated at 9.0% (4 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/el/
Translated using Weblate (Greek)
Currently translated at 10.3% (3 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/el/
Translated using Weblate (Greek)
Currently translated at 15.4% (26 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/el/
Translated using Weblate (Greek)
Currently translated at 8.6% (2 of 23 strings)
Translated using Weblate (Greek)
Currently translated at 4.4% (5 of 113 strings)
Translated using Weblate (Greek)
Currently translated at 16.7% (32 of 191 strings)
Translated using Weblate (Slovak)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Ukrainian)
Currently translated at 13.7% (8 of 58 strings)
Translated using Weblate (Greek)
Currently translated at 11.9% (41 of 343 strings)
Translated using Weblate (Greek)
Currently translated at 26.8% (490 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/el/
Translated using Weblate (Greek)
Currently translated at 6.8% (2 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/el/
Translated using Weblate (Greek)
Currently translated at 56.0% (14 of 25 strings)
Translated using Weblate (Danish)
Currently translated at 39.8% (53 of 133 strings)
Translated using Weblate (Danish)
Currently translated at 14.6% (12 of 82 strings)
Translated using Weblate (Danish)
Currently translated at 11.7% (11 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/da/
Translated using Weblate (Danish)
Currently translated at 8.6% (16 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/da/
Translated using Weblate (Greek)
Currently translated at 2.3% (5 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/el/
Translated using Weblate (Greek)
Currently translated at 6.8% (3 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/el/
Translated using Weblate (Greek)
Currently translated at 16.0% (4 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/el/
Translated using Weblate (Greek)
Currently translated at 6.3% (6 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/el/
Translated using Weblate (Greek)
Currently translated at 23.0% (6 of 26 strings)
Translation: OpenWrt/LuCI/applications/dcwapd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdcwapd/el/
Translated using Weblate (Greek)
Currently translated at 2.2% (3 of 133 strings)
Translated using Weblate (Greek)
Currently translated at 13.5% (5 of 37 strings)
Co-authored-by: Dušan Kazik <prescott66@gmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: MarioK239 <marios.k239@gmail.com>
Co-authored-by: Vova Buran <heneral@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: MarioK239 <marios.k239@gmail.com>
Signed-off-by: Vova Buran <heneral@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/uk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsrp-pppoe-server/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/el/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/el/
Translation: OpenWrt/LuCI/applications/nut
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/samba4
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
2022-02-13 12:11:05 +02:00
Hosted Weblate
d891be19dd
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (61 of 61 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (1823 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt/
Translated using Weblate (Japanese)
Currently translated at 83.7% (62 of 74 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/da/
Translated using Weblate (Polish)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pl/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (180 of 180 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 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pt_BR/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: KOSHIKAWA Kenichi <kenichi@mail.reishoku.net>
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: drax red <drax@outlook.dk>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Eric <alchemillatruth@purelymail.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: drax red <drax@outlook.dk>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ja/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ro/
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/uhttpd
2022-02-11 23:19:49 +02:00
Jo-Philipp Wich
e6f21f84ca
luci-mod-status: nftables.js: align flow expr workaround with upstream
...
Ref: https://git.netfilter.org/nftables/commit/?id=160d44c91113849b9c09f6bbad159e10ded1ca54
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-02-10 20:52:34 +01:00
Jo-Philipp Wich
98d848917c
luci-mod-status: correct nft meta.mark description
...
Ref: bf175fd51a (commitcomment-66390835)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-02-10 20:44:54 +01:00
Matthew Hagan
89056536e1
luci-mod-network: add descriptions to routing/rules sections
...
Provide descriptions for options in the IP routing and rules sections.
Test is based upon that within the OpenWrt documentation[1].
[1] https://openwrt.org/docs/guide-user/network/routing/routes_configuration
Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
2022-02-10 15:31:24 +00:00
Matthew Hagan
72e76d5c5a
luci-mod-network: add support for UID iprules
...
Allow user-specific routing policies to be defined in luci. A single UID
or range of UIDs may be defined.
Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
2022-02-09 17:46:26 +00:00
Jo-Philipp Wich
4fc3cd8e42
Merge pull request #5652 from jow-/nftables-status
...
luci-mod-status: add nftables status page
2022-02-07 14:10:48 +01:00
Jo-Philipp Wich
bf175fd51a
luci-mod-status: add nftables status page
...
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-02-07 13:24:33 +01:00
Hosted Weblate
1b5b0ef429
Translated using Weblate (Chinese (Traditional))
...
Currently translated at 100.0% (48 of 48 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 90.3% (28 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (65 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (133 of 133 strings)
Translated using Weblate (Chinese (Traditional))
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))
Currently translated at 100.0% (11 of 11 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (14 of 14 strings)
Translated using Weblate (Chinese (Traditional))
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))
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 93.7% (15 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))
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 77.4% (86 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hant/
Translated using Weblate (Turkish)
Currently translated at 99.0% (110 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/tr/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (52 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/zh_Hant/
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 100.0% (191 of 191 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 99.7% (342 of 343 strings)
Translated using Weblate (Chinese (Traditional))
Currently translated at 94.9% (1731 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hant/
Translated using Weblate (French)
Currently translated at 60.0% (9 of 15 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/fr/
Translated using Weblate (French)
Currently translated at 54.5% (24 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/fr/
Translated using Weblate (French)
Currently translated at 100.0% (25 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/fr/
Translated using Weblate (Turkish)
Currently translated at 95.4% (106 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/tr/
Translated using Weblate (French)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/fr/
Translated using Weblate (French)
Currently translated at 100.0% (49 of 49 strings)
Co-authored-by: ButterflyOfFire <ButterflyOfFire@protonmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hulen <shift0106@gmail.com>
Co-authored-by: ToldYouThat <itoldyouthat@protonmail.com>
Signed-off-by: ButterflyOfFire <ButterflyOfFire@protonmail.com>
Signed-off-by: Hulen <shift0106@gmail.com>
Signed-off-by: ToldYouThat <itoldyouthat@protonmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsntpc/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/luciapplicationsopenvpn/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsp910nd/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/zh_Hant/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/minidlna
Translation: OpenWrt/LuCI/applications/ntpc
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/p910nd
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/upnp
2022-02-05 11:51:16 +02:00
Hosted Weblate
6524da4085
Translated using Weblate (French)
...
Currently translated at 85.7% (42 of 49 strings)
Translated using Weblate (French)
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/fr/
Translated using Weblate (French)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/fr/
Translated using Weblate (French)
Currently translated at 91.6% (99 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/fr/
Translated using Weblate (French)
Currently translated at 44.7% (55 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/fr/
Translated using Weblate (French)
Currently translated at 19.2% (11 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/fr/
Translated using Weblate (French)
Currently translated at 36.9% (72 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fr/
Translated using Weblate (French)
Currently translated at 98.3% (177 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/fr/
Translated using Weblate (French)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/fr/
Translated using Weblate (French)
Currently translated at 71.4% (245 of 343 strings)
Translated using Weblate (French)
Currently translated at 85.2% (1554 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (Swedish)
Currently translated at 20.5% (8 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/sv/
Translated using Weblate (Spanish)
Currently translated at 83.7% (93 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/es/
Translated using Weblate (Swedish)
Currently translated at 48.9% (96 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/sv/
Translated using Weblate (Turkish)
Currently translated at 93.6% (104 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/tr/
Co-authored-by: Anders Jonsson <anders.jonsson@norsjovallen.se>
Co-authored-by: ButterflyOfFire <ButterflyOfFire@protonmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: ToldYouThat <itoldyouthat@protonmail.com>
Signed-off-by: Anders Jonsson <anders.jonsson@norsjovallen.se>
Signed-off-by: ButterflyOfFire <ButterflyOfFire@protonmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: ToldYouThat <itoldyouthat@protonmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/fr/
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-02-02 20:33:32 +02:00
Hosted Weblate
b29657a4bc
Translated using Weblate (Spanish)
...
Currently translated at 70.8% (34 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/es/
Translated using Weblate (Turkish)
Currently translated at 86.4% (96 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/tr/
Translated using Weblate (Spanish)
Currently translated at 61.2% (68 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/es/
Translated using Weblate (Spanish)
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/es/
Translated using Weblate (Spanish)
Currently translated at 98.3% (184 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/es/
Translated using Weblate (Spanish)
Currently translated at 97.6% (1781 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Turkish)
Currently translated at 60.3% (67 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/tr/
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: ToldYouThat <itoldyouthat@protonmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: ToldYouThat <itoldyouthat@protonmail.com>
2022-01-29 10:21:42 +02:00
Hosted Weblate
f319ea914f
Translated using Weblate (Spanish)
...
Currently translated at 41.6% (20 of 48 strings)
Translation: OpenWrt/LuCI/applications/openwisp
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenwisp/es/
Translated using Weblate (Italian)
Currently translated at 11.9% (20 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/it/
Translated using Weblate (Italian)
Currently translated at 12.3% (14 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (French)
Currently translated at 68.7% (11 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/fr/
Translated using Weblate (Romanian)
Currently translated at 100.0% (49 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (133 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (1823 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (French)
Currently translated at 68.7% (11 of 16 strings)
Translation: OpenWrt/LuCI/applications/hd-idle
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshd-idle/fr/
Co-authored-by: Amaury <y0da@live.fr>
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Massimo Simoni <pirtahilti@vusra.com>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: badulesia <badulesia.granieri@gmail.com>
Signed-off-by: Amaury <y0da@live.fr>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Massimo Simoni <pirtahilti@vusra.com>
Signed-off-by: badulesia <badulesia.granieri@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/statistics
2022-01-27 21:55:21 +02:00
Hosted Weblate
7b006c7218
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (191 of 191 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (1823 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Romanian)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1823 of 1823 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.5% (1815 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (1823 of 1823 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% (1823 of 1823 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% (1823 of 1823 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ro/
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/upnp
2022-01-25 23:56:43 +01:00
Jo-Philipp Wich
22e2bfb096
luci-base: explicitly invoke busybox applet for password change
...
Ensure to invoke the Busybox `passwd` applet to change the system password
in a non-interactive manner. Non-Busybox variants may not take the new
password input from stdin or use password hashes which are not supported
by musl's `crypt()` implementation by default.
Fixes : #5629
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-01-25 22:56:56 +01:00
Hannu Nyman
db40503d62
luci-base: sync translations - I18n
...
Sync translations.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-01-23 12:13:06 +02:00
Paul Dee
14f98df1c8
luci-mod-network: Clean up RADIUS strings in EAP options.
...
Plus placeholders for default ports.
Signed-off-by: Paul Dee <systemcrash@users.noreply.github.com>
[resolved trivial conflicts]
2022-01-23 12:07:37 +02:00
Hosted Weblate
de01b7501b
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1821 of 1821 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Translated using Weblate (Polish)
Currently translated at 100.0% (1821 of 1821 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Spanish)
Currently translated at 97.8% (1782 of 1821 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Russian)
Currently translated at 100.0% (1815 of 1815 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% (1815 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Co-authored-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: Eric <alchemillatruth@purelymail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hans/
Translation: OpenWrt/LuCI/applications/statistics
2022-01-23 12:05:28 +02:00
Florian Eckert
6ada502dde
Merge pull request #5642 from hgl/xfrm
...
luci-proto-xfrm: add luci xfrm support
2022-01-22 16:10:47 +01:00
Jo-Philipp Wich
613080fbc9
luci-base: fix ubus luci.getConntrackHelpers call with firewall4
...
Fallback to firewall4's helper list if the fw3 one cannot be loaded.
Fixes broken zone configuration when firewall4 is installed as backend.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-01-22 00:28:50 +01:00
Jo-Philipp Wich
433db83c65
luci-mod-network: fix creating joining wireless networks
...
Fixes : #5651
Fixes: 1c798d1a08
("luci-base: form.js: allow nesting Grid and Table sections")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-01-21 20:32:17 +01:00
Jo-Philipp Wich
705d46b1a6
luci-base: properly detect flow offloading capabilities with nftables
...
When the system is running with nftables instead of iptables, the
proprietary XT_FLOWOFFLOAD module will not be present, query the nft
equivalent instead.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-01-20 13:57:15 +01:00
Jo-Philipp Wich
8752701b0d
luci-base: sys: prevent path traversal via sys.init routines
...
Filter the init script name parameter through fs.basename() to avoid
invoking paths outside of /etc/init.d/.
Reported-by: Graham R <gr348@cam.ac.uk>
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-01-19 16:32:52 +01:00
Glen Huang
9b02d5b776
luci-proto-xfrm: add xfrm proto support
...
Signed-off-by: Glen Huang <heyhgl@gmail.com>
2022-01-19 22:35:33 +08:00
Jo-Philipp Wich
35df2adaf8
luci-mod-network: fix creating new interfaces
...
Fixes : #5646
Fixes: 1c798d1a08
("luci-base: form.js: allow nesting Grid and Table sections")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-01-19 14:36:46 +01:00
Hosted Weblate
e30c0cf5ca
Translated using Weblate (Hungarian)
...
Currently translated at 21.5% (40 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/hu/
Translated using Weblate (Hungarian)
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/hu/
Translated using Weblate (Hungarian)
Currently translated at 40.9% (18 of 44 strings)
Translated using Weblate (Hungarian)
Currently translated at 74.3% (1349 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/hu/
Translated using Weblate (Swedish)
Currently translated at 20.5% (8 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/sv/
Translated using Weblate (Hungarian)
Currently translated at 43.3% (78 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/hu/
Translated using Weblate (Swedish)
Currently translated at 48.9% (96 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/sv/
Translated using Weblate (Russian)
Currently translated at 100.0% (37 of 37 strings)
Co-authored-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Co-authored-by: Hb <afitrade@hotmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: KinteLiX <superh552@gmail.com>
Signed-off-by: Hb <afitrade@hotmail.com>
Signed-off-by: KinteLiX <superh552@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/hu/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/ru/
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/samba4
2022-01-19 12:11:31 +01:00
Jo-Philipp Wich
e0ff3ff933
luci-mod-system: mention ED25519 keys
...
Also update translations source strings accordingly.
Fixes : #5649
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-01-19 12:10:03 +01:00
Hosted Weblate
55dff3b9ce
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (1815 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Translated using Weblate (Russian)
Currently translated at 99.8% (1813 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Serbian)
Currently translated at 78.1% (268 of 343 strings)
Translated using Weblate (Serbian)
Currently translated at 100.0% (3 of 3 strings)
Translated using Weblate (Serbian)
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/sr/
Translated using Weblate (Serbian)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Russian)
Currently translated at 99.8% (1813 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Added translation using Weblate (Serbian)
Added translation using Weblate (Serbian)
Added translation using Weblate (Serbian)
Added translation using Weblate (Serbian)
Translated using Weblate (Serbian)
Currently translated at 50.0% (1 of 2 strings)
Translation: OpenWrt/LuCI/applications/olsr-viz
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr-viz/sr/
Translated using Weblate (Serbian)
Currently translated at 2.7% (1 of 37 strings)
Added translation using Weblate (Serbian)
Added translation using Weblate (Serbian)
Co-authored-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: SP <sp300b@gmail.com>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: ToldYouThat <itoldyouthat@protonmail.com>
Signed-off-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Signed-off-by: SP <sp300b@gmail.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: ToldYouThat <itoldyouthat@protonmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/sr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/sr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-battstatus/sr/
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/modules/luci-mod-battstatus
2022-01-14 17:43:28 +02:00
Hosted Weblate
1f9de9ca6e
Translated using Weblate (Danish)
...
Currently translated at 13.4% (11 of 82 strings)
Translated using Weblate (Danish)
Currently translated at 8.6% (10 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/da/
Translated using Weblate (Danish)
Currently translated at 29.7% (58 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/da/
Translated using Weblate (Danish)
Currently translated at 24.5% (46 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (1815 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 12.3% (8 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/da/
Translated using Weblate (Danish)
Currently translated at 16.8% (33 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/da/
Translated using Weblate (Romanian)
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 63.0% (70 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Portuguese)
Currently translated at 80.1% (89 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pt/
Translated using Weblate (Romanian)
Currently translated at 100.0% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (187 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (116 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (125 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (24 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (32 of 32 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Spanish)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (1815 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (1815 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Spanish)
Currently translated at 97.9% (1777 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Danish)
Currently translated at 100.0% (1815 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/zh_Hans/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pt_BR/
Translated using Weblate (Polish)
Currently translated at 100.0% (111 of 111 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pl/
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/pt_BR/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1815 of 1815 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 100.0% (1815 of 1815 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% (1815 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (1815 of 1815 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Eric <alchemillatruth@purelymail.com>
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: Meano Lee <meanocat@gmail.com>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Co-authored-by: ssantos <ssantos@web.de>
Co-authored-by: stoodvolleyball <stoodvolleyball@mailfence.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Meano Lee <meanocat@gmail.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Signed-off-by: ssantos <ssantos@web.de>
Signed-off-by: stoodvolleyball <stoodvolleyball@mailfence.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/es/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/ro/
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/watchcat
2022-01-12 12:24:21 +01:00
Hannu Nyman
919b02c169
treewide: sync i18n translations
...
Sync translations.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2022-01-10 20:57:27 +02:00
Hosted Weblate
c1ae0531ef
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (187 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
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/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/ro/
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2022-01-10 20:55:30 +02:00
Hosted Weblate
1d54a96fef
Translated using Weblate (Danish)
...
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (191 of 191 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (40 of 40 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (32 of 32 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pl/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 9.0% (6 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/nb_NO/
Translated using Weblate (Polish)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/pl/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 10.2% (8 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/nb_NO/
Translated using Weblate (Polish)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (57 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (195 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pl/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 6.5% (11 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/nb_NO/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 13.2% (26 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/nb_NO/
Translated using Weblate (Polish)
Currently translated at 100.0% (59 of 59 strings)
Translated using Weblate (Norwegian Bokmål)
Currently translated at 78.4% (80 of 102 strings)
Translated using Weblate (Vietnamese)
Currently translated at 34.9% (120 of 343 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (1813 of 1813 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% (74 of 74 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (58 of 58 strings)
Co-authored-by: Allan Nordhøy <epost@anotheragency.no>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Paul Spooren <mail@aparcar.org>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: Allan Nordhøy <epost@anotheragency.no>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/vi/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/nb_NO/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/da/
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/polipo
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/applications/uhttpd
Translation: OpenWrt/LuCI/applications/watchcat
2022-01-09 13:16:41 +02:00
Hosted Weblate
ed683c5166
Translated using Weblate (Polish)
...
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (195 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (1813 of 1813 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% (1813 of 1813 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% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (34 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/pl/
Translated using Weblate (French)
Currently translated at 87.0% (94 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/fr/
Translated using Weblate (Polish)
Currently translated at 100.0% (196 of 196 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% (212 of 212 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Italian)
Currently translated at 17.6% (33 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/it/
Translated using Weblate (Italian)
Currently translated at 15.8% (31 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/it/
Translated using Weblate (Italian)
Currently translated at 62.2% (112 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/it/
Co-authored-by: ButterflyOfFire <ButterflyOfFire@protonmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Omar Destefani <omar.destefani@gmail.com>
Signed-off-by: ButterflyOfFire <ButterflyOfFire@protonmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Omar Destefani <omar.destefani@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pl/
Translation: OpenWrt/LuCI/applications/firewall
2022-01-07 22:36:56 +02:00
Jo-Philipp Wich
0ef82b3c58
luci-mod-network: fix reading back rpfilter configuration value
...
Fixes : #5635
Fixes: faad7464a8
("luci-mod-network: add support for network.device sections")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2022-01-07 19:20:27 +01:00
Daniel Golle
7eeea43df1
luci-mod-status: display full HE rate information
...
Associated Stations on the status page should also show full HE rate
information which was added by
commit f35e877dc6
("luci-mod-network: add 802.11ax HE support")
However, it was only added to the Wireless page and not to the summary
on the Status page. Add it there as well.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2022-01-07 01:09:48 +00:00
Stijn Tintel
48599d8d1d
luci-app-firewall: initial firewall4 compatibility
...
Initial changes required for firewall4 compatibility:
* depend on uc-firewall instead of firewall
* detect installed version of firewall and hide incompatible features
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Reviewed-by: Jo-Philipp Wich <jo@mein.io>
2022-01-06 15:03:57 +02:00
Hosted Weblate
dc0ed9ca93
Translated using Weblate (Romanian)
...
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Spanish)
Currently translated at 97.9% (1775 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Turkish)
Currently translated at 100.0% (187 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Oğuz Ersen <oguzersen@protonmail.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Oğuz Ersen <oguzersen@protonmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/ro/
Translation: OpenWrt/LuCI/applications/opkg
2022-01-04 08:39:30 +02:00
Hosted Weblate
3b951ce55c
Translated using Weblate (French)
...
Currently translated at 40.0% (6 of 15 strings)
Translation: OpenWrt/LuCI/applications/example
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsexample/fr/
Translated using Weblate (French)
Currently translated at 100.0% (50 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/fr/
Translated using Weblate (French)
Currently translated at 21.5% (25 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/fr/
Translated using Weblate (French)
Currently translated at 16.0% (20 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/fr/
Translated using Weblate (French)
Currently translated at 16.0% (20 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/fr/
Translated using Weblate (French)
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/fr/
Translated using Weblate (French)
Currently translated at 68.7% (33 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/fr/
Translated using Weblate (French)
Currently translated at 31.8% (14 of 44 strings)
Translated using Weblate (French)
Currently translated at 18.7% (6 of 32 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (1813 of 1813 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% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (25 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (34 of 34 strings)
Translation: OpenWrt/LuCI/applications/wifischedule
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswifischedule/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/pl/
Translated using Weblate (Polish)
Currently translated at 100.0% (196 of 196 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% (212 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Polish)
Currently translated at 100.0% (37 of 37 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (1813 of 1813 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% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Didier Wagenknecht <didier.wagenknecht@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Matthaiks <kitynska@gmail.com>
Co-authored-by: Samuel Chéreau <bnorus@gmail.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Didier Wagenknecht <didier.wagenknecht@gmail.com>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Samuel Chéreau <bnorus@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/fr/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/pl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/fr/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/watchcat
2021-12-30 09:55:31 +02:00
Hosted Weblate
a2d121f05b
Translated using Weblate (Portuguese)
...
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Romanian)
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/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Francisco Lopes <fmlopes@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Francisco Lopes <fmlopes@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt/
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2021-12-27 16:25:26 +02:00
Hosted Weblate
cc3f2b3222
Translated using Weblate (Portuguese)
...
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Portuguese)
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (133 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Translated using Weblate (Italian)
Currently translated at 18.2% (34 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 21.7% (37 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 8.9% (15 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/it/
Translated using Weblate (Italian)
Currently translated at 52.7% (957 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Russian)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/ru/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Francisco Lopes <fmlopes@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: davidevertuani <davide.vertuani@gmail.com>
Signed-off-by: Alexey <agarkov.alexey.viktorovich@gmail.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Francisco Lopes <fmlopes@gmail.com>
Signed-off-by: davidevertuani <davide.vertuani@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/pt/
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2021-12-24 19:03:25 +02:00
Jo-Philipp Wich
63d9bcb682
luci.js: remove unsafe fallback code from dom.parse()
...
Do not fallback to .innerHTML if DOMParser() failed for whatever reason.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-23 17:09:13 +01:00
Jo-Philipp Wich
993151504e
luci-base: form.js: do not execute embedded script code in stripTags()
...
Instead of relying on .innerHTML which executes embedded script code to
parse a given HTML fragment, use dom.parse() which utilizies DOMParser()
internally in order to extract textContent in a safe manner.
Fixes: FS#4199
Ref: https://bugs.openwrt.org/index.php?do=details&task_id=4199
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-23 17:08:21 +01:00
Hosted Weblate
cac0349d26
Translated using Weblate (Finnish)
...
Currently translated at 3.1% (1 of 32 strings)
Translated using Weblate (Finnish)
Currently translated at 23.9% (47 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/fi/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Swedish)
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/sv/
Translated using Weblate (Swedish)
Currently translated at 13.6% (6 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/sv/
Translated using Weblate (Swedish)
Currently translated at 56.0% (14 of 25 strings)
Translation: OpenWrt/LuCI/applications/ksmbd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsksmbd/sv/
Translated using Weblate (Swedish)
Currently translated at 23.4% (22 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/sv/
Translated using Weblate (Swedish)
Currently translated at 41.3% (12 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/sv/
Translated using Weblate (Swedish)
Currently translated at 32.3% (43 of 133 strings)
Translated using Weblate (Swedish)
Currently translated at 40.5% (15 of 37 strings)
Translated using Weblate (Swedish)
Currently translated at 40.9% (742 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Romanian)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 70.7% (1283 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Portuguese)
Currently translated at 99.5% (210 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/pt/
Translated using Weblate (Portuguese)
Currently translated at 97.7% (43 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/pt/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/pt/
Translated using Weblate (Portuguese)
Currently translated at 99.2% (132 of 133 strings)
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Hannu Nyman <hannu.nyman@iki.fi>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/pt/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssamba4/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/fi/
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/samba4
Translation: OpenWrt/LuCI/applications/watchcat
2021-12-21 18:49:28 +02:00
Hosted Weblate
ab25dd8e58
Translated using Weblate (Swedish)
...
Currently translated at 8.0% (15 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/sv/
Translated using Weblate (Swedish)
Currently translated at 100.0% (12 of 12 strings)
Translation: OpenWrt/LuCI/applications/bcp38
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbcp38/sv/
Translated using Weblate (Swedish)
Currently translated at 32.3% (43 of 133 strings)
Translated using Weblate (Swedish)
Currently translated at 40.8% (741 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Turkish)
Currently translated at 100.0% (52 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (7 of 7 strings)
Translation: OpenWrt/LuCI/applications/squid
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssquid/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (13 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (62 of 62 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% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (65 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/tr/
Translated using Weblate (Turkish)
Currently translated at 100.0% (133 of 133 strings)
Co-authored-by: Erdinc <erdincbeldek@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: Erdinc <erdincbeldek@gmail.com>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/tr/
Translation: OpenWrt/LuCI/applications/nut
2021-12-18 09:43:20 +02:00
Hosted Weblate
aa7b7b5de9
Translated using Weblate (Swedish)
...
Currently translated at 48.9% (24 of 49 strings)
Translated using Weblate (Swedish)
Currently translated at 21.2% (14 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/sv/
Translated using Weblate (Swedish)
Currently translated at 60.2% (47 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/sv/
Translated using Weblate (Swedish)
Currently translated at 13.6% (6 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/sv/
Translated using Weblate (Swedish)
Currently translated at 23.4% (22 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/sv/
Translated using Weblate (Swedish)
Currently translated at 20.9% (17 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/sv/
Translated using Weblate (Russian)
Currently translated at 90.0% (18 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/ru/
Translated using Weblate (Swedish)
Currently translated at 52.3% (88 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/sv/
Translated using Weblate (Swedish)
Currently translated at 7.5% (10 of 133 strings)
Translated using Weblate (Swedish)
Currently translated at 40.9% (18 of 44 strings)
Translated using Weblate (Swedish)
Currently translated at 52.9% (54 of 102 strings)
Translated using Weblate (Swedish)
Currently translated at 77.0% (57 of 74 strings)
Translated using Weblate (Swedish)
Currently translated at 33.8% (116 of 343 strings)
Translated using Weblate (Catalan)
Currently translated at 45.7% (157 of 343 strings)
Translated using Weblate (Swedish)
Currently translated at 40.8% (740 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Russian)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Romanian)
Currently translated at 61.3% (1113 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: Anton Kikin <a.a.kikin@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: dtalens <databio@gmail.com>
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ca/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/sv/
Translation: OpenWrt/LuCI/applications/fwknopd
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2021-12-15 04:54:53 +01:00
Hosted Weblate
ef5470efaf
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/sv/
Translated using Weblate (Swedish)
Currently translated at 9.0% (6 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/sv/
Translated using Weblate (Swedish)
Currently translated at 21.7% (17 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/sv/
Translated using Weblate (Swedish)
Currently translated at 35.2% (6 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/sv/
Translated using Weblate (Swedish)
Currently translated at 46.1% (6 of 13 strings)
Translation: OpenWrt/LuCI/applications/shairplay
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshairplay/sv/
Translated using Weblate (Swedish)
Currently translated at 17.0% (29 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/sv/
Translated using Weblate (Swedish)
Currently translated at 55.3% (31 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/sv/
Translated using Weblate (Swedish)
Currently translated at 48.9% (96 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/sv/
Translated using Weblate (Romanian)
Currently translated at 100.0% (133 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 58.1% (1054 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 55.4% (1006 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Dutch)
Currently translated at 8.7% (159 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/nl/
Translated using Weblate (Romanian)
Currently translated at 100.0% (211 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Arabic)
Currently translated at 84.3% (1529 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ar/
Translated using Weblate (Finnish)
Currently translated at 86.1% (1561 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (Swedish)
Currently translated at 52.0% (26 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/sv/
Translated using Weblate (Swedish)
Currently translated at 7.5% (14 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/sv/
Translated using Weblate (Swedish)
Currently translated at 27.4% (17 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/sv/
Translated using Weblate (Swedish)
Currently translated at 18.9% (37 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/sv/
Translated using Weblate (Swedish)
Currently translated at 79.4% (143 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/sv/
Translated using Weblate (Swedish)
Currently translated at 86.8% (33 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/sv/
Translated using Weblate (Swedish)
Currently translated at 52.3% (88 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/sv/
Translated using Weblate (Swedish)
Currently translated at 15.0% (17 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Swedish)
Currently translated at 96.0% (24 of 25 strings)
Translated using Weblate (Vietnamese)
Currently translated at 59.7% (1083 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/vi/
Translated using Weblate (Ukrainian)
Currently translated at 85.4% (1549 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/uk/
Translated using Weblate (Turkish)
Currently translated at 99.9% (1812 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Translated using Weblate (Swedish)
Currently translated at 40.7% (739 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Swedish)
Currently translated at 40.7% (739 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/sv/
Translated using Weblate (Russian)
Currently translated at 99.8% (1811 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Translated using Weblate (Romanian)
Currently translated at 55.4% (1005 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 55.4% (1005 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (1813 of 1813 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% (1813 of 1813 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% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Translated using Weblate (Norwegian Bokmål)
Currently translated at 41.7% (757 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/nb_NO/
Translated using Weblate (Korean)
Currently translated at 31.7% (576 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ko/
Translated using Weblate (Italian)
Currently translated at 52.7% (956 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Translated using Weblate (Hungarian)
Currently translated at 74.3% (1348 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/hu/
Translated using Weblate (French)
Currently translated at 83.6% (1517 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fr/
Translated using Weblate (Spanish)
Currently translated at 97.9% (1775 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (English)
Currently translated at 16.4% (299 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/en/
Translated using Weblate (Greek)
Currently translated at 26.9% (489 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/el/
Translated using Weblate (German)
Currently translated at 94.8% (1720 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/de/
Translated using Weblate (Czech)
Currently translated at 77.6% (1407 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/cs/
Translated using Weblate (Catalan)
Currently translated at 39.3% (713 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ca/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Josef Schlehofer <pepe@bloodkings.eu>
Co-authored-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Co-authored-by: Simona Iacob <s@zp1.net>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Josef Schlehofer <pepe@bloodkings.eu>
Signed-off-by: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsqos/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/sv/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/ro/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/qos
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2021-12-14 03:54:53 +01:00
Hosted Weblate
39a6d4690e
Translated using Weblate (Romanian)
...
Currently translated at 96.6% (204 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 96.6% (204 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (186 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (187 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (170 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (24 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (195 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (168 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (180 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Spanish)
Currently translated at 98.8% (178 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/es/
Translated using Weblate (Romanian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Spanish)
Currently translated at 100.0% (196 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/es/
Translated using Weblate (Romanian)
Currently translated at 100.0% (195 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (191 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 96.6% (205 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 72.5% (249 of 343 strings)
Translated using Weblate (Turkish)
Currently translated at 99.9% (1812 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Translated using Weblate (Romanian)
Currently translated at 52.7% (956 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 52.7% (956 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Spanish)
Currently translated at 97.9% (1775 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: MS-PC <MSPCtranslator@gmail.com>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: ToldYouThat <itoldyouthat@protonmail.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: MS-PC <MSPCtranslator@gmail.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: ToldYouThat <itoldyouthat@protonmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/statistics
2021-12-13 00:10:24 +01:00
Hosted Weblate
a7732e02ab
Translated using Weblate (Romanian)
...
Currently translated at 83.8% (177 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 89.2% (166 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 88.7% (166 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 97.0% (165 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 88.7% (173 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 98.2% (165 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 92.7% (167 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 86.7% (170 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 87.6% (171 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 87.9% (168 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 83.4% (177 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 56.5% (194 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 81.5% (172 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 86.5% (161 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 85.5% (160 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 94.7% (161 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 87.1% (170 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 94.6% (159 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 89.4% (161 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Japanese)
Currently translated at 28.5% (16 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ja/
Translated using Weblate (Romanian)
Currently translated at 84.6% (166 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (133 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 84.6% (165 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 84.8% (162 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 81.1% (172 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 54.8% (188 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 52.0% (943 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Danish)
Currently translated at 10.1% (11 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/da/
Translated using Weblate (Danish)
Currently translated at 20.0% (39 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/da/
Translated using Weblate (Danish)
Currently translated at 65.5% (118 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/da/
Translated using Weblate (Danish)
Currently translated at 21.9% (41 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/da/
Translated using Weblate (Romanian)
Currently translated at 69.1% (146 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 70.9% (132 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 68.9% (129 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (125 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 78.2% (133 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 71.2% (139 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 77.3% (130 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 75.0% (135 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 71.9% (141 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 95.4% (127 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 72.3% (141 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 69.6% (133 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 69.8% (148 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 45.4% (156 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 51.7% (939 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: astrskGino <masato.fujino.aug.12@gmail.com>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: astrskGino <masato.fujino.aug.12@gmail.com>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/statistics
2021-12-12 17:18:06 +02:00
Hosted Weblate
2d073164de
Translated using Weblate (Romanian)
...
Currently translated at 66.8% (141 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 67.7% (126 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 66.3% (124 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (116 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 99.2% (124 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 75.2% (128 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 68.7% (134 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 74.4% (125 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 71.6% (129 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 71.4% (140 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 92.4% (123 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 69.7% (136 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 66.4% (127 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 67.9% (144 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 43.7% (150 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 51.7% (939 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 64.4% (136 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 64.5% (120 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 63.6% (119 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (108 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 99.1% (115 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 94.4% (118 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (123 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 72.3% (123 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 63.5% (124 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 70.2% (118 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 68.3% (123 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 67.8% (133 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (113 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 87.2% (116 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 66.1% (129 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 62.8% (120 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 65.0% (138 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 41.9% (144 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 51.7% (938 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Portuguese)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: ssantos <ssantos@web.de>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: ssantos <ssantos@web.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/statistics
2021-12-10 17:51:11 +02:00
Jo-Philipp Wich
008bd89310
luci-base: cbi.js: properly handle non-strings in %h
and %q
formats
...
Only replace null, objects and function values with the empty string but
return booleans and numbers as strings.
Spotted while debugging #5587 .
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-09 16:25:50 +01:00
Jo-Philipp Wich
604c009059
luci-base: ui.js: avoid error tooltips overlapping dropdowns
...
Fixes : #5588
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-09 15:29:36 +01:00
Hosted Weblate
5cdfbf37ea
Translated using Weblate (Danish)
...
Currently translated at 9.8% (8 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/da/
Translated using Weblate (Danish)
Currently translated at 9.7% (8 of 82 strings)
Translated using Weblate (Danish)
Currently translated at 10.6% (10 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/da/
Translated using Weblate (Danish)
Currently translated at 6.8% (8 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/da/
Translated using Weblate (Danish)
Currently translated at 9.2% (10 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/da/
Translated using Weblate (Danish)
Currently translated at 17.6% (30 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/da/
Translated using Weblate (Danish)
Currently translated at 17.6% (33 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/dynapoint
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdynapoint/da/
Translated using Weblate (Danish)
Currently translated at 16.3% (32 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/ltqtapi
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsltqtapi/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (343 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 59.2% (125 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 59.2% (125 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (94 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 57.5% (107 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 58.8% (110 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 95.3% (103 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 89.6% (104 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 89.6% (104 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 87.2% (109 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 83.7% (103 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 67.0% (114 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 67.0% (114 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 56.4% (110 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 63.6% (107 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 65.5% (118 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 61.7% (121 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 91.1% (103 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 91.1% (103 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 77.4% (103 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (102 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 62.5% (122 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 62.5% (122 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 57.0% (109 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 59.4% (126 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 39.3% (135 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 39.3% (135 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 51.4% (933 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 51.4% (933 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/da/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/statistics
Translation: OpenWrt/LuCI/applications/transmission
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2021-12-09 16:20:39 +02:00
Jo-Philipp Wich
c534f0671d
luci-mod-network: wireless.js: retain maclist contents
...
Fixes : #5579
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-09 15:11:07 +01:00
Jo-Philipp Wich
f5fbecf132
luci-base: form.js: implement AbstractValue.retain property
...
The new `retain` boolean property controls whether the related option value
is purged from the configuration when the dependencies of the option are
not satisifed.
Ref: #5579
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-09 15:11:07 +01:00
Paul Dee
4e3ff840eb
luci-mod-network: (wireless) Expose RSN Preauth WPA2-EAP setting.
...
Tested on: 21.02.1
Signed-off-by: Paul Dee <itsascambutmailmeanyway@gmail.com>
2021-12-08 02:00:44 +01:00
Paul Dee
8259550909
luci-mod-network: (wireless) Expose 802.11v settings.
...
Tested on: 21.02.1
Signed-off-by: Paul Dee <itsascambutmailmeanyway@gmail.com>
2021-12-08 01:58:22 +01:00
Hosted Weblate
ac64c70436
Translated using Weblate (Romanian)
...
Currently translated at 80.1% (93 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 87.2% (109 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 53.0% (112 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (78 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 93.6% (88 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (74 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 50.0% (93 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 52.4% (98 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 81.4% (88 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (81 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 78.4% (91 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 82.4% (103 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (62 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ro/
Translated using Weblate (Romanian)
Currently translated at 73.9% (91 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 58.8% (100 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 48.7% (95 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 56.5% (95 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 62.2% (112 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 57.1% (112 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 81.4% (92 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 68.4% (91 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 85.2% (87 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 55.8% (109 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 50.7% (97 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (74 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 54.7% (116 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 36.1% (124 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (82 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 48.9% (887 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 90.2% (74 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 48.7% (883 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 94.8% (74 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 80.8% (76 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/ro/
Translated using Weblate (Romanian)
Currently translated at 43.0% (80 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 45.9% (86 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 91.3% (74 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 60.8% (76 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 65.0% (80 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 50.5% (86 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 43.0% (84 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 49.4% (83 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 57.8% (77 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 73.5% (75 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 51.8% (110 of 212 strings)
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Simona Iacob <s@zp1.net>
Signed-off-by: Simona Iacob <s@zp1.net>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ro/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
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
2021-12-07 22:28:07 +02:00
Hosted Weblate
6162b105b4
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hans/
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1813 of 1813 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 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/zh_Hans/
Translated using Weblate (Slovenian)
Currently translated at 100.0% (16 of 16 strings)
Translated using Weblate (Slovenian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/sl/
Translated using Weblate (Slovak)
Currently translated at 2.5% (1 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/sk/
Translated using Weblate (Slovak)
Currently translated at 20.4% (40 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/sk/
Translated using Weblate (Slovak)
Currently translated at 4.1% (8 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/sk/
Translated using Weblate (Slovak)
Currently translated at 76.3% (29 of 38 strings)
Translation: OpenWrt/LuCI/applications/advanced-reboot
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadvanced-reboot/sk/
Translated using Weblate (Slovak)
Currently translated at 24.4% (44 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/sk/
Translated using Weblate (Slovak)
Currently translated at 3.1% (1 of 32 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Added translation using Weblate (Slovenian)
Added translation using Weblate (Slovenian)
Co-authored-by: 01230 <4585006@gmail.com>
Co-authored-by: Dejan <dejan@pekidi.com>
Co-authored-by: Dušan Kazik <prescott66@gmail.com>
Co-authored-by: Eric <spice2wolf@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: 01230 <4585006@gmail.com>
Signed-off-by: Dejan <dejan@pekidi.com>
Signed-off-by: Dušan Kazik <prescott66@gmail.com>
Signed-off-by: Eric <spice2wolf@gmail.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvnstat/sl/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswatchcat/sk/
Translation: OpenWrt/LuCI/applications/vnstat
Translation: OpenWrt/LuCI/applications/watchcat
2021-12-07 10:14:28 +02:00
Hosted Weblate
09576ca8c0
Translated using Weblate (Romanian)
...
Currently translated at 47.3% (100 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 93.5% (73 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 79.7% (75 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 98.6% (73 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (29 of 29 strings)
Translation: OpenWrt/LuCI/applications/vpnbypass
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpnbypass/ro/
Translated using Weblate (Romanian)
Currently translated at 42.4% (79 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 45.4% (85 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 70.3% (76 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 90.1% (73 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 68.1% (79 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 60.0% (75 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 64.2% (79 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 50.0% (85 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (24 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ro/
Translated using Weblate (Romanian)
Currently translated at 42.5% (83 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 48.2% (81 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 57.7% (104 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 53.0% (104 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 69.9% (79 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 57.1% (76 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 72.5% (74 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 50.2% (98 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 43.4% (83 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 98.6% (73 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 51.4% (109 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 89.0% (73 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 48.7% (883 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 45.0% (95 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (66 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 89.7% (70 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 75.5% (71 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 91.8% (68 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 39.7% (74 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 39.7% (74 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 42.7% (80 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 65.7% (71 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 83.9% (68 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 63.7% (74 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 56.0% (70 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 60.9% (75 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 47.6% (81 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 40.0% (78 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Japanese)
Currently translated at 26.7% (15 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ja/
Translated using Weblate (Romanian)
Currently translated at 51.5% (101 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 65.4% (74 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 53.3% (71 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 67.6% (69 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 48.7% (95 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 40.8% (78 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 93.2% (69 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 82.9% (68 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 44.5% (94 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Finnish)
Currently translated at 18.2% (31 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/fi/
Translated using Weblate (Finnish)
Currently translated at 18.9% (37 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/fi/
Translated using Weblate (Finnish)
Currently translated at 15.5% (29 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/fi/
Translated using Weblate (Finnish)
Currently translated at 86.1% (1561 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/fi/
Translated using Weblate (Romanian)
Currently translated at 98.4% (65 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 88.4% (69 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 72.3% (68 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 38.1% (71 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 41.7% (78 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 62.0% (72 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 54.4% (68 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 60.1% (74 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 46.4% (79 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (65 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 39.4% (77 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 45.2% (76 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 51.8% (69 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 65.6% (67 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 47.6% (93 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 39.7% (76 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 90.5% (67 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 50.0% (106 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 81.7% (67 of 82 strings)
Translated using Weblate (Spanish)
Currently translated at 97.9% (1775 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/es/
Translated using Weblate (Romanian)
Currently translated at 43.6% (92 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (28 of 28 strings)
Translation: OpenWrt/LuCI/applications/acl
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacl/ro/
Translated using Weblate (Romanian)
Currently translated at 90.5% (67 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 41.1% (77 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 63.8% (69 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 44.6% (75 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 50.5% (99 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 51.1% (68 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 38.7% (74 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 32.9% (113 of 343 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1813 of 1813 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 48.6% (882 of 1813 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% (1813 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pl/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Eric <spice2wolf@gmail.com>
Co-authored-by: Franco Castillo <castillofrancodamian@gmail.com>
Co-authored-by: Hannu Nyman <hannu.nyman@iki.fi>
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: astrskGino <masato.fujino.aug.12@gmail.com>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Eric <spice2wolf@gmail.com>
Signed-off-by: Franco Castillo <castillofrancodamian@gmail.com>
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Signed-off-by: Matthaiks <kitynska@gmail.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: astrskGino <masato.fujino.aug.12@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ro/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
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
2021-12-05 20:02:27 +02:00
Jo-Philipp Wich
35dc6bd558
luci-base: fix syntax error in base translation, resync base translation
...
Fixes: b8d3ca6f82
("luci-mod-network: fix unbalanced and confusing markup in DHCP translation")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-04 00:22:51 +01:00
Hosted Weblate
f5c886a63b
Translated using Weblate (Danish)
...
Currently translated at 5.3% (6 of 113 strings)
Translated using Weblate (Danish)
Currently translated at 8.5% (7 of 82 strings)
Translated using Weblate (Danish)
Currently translated at 6.0% (7 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/da/
Translated using Weblate (Danish)
Currently translated at 4.1% (7 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/da/
Translated using Weblate (Danish)
Currently translated at 17.1% (32 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/da/
Translated using Weblate (Danish)
Currently translated at 90.5% (1641 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 38.8% (28 of 72 strings)
Translated using Weblate (Danish)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/da/
Translated using Weblate (Danish)
Currently translated at 23.6% (50 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/da/
Translated using Weblate (Danish)
Currently translated at 89.6% (1625 of 1813 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/da/
Translated using Weblate (Danish)
Currently translated at 8.0% (15 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/da/
Translated using Weblate (Danish)
Currently translated at 100.0% (212 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 85.8% (67 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 37.6% (70 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 61.2% (71 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 53.6% (67 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 59.3% (73 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 45.8% (78 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 44.0% (74 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 50.5% (99 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 63.7% (72 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 51.1% (68 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 64.7% (66 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 47.1% (92 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 38.7% (74 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 87.8% (65 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 79.2% (65 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 43.6% (92 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 95.4% (63 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 84.6% (66 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 70.2% (66 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 41.1% (77 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 63.8% (69 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 82.7% (67 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 60.3% (70 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 52.8% (66 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 58.5% (72 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 45.2% (77 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 98.4% (64 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 38.9% (76 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 43.4% (73 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 50.0% (98 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 62.8% (71 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 50.3% (67 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 63.7% (65 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 46.6% (91 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 38.2% (73 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 86.4% (64 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 78.0% (64 of 82 strings)
Translated using Weblate (Slovak)
Currently translated at 10.4% (20 of 191 strings)
Co-authored-by: Dušan Kazik <prescott66@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: drax red <drax@outlook.dk>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: drax red <drax@outlook.dk>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/da/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ro/
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/radicale2
Translation: OpenWrt/LuCI/applications/splash
Translation: OpenWrt/LuCI/applications/tinyproxy
Translation: OpenWrt/LuCI/applications/transmission
2021-12-03 23:08:33 +02:00
Hosted Weblate
c1282ed06c
Translated using Weblate (Romanian)
...
Currently translated at 93.9% (62 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 69.1% (65 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 37.0% (69 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 40.6% (76 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 62.9% (68 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 81.4% (66 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 59.4% (69 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 52.0% (65 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 57.7% (71 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 47.0% (852 of 1811 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Co-authored-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Simona Iacob <s@zp1.net>
Signed-off-by: CRISTIAN ANDREI <cristianvdr@gmail.com>
Signed-off-by: Simona Iacob <s@zp1.net>
2021-12-02 20:16:12 +02:00
Jo-Philipp Wich
ff4f52983e
Merge pull request #5540 from jow-/wireguard-peer-gridsection
...
Implement nested grid section support and use it for wireguard peer config
2021-12-02 10:54:36 +01:00
Jo-Philipp Wich
5f98f8cac4
luci-mod-network: allow IPv6 dns, dns_service and domain for RA only mode
...
Fixes : #5564
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-01 23:20:06 +01:00
Jo-Philipp Wich
d19d717de2
luci-mod-network: fix loading ra_mtu and ra_hoplimit options
...
Fixes : #5565
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-01 23:20:06 +01:00
Hannu Nyman
38232307df
luci-base: sync translations
...
Sync translations to fix the last erroneous bits.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2021-12-01 18:48:44 +02:00
Hannu Nyman
bfc0c77658
Fix errors by merging remote-tracking branch 'weblate/master'
...
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2021-12-01 18:41:18 +02:00
Anton Kikin
90df3f5166
Translated using Weblate (Russian)
...
Currently translated at 100.0% (1811 of 1811 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ru/
Signed-off-by: Anton Kikin <a.a.kikin@gmail.com>
2021-12-01 16:44:36 +01:00
Jo-Philipp Wich
b8d3ca6f82
luci-mod-network: fix unbalanced and confusing markup in DHCP translation
...
The string `<%s>...<%s>` is invalid HTML and will confuse translation software
like poedit as well as human translators. It is not clear that `<%s>...<%s>`
is supposed to interpolate into both a start and end tag and `<%s>` might be
mistaken as a quoted form of `%s` like `«%s»` or `〈%s〉`.
Replace the string with `<a href="%s">...</a>` to make it immediately clear
that the acronym is surrounded by an HTML anchor, only pass the destination
URL via string formatting to avoid mistranslations there.
Fixes: 3bfcf99a68 ("luci-mod-network: fix unbalanced and confusing markup in DHCP translation")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-12-01 16:44:20 +01:00
Hosted Weblate
91bbefa64e
Translated using Weblate (Romanian)
...
Currently translated at 42.6% (90 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 40.1% (75 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 56.9% (70 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 96.9% (63 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 42.8% (72 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 49.4% (97 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 61.9% (70 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 49.6% (66 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 62.7% (64 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 46.1% (90 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 37.6% (72 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 76.8% (63 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 92.4% (61 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 83.3% (65 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 68.0% (64 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 90.5% (67 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 36.5% (68 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 62.0% (67 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 80.2% (65 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 58.6% (68 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 51.2% (64 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 98.3% (61 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ro/
Translated using Weblate (Romanian)
Currently translated at 95.3% (62 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 42.2% (71 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 61.0% (69 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 48.8% (65 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 61.7% (63 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 37.1% (71 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 85.1% (63 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 32.9% (113 of 343 strings)
Translated using Weblate (Slovak)
Currently translated at 9.4% (18 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 49.5% (105 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 75.6% (62 of 82 strings)
Translated using Weblate (Italian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Italian)
Currently translated at 18.9% (40 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/it/
Translated using Weblate (Romanian)
Currently translated at 42.1% (89 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 90.9% (60 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 82.0% (64 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 67.0% (63 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 89.1% (66 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 36.0% (67 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 39.5% (74 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 61.1% (66 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 77.7% (63 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 57.7% (67 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 50.4% (63 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 96.7% (60 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ro/
Translated using Weblate (Romanian)
Currently translated at 56.0% (69 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (57 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/ro/
Translated using Weblate (Romanian)
Currently translated at 44.1% (75 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (56 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ro/
Translated using Weblate (Romanian)
Currently translated at 93.8% (61 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 37.9% (74 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 41.6% (70 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 57.2% (103 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 48.9% (96 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (59 of 59 strings)
Translated using Weblate (Romanian)
Currently translated at 60.1% (68 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 48.1% (64 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 60.7% (62 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 45.6% (89 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 36.6% (70 of 191 strings)
Translated using Weblate (Italian)
Currently translated at 67.0% (128 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 83.7% (62 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (33 of 33 strings)
Translated using Weblate (Romanian)
Currently translated at 49.0% (104 of 212 strings)
Translated using Weblate (Slovak)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Romanian)
Currently translated at 32.6% (112 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 74.3% (61 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (58 of 58 strings)
Translated using Weblate (Romanian)
Currently translated at 46.3% (839 of 1812 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Italian)
Currently translated at 52.7% (956 of 1811 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/it/
Co-authored-by: Dušan Kazik <prescott66@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: pisquan8 <cimurro@outlook.de>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: pisquan8 <cimurro@outlook.de>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsahcp/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/it/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/sk/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/it/
Translation: OpenWrt/LuCI/applications/ahcp
Translation: OpenWrt/LuCI/applications/firewall
Translation: OpenWrt/LuCI/applications/nut
Translation: OpenWrt/LuCI/applications/olsr
Translation: OpenWrt/LuCI/applications/openvpn
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/polipo
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/uhttpd
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2021-12-01 17:15:34 +02:00
Paul Dee
d5b00569af
luci-mod-network: Disambiguate DNS config message
...
Responses themselves are not RFC1918, but the address types that they
contain may be.
Signed-off-by: Paul Dee <itsascambutmailmeanyway@gmail.com>
2021-12-01 02:12:17 +01:00
Hosted Weblate
2ab61de69c
Translated using Weblate (Romanian)
...
Currently translated at 33.8% (63 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 72.8% (59 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 53.4% (62 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 47.2% (59 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 90.3% (56 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ro/
Translated using Weblate (Romanian)
Currently translated at 52.0% (64 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 96.4% (55 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/ro/
Translated using Weblate (Romanian)
Currently translated at 98.2% (55 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ro/
Translated using Weblate (Romanian)
Currently translated at 86.1% (56 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 48.1% (102 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 39.3% (83 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 81.8% (54 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 75.6% (59 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 62.7% (59 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 79.7% (59 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (52 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ro/
Translated using Weblate (Romanian)
Currently translated at 33.3% (62 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 36.8% (69 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 55.5% (60 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 71.6% (58 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 52.5% (61 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 46.4% (58 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 88.7% (55 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ro/
Translated using Weblate (Romanian)
Currently translated at 51.2% (63 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 94.7% (54 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/ro/
Translated using Weblate (Romanian)
Currently translated at 42.9% (73 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (48 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/ro/
Translated using Weblate (Romanian)
Currently translated at 96.4% (54 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ro/
Translated using Weblate (Romanian)
Currently translated at 84.6% (55 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (49 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ro/
Translated using Weblate (Romanian)
Currently translated at 37.4% (73 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 38.6% (65 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 56.6% (102 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 47.4% (93 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 93.2% (55 of 59 strings)
Translated using Weblate (Romanian)
Currently translated at 55.7% (63 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 43.6% (58 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 54.9% (56 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (48 of 48 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Romanian)
Currently translated at 43.5% (85 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 34.5% (66 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 77.0% (57 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 47.6% (101 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 32.3% (111 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 68.2% (56 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 94.8% (55 of 58 strings)
Translated using Weblate (Romanian)
Currently translated at 46.1% (837 of 1812 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% (1811 of 1811 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/pt_BR/
Translated using Weblate (Romanian)
Currently translated at 38.2% (65 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 66.2% (49 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 60.9% (50 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 46.1% (836 of 1812 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 46.6% (99 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 36.0% (76 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 69.6% (46 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 61.5% (48 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 56.3% (53 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 70.2% (52 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 88.4% (46 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ro/
Translated using Weblate (Turkish)
Currently translated at 100.0% (20 of 20 strings)
Translation: OpenWrt/LuCI/applications/wireguard
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationswireguard/tr/
Translated using Weblate (Romanian)
Currently translated at 29.5% (55 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 34.2% (64 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 50.0% (54 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 62.9% (51 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 45.6% (53 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 40.0% (50 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 75.8% (47 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ro/
Translated using Weblate (Romanian)
Currently translated at 44.7% (55 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 82.4% (47 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/ro/
Translated using Weblate (Romanian)
Currently translated at 37.6% (64 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 82.1% (46 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ro/
Translated using Weblate (Romanian)
Currently translated at 75.3% (49 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 97.9% (48 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ro/
Translated using Weblate (Romanian)
Currently translated at 33.3% (65 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 32.7% (55 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 79.6% (47 of 59 strings)
Translated using Weblate (Romanian)
Currently translated at 46.9% (53 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 36.8% (49 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 45.0% (46 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 29.8% (57 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 64.8% (48 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 31.4% (108 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 59.7% (49 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 82.7% (48 of 58 strings)
Translated using Weblate (Turkish)
Currently translated at 100.0% (1811 of 1811 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/tr/
Translated using Weblate (Romanian)
Currently translated at 46.0% (835 of 1812 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 39.2% (49 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 74.1% (46 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ro/
Translated using Weblate (Romanian)
Currently translated at 80.7% (46 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/ro/
Translated using Weblate (Romanian)
Currently translated at 37.0% (63 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 95.8% (46 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/ro/
Translated using Weblate (Romanian)
Currently translated at 80.3% (45 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ro/
Translated using Weblate (Romanian)
Currently translated at 95.9% (47 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ro/
Translated using Weblate (Romanian)
Currently translated at 32.1% (54 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 77.9% (46 of 59 strings)
Translated using Weblate (Romanian)
Currently translated at 46.0% (52 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 36.0% (48 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 44.1% (45 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 40.0% (78 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 29.3% (56 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 63.5% (47 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 58.5% (48 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 79.3% (46 of 58 strings)
Translated using Weblate (Romanian)
Currently translated at 46.0% (834 of 1811 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (49 of 49 strings)
Translated using Weblate (Romanian)
Currently translated at 35.0% (74 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 66.6% (44 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 60.2% (47 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (44 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ro/
Translated using Weblate (Romanian)
Currently translated at 54.2% (51 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 68.9% (51 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 84.6% (44 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ro/
Translated using Weblate (Romanian)
Currently translated at 28.4% (53 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 33.6% (63 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 49.0% (53 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 61.7% (50 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 44.8% (52 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 38.4% (48 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 72.5% (45 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ro/
Translated using Weblate (Romanian)
Currently translated at 43.9% (54 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 78.9% (45 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/ro/
Translated using Weblate (Romanian)
Currently translated at 36.4% (62 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 93.7% (45 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/ro/
Translated using Weblate (Romanian)
Currently translated at 78.5% (44 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ro/
Translated using Weblate (Romanian)
Currently translated at 73.8% (48 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 93.8% (46 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ro/
Translated using Weblate (Romanian)
Currently translated at 32.3% (63 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (43 of 43 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ro/
Translated using Weblate (Romanian)
Currently translated at 30.9% (52 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
Currently translated at 53.8% (97 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 76.2% (45 of 59 strings)
Translated using Weblate (Romanian)
Currently translated at 45.1% (51 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 35.3% (47 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (44 of 44 strings)
Translated using Weblate (Romanian)
Currently translated at 43.1% (44 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 97.9% (47 of 48 strings)
Translated using Weblate (Romanian)
Currently translated at 39.4% (77 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 28.7% (55 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 62.1% (46 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 46.2% (98 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 100.0% (72 of 72 strings)
Translated using Weblate (Romanian)
Currently translated at 30.9% (106 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 57.3% (47 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 77.5% (45 of 58 strings)
Translated using Weblate (Romanian)
Currently translated at 45.9% (833 of 1811 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 33.1% (70 of 211 strings)
Translation: OpenWrt/LuCI/applications/dockerman
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdockerman/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (50 of 50 strings)
Translation: OpenWrt/LuCI/applications/acme
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsacme/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (39 of 39 strings)
Translation: OpenWrt/LuCI/applications/sqm
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssqm/ro/
Translated using Weblate (Romanian)
Currently translated at 59.0% (39 of 66 strings)
Translation: OpenWrt/LuCI/applications/frps
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrps/ro/
Translated using Weblate (Romanian)
Currently translated at 57.6% (45 of 78 strings)
Translation: OpenWrt/LuCI/applications/frpc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfrpc/ro/
Translated using Weblate (Romanian)
Currently translated at 93.1% (41 of 44 strings)
Translation: OpenWrt/LuCI/applications/ser2net
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsser2net/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (31 of 31 strings)
Translation: OpenWrt/LuCI/applications/yggdrasil
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsyggdrasil/ro/
Translated using Weblate (Romanian)
Currently translated at 52.1% (49 of 94 strings)
Translation: OpenWrt/LuCI/applications/vpn-policy-routing
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsvpn-policy-routing/ro/
Translated using Weblate (Romanian)
Currently translated at 62.1% (46 of 74 strings)
Translation: OpenWrt/LuCI/applications/https-dns-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationshttps-dns-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 78.8% (41 of 52 strings)
Translation: OpenWrt/LuCI/applications/ttyd
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsttyd/ro/
Translated using Weblate (Romanian)
Currently translated at 26.3% (49 of 186 strings)
Translation: OpenWrt/LuCI/applications/unbound
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsunbound/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (17 of 17 strings)
Translation: OpenWrt/LuCI/applications/udpxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsudpxy/ro/
Translated using Weblate (Romanian)
Currently translated at 31.5% (59 of 187 strings)
Translation: OpenWrt/LuCI/applications/travelmate
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstravelmate/ro/
Translated using Weblate (Romanian)
Currently translated at 46.2% (50 of 108 strings)
Translation: OpenWrt/LuCI/applications/simple-adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssimple-adblock/ro/
Translated using Weblate (Romanian)
Currently translated at 59.2% (48 of 81 strings)
Translation: OpenWrt/LuCI/applications/shadowsocks-libev
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsshadowsocks-libev/ro/
Translated using Weblate (Romanian)
Currently translated at 39.6% (46 of 116 strings)
Translation: OpenWrt/LuCI/applications/radicale
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale/ro/
Translated using Weblate (Romanian)
Currently translated at 33.6% (42 of 125 strings)
Translation: OpenWrt/LuCI/applications/privoxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsprivoxy/ro/
Translated using Weblate (Romanian)
Currently translated at 66.1% (41 of 62 strings)
Translation: OpenWrt/LuCI/applications/ocserv
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsocserv/ro/
Translated using Weblate (Romanian)
Currently translated at 41.4% (51 of 123 strings)
Translation: OpenWrt/LuCI/applications/nlbwmon
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnlbwmon/ro/
Translated using Weblate (Romanian)
Currently translated at 71.9% (41 of 57 strings)
Translation: OpenWrt/LuCI/applications/nft-qos
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnft-qos/ro/
Translated using Weblate (Romanian)
Currently translated at 33.5% (57 of 170 strings)
Translation: OpenWrt/LuCI/applications/mwan3
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmwan3/ro/
Translated using Weblate (Romanian)
Currently translated at 85.4% (41 of 48 strings)
Translation: OpenWrt/LuCI/applications/mjpg-streamer
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsmjpg-streamer/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (24 of 24 strings)
Translation: OpenWrt/LuCI/applications/lxc
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationslxc/ro/
Translated using Weblate (Romanian)
Currently translated at 71.4% (40 of 56 strings)
Translation: OpenWrt/LuCI/applications/dump1090
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdump1090/ro/
Translated using Weblate (Romanian)
Currently translated at 67.6% (44 of 65 strings)
Translation: OpenWrt/LuCI/applications/dnscrypt-proxy
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsdnscrypt-proxy/ro/
Translated using Weblate (Romanian)
Currently translated at 100.0% (40 of 40 strings)
Translation: OpenWrt/LuCI/applications/clamav
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsclamav/ro/
Translated using Weblate (Romanian)
Currently translated at 85.7% (42 of 49 strings)
Translation: OpenWrt/LuCI/applications/bmx7
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbmx7/ro/
Translated using Weblate (Romanian)
Currently translated at 29.7% (58 of 195 strings)
Translation: OpenWrt/LuCI/applications/banip
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsbanip/ro/
Translated using Weblate (Romanian)
Currently translated at 90.6% (39 of 43 strings)
Translation: OpenWrt/LuCI/applications/attendedsysupgrade
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsattendedsysupgrade/ro/
Translated using Weblate (Romanian)
Currently translated at 29.1% (49 of 168 strings)
Translation: OpenWrt/LuCI/applications/aria2
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsaria2/ro/
Translated using Weblate (Romanian)
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/ro/
Translated using Weblate (Romanian)
Currently translated at 53.3% (96 of 180 strings)
Translation: OpenWrt/LuCI/applications/adblock
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsadblock/ro/
Translated using Weblate (Romanian)
Currently translated at 45.9% (90 of 196 strings)
Translation: OpenWrt/LuCI/applications/ddns
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsddns/ro/
Translated using Weblate (Romanian)
Currently translated at 69.4% (41 of 59 strings)
Translated using Weblate (Romanian)
Currently translated at 40.7% (46 of 113 strings)
Translated using Weblate (Romanian)
Currently translated at 32.3% (43 of 133 strings)
Translated using Weblate (Romanian)
Currently translated at 88.6% (39 of 44 strings)
Translated using Weblate (Romanian)
Currently translated at 41.1% (42 of 102 strings)
Translated using Weblate (Romanian)
Currently translated at 89.5% (43 of 48 strings)
Translated using Weblate (Romanian)
Currently translated at 97.9% (48 of 49 strings)
Translated using Weblate (Romanian)
Currently translated at 37.4% (73 of 195 strings)
Translated using Weblate (Romanian)
Currently translated at 26.1% (50 of 191 strings)
Translated using Weblate (Romanian)
Currently translated at 56.7% (42 of 74 strings)
Translated using Weblate (Romanian)
Currently translated at 45.2% (96 of 212 strings)
Translated using Weblate (Romanian)
Currently translated at 30.0% (103 of 343 strings)
Translated using Weblate (Romanian)
Currently translated at 53.6% (44 of 82 strings)
Translated using Weblate (Romanian)
Currently translated at 70.6% (41 of 58 strings)
Translated using Weblate (Romanian)
Currently translated at 45.7% (828 of 1811 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/ro/
Translated using Weblate (Romanian)
Currently translated at 66.1% (39 of 59 strings)
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1811 of 1811 strings)
Translation: OpenWrt/LuCI/modules/luci-base
Translate-URL: https://hosted.weblate.org/projects/openwrt/luci/zh_Hans/
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Meano Lee <meanocat@gmail.com>
Co-authored-by: Simona Iacob <s@zp1.net>
Co-authored-by: ToldYouThat <itoldyouthat@protonmail.com>
Co-authored-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Signed-off-by: Meano Lee <meanocat@gmail.com>
Signed-off-by: Simona Iacob <s@zp1.net>
Signed-off-by: ToldYouThat <itoldyouthat@protonmail.com>
Signed-off-by: Wellington Terumi Uemura <wellingtonuemura@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfirewall/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsfwknopd/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsminidlna/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsnut/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsolsr/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopenvpn/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsopkg/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationspolipo/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsradicale2/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationssplash/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsstatistics/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstinyproxy/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationstransmission/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsuhttpd/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/luciapplicationsupnp/ro/
Translate-URL: https://hosted.weblate.org/projects/openwrt/lucimodulesluci-mod-dashboard/ro/
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/openvpn
Translation: OpenWrt/LuCI/applications/opkg
Translation: OpenWrt/LuCI/applications/polipo
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/uhttpd
Translation: OpenWrt/LuCI/applications/upnp
Translation: OpenWrt/LuCI/modules/luci-mod-dashboard
2021-11-30 15:28:43 +02:00
Jo-Philipp Wich
a75ab22e62
luci-mod-status: change "Storage usage" heading to just "Storage"
...
Also rename `25_diskfree.js` to `25_storage.js` to make naming anologeous
with "Memory" / `20_memory.js`.
Fixes: f09920f21a
("luci-mod-status: add diskfree info")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2021-11-29 16:01:12 +01:00