diff options
Diffstat (limited to 'applications')
48 files changed, 96 insertions, 42 deletions
diff --git a/applications/luci-app-acl/Makefile b/applications/luci-app-acl/Makefile index 11af15ebb7..f3f03aac64 100644 --- a/applications/luci-app-acl/Makefile +++ b/applications/luci-app-acl/Makefile @@ -2,6 +2,8 @@ include $(TOPDIR)/rules.mk +PKG_LICENSE:=Apache-2.0 + LUCI_TITLE:=LuCI account management module LUCI_DEPENDS:=+luci-base diff --git a/applications/luci-app-ahcp/Makefile b/applications/luci-app-ahcp/Makefile index f66be24766..47e3f8c562 100644 --- a/applications/luci-app-ahcp/Makefile +++ b/applications/luci-app-ahcp/Makefile @@ -6,6 +6,8 @@ include $(TOPDIR)/rules.mk +PKG_LICENSE:=Apache-2.0 + LUCI_TITLE:=LuCI Support for AHCPd LUCI_DEPENDS:=+luci-base +luci-compat +ahcpd diff --git a/applications/luci-app-alist/Makefile b/applications/luci-app-alist/Makefile index 3c660830fa..ab0ea5d576 100644 --- a/applications/luci-app-alist/Makefile +++ b/applications/luci-app-alist/Makefile @@ -4,6 +4,8 @@ include $(TOPDIR)/rules.mk +PKG_LICENSE:=Apache-2.0 + LUCI_TITLE:=LuCI app for AList LUCI_DEPENDS:=+alist diff --git a/applications/luci-app-nft-qos/Makefile b/applications/luci-app-nft-qos/Makefile index 1690854fc4..ba546d999a 100644 --- a/applications/luci-app-nft-qos/Makefile +++ b/applications/luci-app-nft-qos/Makefile @@ -6,6 +6,8 @@ include $(TOPDIR)/rules.mk +PKG_LICENSE:=Apache-2.0 + LUCI_TITLE:=QoS over Nftables LUCI_DEPENDS:=+luci-base +luci-compat +nft-qos diff --git a/applications/luci-app-opkg/Makefile b/applications/luci-app-opkg/Makefile index 0f3d8a7027..1510a5acb9 100644 --- a/applications/luci-app-opkg/Makefile +++ b/applications/luci-app-opkg/Makefile @@ -6,6 +6,8 @@ include $(TOPDIR)/rules.mk +PKG_LICENSE:=Apache-2.0 + LUCI_TITLE:=OPKG package management application LUCI_DEPENDS:=+luci-base +opkg diff --git a/applications/luci-app-sqm/Makefile b/applications/luci-app-sqm/Makefile index cce746a2a8..f577778ba3 100644 --- a/applications/luci-app-sqm/Makefile +++ b/applications/luci-app-sqm/Makefile @@ -3,11 +3,11 @@ include $(TOPDIR)/rules.mk -LUCI_TITLE:=LuCI Support for SQM Scripts -LUCI_DESCRIPTION:=Luci interface for the SQM scripts queue management package - PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk> +PKG_LICENSE:=Apache-2.0 +LUCI_TITLE:=LuCI Support for SQM Scripts +LUCI_DESCRIPTION:=Luci interface for the SQM scripts queue management package LUCI_DEPENDS:=+luci-base +sqm-scripts include ../../luci.mk diff --git a/applications/luci-app-statistics/Makefile b/applications/luci-app-statistics/Makefile index 140c136d5b..132b1402c7 100644 --- a/applications/luci-app-statistics/Makefile +++ b/applications/luci-app-statistics/Makefile @@ -6,6 +6,8 @@ include $(TOPDIR)/rules.mk +PKG_LICENSE:=Apache-2.0 + LUCI_TITLE:=LuCI Statistics Application LUCI_DEPENDS:= \ +luci-base \ diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/users.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/users.js new file mode 100644 index 0000000000..06921a3f76 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/users.js @@ -0,0 +1,23 @@ +/* Licensed to the public under the Apache License 2.0. */ + +'use strict'; +'require baseclass'; + +return baseclass.extend({ + title: _('Users'), + + rrdargs: function(graph, host, plugin, plugin_instance, dtype) { + return { + title: "%H: Users (console logins)", + vlabel: "count", + data: { + types: [ "users" ], + options: { + users: { + title: "Users %di", + } + } + } + }; + } +}); diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/users.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/users.js new file mode 100644 index 0000000000..05b5eb8849 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/users.js @@ -0,0 +1,16 @@ +'use strict'; +'require baseclass'; +'require form'; + +return baseclass.extend({ + title: _('Users Plugin Configuration'), + description: _('The users plugin collects statistics about users logged in locally via shell. NOTE: Local shell (wtmp) tracking is NOT enabled in default builds. Additional setup is required to get non-zero counts.'), + + addFormOptions: function(s) { + var o = s.option(form.Flag, 'enable', _('Enable this plugin')); + }, + + configSummary: function(section) { + return _('Monitoring shell users count'); + } +}); diff --git a/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua b/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua index 806b25acec..f23f38f937 100644 --- a/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua +++ b/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua @@ -236,7 +236,7 @@ if (valman == "0") then pro = s1:taboption("resource", ListValue, "protocol", translate("Recursion Protocol"), - translate("Chose the IP versions used upstream and downstream")) + translate("Choose the IP versions used upstream and downstream")) pro:value("default", translate("Default")) pro:value("ip4_only", translate("IP4 Only")) pro:value("ip6_local", translate("IP4 All and IP6 Local")) diff --git a/applications/luci-app-unbound/po/ar/unbound.po b/applications/luci-app-unbound/po/ar/unbound.po index ec66429f89..496a5097a6 100644 --- a/applications/luci-app-unbound/po/ar/unbound.po +++ b/applications/luci-app-unbound/po/ar/unbound.po @@ -77,7 +77,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/bg/unbound.po b/applications/luci-app-unbound/po/bg/unbound.po index 4d37605748..2e7e5032e1 100644 --- a/applications/luci-app-unbound/po/bg/unbound.po +++ b/applications/luci-app-unbound/po/bg/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/bn_BD/unbound.po b/applications/luci-app-unbound/po/bn_BD/unbound.po index 2e4edeee61..dc96dbc6e4 100644 --- a/applications/luci-app-unbound/po/bn_BD/unbound.po +++ b/applications/luci-app-unbound/po/bn_BD/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/ca/unbound.po b/applications/luci-app-unbound/po/ca/unbound.po index e9b36ed0de..1c5393addc 100644 --- a/applications/luci-app-unbound/po/ca/unbound.po +++ b/applications/luci-app-unbound/po/ca/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/cs/unbound.po b/applications/luci-app-unbound/po/cs/unbound.po index e7d91dc21e..c30d275996 100644 --- a/applications/luci-app-unbound/po/cs/unbound.po +++ b/applications/luci-app-unbound/po/cs/unbound.po @@ -77,7 +77,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/da/unbound.po b/applications/luci-app-unbound/po/da/unbound.po index 7a681c9139..9c8bacaa47 100644 --- a/applications/luci-app-unbound/po/da/unbound.po +++ b/applications/luci-app-unbound/po/da/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/de/unbound.po b/applications/luci-app-unbound/po/de/unbound.po index 7081b30768..c67ada91b8 100644 --- a/applications/luci-app-unbound/po/de/unbound.po +++ b/applications/luci-app-unbound/po/de/unbound.po @@ -78,7 +78,7 @@ msgid "Choose Unbounds listening port" msgstr "Wähle den Unbounds Listening Port" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Wählen Sie die vor- und nachgelagerten IP-Versionen aus" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/el/unbound.po b/applications/luci-app-unbound/po/el/unbound.po index 0489f7d1ca..391075fea0 100644 --- a/applications/luci-app-unbound/po/el/unbound.po +++ b/applications/luci-app-unbound/po/el/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/en/unbound.po b/applications/luci-app-unbound/po/en/unbound.po index d3e5c3f1ac..5518c9352d 100644 --- a/applications/luci-app-unbound/po/en/unbound.po +++ b/applications/luci-app-unbound/po/en/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/es/unbound.po b/applications/luci-app-unbound/po/es/unbound.po index 1f03e02446..abe32afd12 100644 --- a/applications/luci-app-unbound/po/es/unbound.po +++ b/applications/luci-app-unbound/po/es/unbound.po @@ -81,7 +81,7 @@ msgid "Choose Unbounds listening port" msgstr "Escoge el puerto de escucha Unbounds" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" "Elija las versiones de IP utilizadas en sentido ascendente y descendente" diff --git a/applications/luci-app-unbound/po/fi/unbound.po b/applications/luci-app-unbound/po/fi/unbound.po index e200975ec2..a1c84a16ae 100644 --- a/applications/luci-app-unbound/po/fi/unbound.po +++ b/applications/luci-app-unbound/po/fi/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/fr/unbound.po b/applications/luci-app-unbound/po/fr/unbound.po index 5841efcd1d..cb81cb2e44 100644 --- a/applications/luci-app-unbound/po/fr/unbound.po +++ b/applications/luci-app-unbound/po/fr/unbound.po @@ -82,7 +82,7 @@ msgid "Choose Unbounds listening port" msgstr "Choisir le Port d'écoute Unboud" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Choisir les versions IP utilisées en amont et en aval" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/he/unbound.po b/applications/luci-app-unbound/po/he/unbound.po index 10f7e121a0..7d5e6f8665 100644 --- a/applications/luci-app-unbound/po/he/unbound.po +++ b/applications/luci-app-unbound/po/he/unbound.po @@ -77,7 +77,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/hi/unbound.po b/applications/luci-app-unbound/po/hi/unbound.po index 9b457ec3a9..42df183e6f 100644 --- a/applications/luci-app-unbound/po/hi/unbound.po +++ b/applications/luci-app-unbound/po/hi/unbound.po @@ -70,7 +70,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/hu/unbound.po b/applications/luci-app-unbound/po/hu/unbound.po index 0f5ad1203b..14bc04c28b 100644 --- a/applications/luci-app-unbound/po/hu/unbound.po +++ b/applications/luci-app-unbound/po/hu/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/it/unbound.po b/applications/luci-app-unbound/po/it/unbound.po index 12b9ee5fa0..3eb1023dfe 100644 --- a/applications/luci-app-unbound/po/it/unbound.po +++ b/applications/luci-app-unbound/po/it/unbound.po @@ -81,7 +81,7 @@ msgid "Choose Unbounds listening port" msgstr "Scegliere la porta di ascolto di Unbound" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Scegliere le versioni IP usate a monte e a valle" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/ja/unbound.po b/applications/luci-app-unbound/po/ja/unbound.po index 0719a694f1..bf00af25ec 100644 --- a/applications/luci-app-unbound/po/ja/unbound.po +++ b/applications/luci-app-unbound/po/ja/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "アップストリームとダウンストリームで使用される IP バージョンを選択" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/ko/unbound.po b/applications/luci-app-unbound/po/ko/unbound.po index 1e229798ad..0e4db824cc 100644 --- a/applications/luci-app-unbound/po/ko/unbound.po +++ b/applications/luci-app-unbound/po/ko/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/lt/unbound.po b/applications/luci-app-unbound/po/lt/unbound.po index 392fb5f6ac..1a12884508 100644 --- a/applications/luci-app-unbound/po/lt/unbound.po +++ b/applications/luci-app-unbound/po/lt/unbound.po @@ -80,7 +80,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/mr/unbound.po b/applications/luci-app-unbound/po/mr/unbound.po index a74eda46a5..b3259f8dbc 100644 --- a/applications/luci-app-unbound/po/mr/unbound.po +++ b/applications/luci-app-unbound/po/mr/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/ms/unbound.po b/applications/luci-app-unbound/po/ms/unbound.po index 11ce722ae9..ce2a9c7501 100644 --- a/applications/luci-app-unbound/po/ms/unbound.po +++ b/applications/luci-app-unbound/po/ms/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/nb_NO/unbound.po b/applications/luci-app-unbound/po/nb_NO/unbound.po index 812fd6268b..d1b0c49b72 100644 --- a/applications/luci-app-unbound/po/nb_NO/unbound.po +++ b/applications/luci-app-unbound/po/nb_NO/unbound.po @@ -77,7 +77,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/nl/unbound.po b/applications/luci-app-unbound/po/nl/unbound.po index f7dc4d2451..e068a63831 100644 --- a/applications/luci-app-unbound/po/nl/unbound.po +++ b/applications/luci-app-unbound/po/nl/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "Kies Unbounds luisterpoort" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Kies de IP-versies die upstream en downstream worden gebruikt" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/pl/unbound.po b/applications/luci-app-unbound/po/pl/unbound.po index 894e76772a..c6a452517d 100644 --- a/applications/luci-app-unbound/po/pl/unbound.po +++ b/applications/luci-app-unbound/po/pl/unbound.po @@ -78,7 +78,7 @@ msgid "Choose Unbounds listening port" msgstr "Wybierz port nasłuchiwania bez ograniczeń" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Wybór wersji IP używanych do wysyłania i pobierania" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/pt/unbound.po b/applications/luci-app-unbound/po/pt/unbound.po index e0eed4c08d..8df9f97894 100644 --- a/applications/luci-app-unbound/po/pt/unbound.po +++ b/applications/luci-app-unbound/po/pt/unbound.po @@ -81,7 +81,7 @@ msgid "Choose Unbounds listening port" msgstr "Escolha a porta de escuta de Unbound" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Escolher as versões IP utilizadas a montante e a jusante" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/pt_BR/unbound.po b/applications/luci-app-unbound/po/pt_BR/unbound.po index 64c9bd2af9..ada560128a 100644 --- a/applications/luci-app-unbound/po/pt_BR/unbound.po +++ b/applications/luci-app-unbound/po/pt_BR/unbound.po @@ -81,7 +81,7 @@ msgid "Choose Unbounds listening port" msgstr "Escolha a porta de escuta Unbounds" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Escolha as versões IP a utilizadas upstream e downstream" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/ro/unbound.po b/applications/luci-app-unbound/po/ro/unbound.po index a653b45014..a96f0f7d17 100644 --- a/applications/luci-app-unbound/po/ro/unbound.po +++ b/applications/luci-app-unbound/po/ro/unbound.po @@ -82,7 +82,7 @@ msgid "Choose Unbounds listening port" msgstr "Alegeți Unbounds listening port" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Alegeți versiunile IP utilizate în upstream și downstream" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/ru/unbound.po b/applications/luci-app-unbound/po/ru/unbound.po index 90c38ca72a..89edee774e 100644 --- a/applications/luci-app-unbound/po/ru/unbound.po +++ b/applications/luci-app-unbound/po/ru/unbound.po @@ -78,7 +78,7 @@ msgid "Choose Unbounds listening port" msgstr "Выберите порт, на котором Unbound будет ожидать входящих подключений" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Выберите версию IP для восходящих и нисходящих соединений" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/sk/unbound.po b/applications/luci-app-unbound/po/sk/unbound.po index ff95044072..d691fad386 100644 --- a/applications/luci-app-unbound/po/sk/unbound.po +++ b/applications/luci-app-unbound/po/sk/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/sv/unbound.po b/applications/luci-app-unbound/po/sv/unbound.po index 025c11c0c4..1bd260cd98 100644 --- a/applications/luci-app-unbound/po/sv/unbound.po +++ b/applications/luci-app-unbound/po/sv/unbound.po @@ -77,7 +77,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/templates/unbound.pot b/applications/luci-app-unbound/po/templates/unbound.pot index c5fb594b8b..92452d9efd 100644 --- a/applications/luci-app-unbound/po/templates/unbound.pot +++ b/applications/luci-app-unbound/po/templates/unbound.pot @@ -67,7 +67,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/tr/unbound.po b/applications/luci-app-unbound/po/tr/unbound.po index 01a6d9e260..ec86ba425c 100644 --- a/applications/luci-app-unbound/po/tr/unbound.po +++ b/applications/luci-app-unbound/po/tr/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "Unbound'un dinleme bağlantı noktasını seçin" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Yukarı akış ve aşağı akış yönünde kullanılan IP sürümlerini seçin" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/uk/unbound.po b/applications/luci-app-unbound/po/uk/unbound.po index 282ff1f119..c7c728bba2 100644 --- a/applications/luci-app-unbound/po/uk/unbound.po +++ b/applications/luci-app-unbound/po/uk/unbound.po @@ -77,7 +77,7 @@ msgid "Choose Unbounds listening port" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/vi/unbound.po b/applications/luci-app-unbound/po/vi/unbound.po index 77af83569e..ef4b730519 100644 --- a/applications/luci-app-unbound/po/vi/unbound.po +++ b/applications/luci-app-unbound/po/vi/unbound.po @@ -77,7 +77,7 @@ msgid "Choose Unbounds listening port" msgstr "Chọn cổng lắng nghe của Unbound" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "Chọn phiên bản IP được sử dụng hướng lên và hướng xuống" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/zh_Hans/unbound.po b/applications/luci-app-unbound/po/zh_Hans/unbound.po index 90a4b2dffe..6c093beb35 100644 --- a/applications/luci-app-unbound/po/zh_Hans/unbound.po +++ b/applications/luci-app-unbound/po/zh_Hans/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "选择 Unbounds 监听端口" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "选择上游和下游使用的 IP 版本" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-unbound/po/zh_Hant/unbound.po b/applications/luci-app-unbound/po/zh_Hant/unbound.po index 8db374f26b..dd68590f03 100644 --- a/applications/luci-app-unbound/po/zh_Hant/unbound.po +++ b/applications/luci-app-unbound/po/zh_Hant/unbound.po @@ -76,7 +76,7 @@ msgid "Choose Unbounds listening port" msgstr "選擇 Unbounds 監聽埠" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:239 -msgid "Chose the IP versions used upstream and downstream" +msgid "Choose the IP versions used upstream and downstream" msgstr "選擇上游和下游使用的 IP 版本" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 diff --git a/applications/luci-app-wol/Makefile b/applications/luci-app-wol/Makefile index f7466c0175..6d493cc76b 100644 --- a/applications/luci-app-wol/Makefile +++ b/applications/luci-app-wol/Makefile @@ -6,6 +6,8 @@ include $(TOPDIR)/rules.mk +PKG_LICENSE:=Apache-2.0 + LUCI_TITLE:=LuCI Support for Wake-on-LAN LUCI_DEPENDS:=+luci-base +etherwake diff --git a/applications/luci-app-xinetd/Makefile b/applications/luci-app-xinetd/Makefile index bbe0b22c2e..3f9554f1e7 100644 --- a/applications/luci-app-xinetd/Makefile +++ b/applications/luci-app-xinetd/Makefile @@ -7,11 +7,12 @@ include $(TOPDIR)/rules.mk +PKG_LICENSE:=Apache-2.0 +PKG_MAINTAINER:=Helge Mader <ma@dev.tdt.de> + LUCI_TITLE:=LuCI Support for xinetd LUCI_DEPENDS:=+luci-base +xinetd -PKG_MAINTAINER:=Helge Mader <ma@dev.tdt.de> - include ../../luci.mk # call BuildPackage - OpenWrt buildroot signature |