From 1bb4822dca6113f73e3bc89e2acf15935e6f8e92 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 3 Dec 2014 15:17:05 +0100 Subject: Rework LuCI build system * Rename subdirectories to their repective OpenWrt package names * Make each LuCI module its own standalone package * Deploy a shared luci.mk which is used by each module Makefile Signed-off-by: Jo-Philipp Wich --- applications/luci-app-diag-core/Makefile | 14 +++++++ .../luasrc/controller/luci_diag.lua | 26 +++++++++++++ .../luci-app-diag-core/luasrc/view/diag/index.htm | 18 +++++++++ .../luasrc/view/diag/network_config_index.htm | 18 +++++++++ applications/luci-app-diag-core/po/ca/diag_core.po | 33 ++++++++++++++++ applications/luci-app-diag-core/po/cs/diag_core.po | 39 +++++++++++++++++++ applications/luci-app-diag-core/po/de/diag_core.po | 42 ++++++++++++++++++++ applications/luci-app-diag-core/po/el/diag_core.po | 38 ++++++++++++++++++ applications/luci-app-diag-core/po/en/diag_core.po | 42 ++++++++++++++++++++ applications/luci-app-diag-core/po/es/diag_core.po | 42 ++++++++++++++++++++ applications/luci-app-diag-core/po/fr/diag_core.po | 42 ++++++++++++++++++++ applications/luci-app-diag-core/po/he/diag_core.po | 30 +++++++++++++++ applications/luci-app-diag-core/po/hu/diag_core.po | 42 ++++++++++++++++++++ applications/luci-app-diag-core/po/it/diag_core.po | 42 ++++++++++++++++++++ applications/luci-app-diag-core/po/ja/diag_core.po | 33 ++++++++++++++++ applications/luci-app-diag-core/po/ms/diag_core.po | 29 ++++++++++++++ applications/luci-app-diag-core/po/no/diag_core.po | 35 +++++++++++++++++ applications/luci-app-diag-core/po/pl/diag_core.po | 43 +++++++++++++++++++++ .../luci-app-diag-core/po/pt-br/diag_core.po | 42 ++++++++++++++++++++ applications/luci-app-diag-core/po/pt/diag_core.po | 39 +++++++++++++++++++ applications/luci-app-diag-core/po/ro/diag_core.po | 45 ++++++++++++++++++++++ applications/luci-app-diag-core/po/ru/diag_core.po | 45 ++++++++++++++++++++++ applications/luci-app-diag-core/po/sk/diag_core.po | 30 +++++++++++++++ applications/luci-app-diag-core/po/sv/diag_core.po | 31 +++++++++++++++ .../luci-app-diag-core/po/templates/diag_core.pot | 23 +++++++++++ applications/luci-app-diag-core/po/tr/diag_core.po | 30 +++++++++++++++ applications/luci-app-diag-core/po/uk/diag_core.po | 40 +++++++++++++++++++ applications/luci-app-diag-core/po/vi/diag_core.po | 30 +++++++++++++++ .../luci-app-diag-core/po/zh-cn/diag_core.po | 36 +++++++++++++++++ .../luci-app-diag-core/po/zh-tw/diag_core.po | 33 ++++++++++++++++ 30 files changed, 1032 insertions(+) create mode 100644 applications/luci-app-diag-core/Makefile create mode 100644 applications/luci-app-diag-core/luasrc/controller/luci_diag.lua create mode 100644 applications/luci-app-diag-core/luasrc/view/diag/index.htm create mode 100644 applications/luci-app-diag-core/luasrc/view/diag/network_config_index.htm create mode 100644 applications/luci-app-diag-core/po/ca/diag_core.po create mode 100644 applications/luci-app-diag-core/po/cs/diag_core.po create mode 100644 applications/luci-app-diag-core/po/de/diag_core.po create mode 100644 applications/luci-app-diag-core/po/el/diag_core.po create mode 100644 applications/luci-app-diag-core/po/en/diag_core.po create mode 100644 applications/luci-app-diag-core/po/es/diag_core.po create mode 100644 applications/luci-app-diag-core/po/fr/diag_core.po create mode 100644 applications/luci-app-diag-core/po/he/diag_core.po create mode 100644 applications/luci-app-diag-core/po/hu/diag_core.po create mode 100644 applications/luci-app-diag-core/po/it/diag_core.po create mode 100644 applications/luci-app-diag-core/po/ja/diag_core.po create mode 100644 applications/luci-app-diag-core/po/ms/diag_core.po create mode 100644 applications/luci-app-diag-core/po/no/diag_core.po create mode 100644 applications/luci-app-diag-core/po/pl/diag_core.po create mode 100644 applications/luci-app-diag-core/po/pt-br/diag_core.po create mode 100644 applications/luci-app-diag-core/po/pt/diag_core.po create mode 100644 applications/luci-app-diag-core/po/ro/diag_core.po create mode 100644 applications/luci-app-diag-core/po/ru/diag_core.po create mode 100644 applications/luci-app-diag-core/po/sk/diag_core.po create mode 100644 applications/luci-app-diag-core/po/sv/diag_core.po create mode 100644 applications/luci-app-diag-core/po/templates/diag_core.pot create mode 100644 applications/luci-app-diag-core/po/tr/diag_core.po create mode 100644 applications/luci-app-diag-core/po/uk/diag_core.po create mode 100644 applications/luci-app-diag-core/po/vi/diag_core.po create mode 100644 applications/luci-app-diag-core/po/zh-cn/diag_core.po create mode 100644 applications/luci-app-diag-core/po/zh-tw/diag_core.po (limited to 'applications/luci-app-diag-core') diff --git a/applications/luci-app-diag-core/Makefile b/applications/luci-app-diag-core/Makefile new file mode 100644 index 0000000000..ac9f499b12 --- /dev/null +++ b/applications/luci-app-diag-core/Makefile @@ -0,0 +1,14 @@ +# +# Copyright (C) 2008-2014 The LuCI Team +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI Diagnostics Tools (Core) +LUCI_DEPENDS:= + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-diag-core/luasrc/controller/luci_diag.lua b/applications/luci-app-diag-core/luasrc/controller/luci_diag.lua new file mode 100644 index 0000000000..4a8a020031 --- /dev/null +++ b/applications/luci-app-diag-core/luasrc/controller/luci_diag.lua @@ -0,0 +1,26 @@ +--[[ + +Luci Voice Core +(c) 2009 Daniel Dickinson + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +]]-- + +module("luci.controller.luci_diag", package.seeall) + +function index() + local e + + e = entry({"admin", "network", "diag_config"}, template("diag/network_config_index") , _("Configure Diagnostics"), 120) + e.index = true + e.dependent = true + + e = entry({"mini", "diag"}, template("diag/index"), _("Diagnostics"), 120) + e.index = true + e.dependent = true +end diff --git a/applications/luci-app-diag-core/luasrc/view/diag/index.htm b/applications/luci-app-diag-core/luasrc/view/diag/index.htm new file mode 100644 index 0000000000..6b1efa1a88 --- /dev/null +++ b/applications/luci-app-diag-core/luasrc/view/diag/index.htm @@ -0,0 +1,18 @@ +<%# +LuCI - Lua Configuration Interface +(c) 2009 Daniel Dickinson + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ + +-%> +<%+header%> +

<%:Diagnostics%>

+

<%:The entries in the menu allow you to perform diagnostic tests on your system to aid in troubleshooting.%>

+

<%:The diagnostics available under this menu depend on what modules you have installed on your device.%>

+<%+footer%> diff --git a/applications/luci-app-diag-core/luasrc/view/diag/network_config_index.htm b/applications/luci-app-diag-core/luasrc/view/diag/network_config_index.htm new file mode 100644 index 0000000000..67980a6e74 --- /dev/null +++ b/applications/luci-app-diag-core/luasrc/view/diag/network_config_index.htm @@ -0,0 +1,18 @@ +<%# +LuCI - Lua Configuration Interface +(c) 2009 Daniel Dickinson + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ + +-%> +<%+header%> +

<%:Diagnostics%>

+

<%:With this menu you can configure network diagnostics, such as network device scans and ping tests.%>

+

<%:The diagnostics available under this menu depend on what modules you have installed on your device.%>

+<%+footer%> diff --git a/applications/luci-app-diag-core/po/ca/diag_core.po b/applications/luci-app-diag-core/po/ca/diag_core.po new file mode 100644 index 0000000000..ffe0ded633 --- /dev/null +++ b/applications/luci-app-diag-core/po/ca/diag_core.po @@ -0,0 +1,33 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-06-01 23:52+0200\n" +"Last-Translator: Alex \n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Configuració de diagnòstics" + +msgid "Diagnostics" +msgstr "Diagnòstics" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" diff --git a/applications/luci-app-diag-core/po/cs/diag_core.po b/applications/luci-app-diag-core/po/cs/diag_core.po new file mode 100644 index 0000000000..dcfea7750f --- /dev/null +++ b/applications/luci-app-diag-core/po/cs/diag_core.po @@ -0,0 +1,39 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-06-20 23:19+0200\n" +"Last-Translator: koli \n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Nastavení diagnostiky" + +msgid "Diagnostics" +msgstr "Diagnostika" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Počet diagnostických testů, které jsou k dispozici v tomto menu je závislý " +"na modulech nainstalovaných ve vašem zařízení." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Položky v menu vám umožní provádět systémové diagnostické testy, které vám " +"pomohou vyřešit problémy." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"V tomto menu můžete nastavit síťovou diagnostiku, jako je skenování síťových " +"zařízení a ping testů." diff --git a/applications/luci-app-diag-core/po/de/diag_core.po b/applications/luci-app-diag-core/po/de/diag_core.po new file mode 100644 index 0000000000..feda0fcb68 --- /dev/null +++ b/applications/luci-app-diag-core/po/de/diag_core.po @@ -0,0 +1,42 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-07-02 08:24+0200\n" +"Last-Translator: dgolle \n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Diagnose-Tests konfigurieren" + +msgid "Diagnostics" +msgstr "Diagnose" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Die verfügbaren Diagnose-Programme in diesem Menü hängen von den auf Ihrem " +"Gerät installierten Modulen ab." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Falls es mit ihrem Gerät Probleme gibt können hier Diagnose-Tests " +"durchgeführt werden." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Hier werden die Netzwerk Diagnose Tools konfiguriert (zB. Netzwerkscans und " +"Pings)." + +#~ msgid "l_d_diag" +#~ msgstr "Diagnose" diff --git a/applications/luci-app-diag-core/po/el/diag_core.po b/applications/luci-app-diag-core/po/el/diag_core.po new file mode 100644 index 0000000000..8e57c52495 --- /dev/null +++ b/applications/luci-app-diag-core/po/el/diag_core.po @@ -0,0 +1,38 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-03-18 14:53+0200\n" +"Last-Translator: Vasilis \n" +"Language-Team: none\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Configure Diagnostics" +msgstr "Ρύθμιση Διαγνωστικών" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Η καταχωρήσεις στο μενού, σας επιτρέπουν να προβαίνετε σε διαγνωστικές " +"δοκιμές στο σύστημά σας, για την διευκόλυνση αντιμετώπισης προβλημάτων." + +#, fuzzy +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Με αυτό το μενού, μπορείτε να παραμετροποιήσετε διαγνωστικά δικτύου, όπως " +"σαρώσεις συσκευών δικτύου και δοκιμές ping." diff --git a/applications/luci-app-diag-core/po/en/diag_core.po b/applications/luci-app-diag-core/po/en/diag_core.po new file mode 100644 index 0000000000..aa030efb98 --- /dev/null +++ b/applications/luci-app-diag-core/po/en/diag_core.po @@ -0,0 +1,42 @@ +# Diagnostics Core. +# Copyright (C) 2009 Daniel Dickinson. +# Daniel Dickinson , 2009. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: diag-core 0.1\n" +"PO-Revision-Date: 2009-07-17 04:54-0400\n" +"Last-Translator: Daniel Dickinson \n" +"Language-Team: en \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Configure Diagnostics" +msgstr "Configure Diagnostics" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." + +#~ msgid "l_d_diag" +#~ msgstr "Diagnostics" diff --git a/applications/luci-app-diag-core/po/es/diag_core.po b/applications/luci-app-diag-core/po/es/diag_core.po new file mode 100644 index 0000000000..8b9b3b5817 --- /dev/null +++ b/applications/luci-app-diag-core/po/es/diag_core.po @@ -0,0 +1,42 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-07-28 23:25+0200\n" +"Last-Translator: Daniel \n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Configurar diagnósticos" + +msgid "Diagnostics" +msgstr "Diagnósticos" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Los diagnósticos disponibles bajo este menú dependen de qué módulos haya " +"instalado en su dispositivo." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Este menú le permite realizar test de prueba de su sistema para ayudar en la " +"resolución de problemas." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"En este menú puede configurar diagnósticos de red como el escaneo de equipos " +"en red o pings." + +#~ msgid "l_d_diag" +#~ msgstr "Diagnośticos" diff --git a/applications/luci-app-diag-core/po/fr/diag_core.po b/applications/luci-app-diag-core/po/fr/diag_core.po new file mode 100644 index 0000000000..a5b4e6adc1 --- /dev/null +++ b/applications/luci-app-diag-core/po/fr/diag_core.po @@ -0,0 +1,42 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-11-06 13:21+0200\n" +"Last-Translator: hogsim \n" +"Language-Team: none\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Configuration des diagnostics" + +msgid "Diagnostics" +msgstr "Diagnostiques" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Les diagnostics disponible ci-dessous dépendent des modules que vous avez " +"installé sur votre appareil. " + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Les items de ce menu vous permettent d'accomplir des diagnostics sur votre " +"système pour vous aider à le dépanner." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Ce menu vous permet de configurer des diagnostics réseau, comme des " +"recherches de périphérique réseau et des tests par ping." + +#~ msgid "l_d_diag" +#~ msgstr "l_d_diag" diff --git a/applications/luci-app-diag-core/po/he/diag_core.po b/applications/luci-app-diag-core/po/he/diag_core.po new file mode 100644 index 0000000000..b4d73e0222 --- /dev/null +++ b/applications/luci-app-diag-core/po/he/diag_core.po @@ -0,0 +1,30 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Configure Diagnostics" +msgstr "" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" diff --git a/applications/luci-app-diag-core/po/hu/diag_core.po b/applications/luci-app-diag-core/po/hu/diag_core.po new file mode 100644 index 0000000000..f9f6e66cf7 --- /dev/null +++ b/applications/luci-app-diag-core/po/hu/diag_core.po @@ -0,0 +1,42 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-07-05 16:44+0200\n" +"Last-Translator: Gyula \n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Diagnosztikai beállítások" + +msgid "Diagnostics" +msgstr "Diagnosztika" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Az itt található statisztikák attól függően változnak, hogy milyen modulokat " +"telepítettél az eszközödre." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Ennek a menünek az elemei lehetővé teszik hálózati diagnosztikai tesztek " +"elvégzését a rendszeren a hibaelhárítás megkönnyítésére." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Ebben a menüben beállíthatók a hálózati diagnosztika elemei, mint például " +"eszközök keresése és ping teszt." + +#~ msgid "l_d_diag" +#~ msgstr "l_d_diag" diff --git a/applications/luci-app-diag-core/po/it/diag_core.po b/applications/luci-app-diag-core/po/it/diag_core.po new file mode 100644 index 0000000000..39d4cedff6 --- /dev/null +++ b/applications/luci-app-diag-core/po/it/diag_core.po @@ -0,0 +1,42 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2013-02-03 13:54+0200\n" +"Last-Translator: Francesco <3gasas@gmail.com>\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Configura Diagnostici" + +msgid "Diagnostics" +msgstr "Diagnostiche" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Le funzioni di diagnostica disponibili in questo menu dipendono dai moduli " +"che avete installato sul vostro dispositivo." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Gli stumenti nel menù possono servirti per diagnosi e test per aiutarti " +"nello scoprire le problematiche." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Con questo menu puoi configurare la diagnostica di rete, come la scansione " +"di un dispositivo di rete o dei ping di test." + +#~ msgid "l_d_diag" +#~ msgstr "l_d_diag" diff --git a/applications/luci-app-diag-core/po/ja/diag_core.po b/applications/luci-app-diag-core/po/ja/diag_core.po new file mode 100644 index 0000000000..f67657fdf8 --- /dev/null +++ b/applications/luci-app-diag-core/po/ja/diag_core.po @@ -0,0 +1,33 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-03-18 14:36+0200\n" +"Last-Translator: Kentaro \n" +"Language-Team: none\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Configure Diagnostics" +msgstr "診断機能設定" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" diff --git a/applications/luci-app-diag-core/po/ms/diag_core.po b/applications/luci-app-diag-core/po/ms/diag_core.po new file mode 100644 index 0000000000..90fefc50d1 --- /dev/null +++ b/applications/luci-app-diag-core/po/ms/diag_core.po @@ -0,0 +1,29 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Configure Diagnostics" +msgstr "" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" diff --git a/applications/luci-app-diag-core/po/no/diag_core.po b/applications/luci-app-diag-core/po/no/diag_core.po new file mode 100644 index 0000000000..4955d47352 --- /dev/null +++ b/applications/luci-app-diag-core/po/no/diag_core.po @@ -0,0 +1,35 @@ +msgid "" +msgstr "" +"Last-Translator: Lars Hardy \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Configure Diagnostics" +msgstr "Konfigurer Diagnostikk" + +msgid "Diagnostics" +msgstr "Diagnostikk" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Diagnostikken tilgjengelig under denne menyen avhenger av hvilke moduler du " +"har installert på enheten." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Oppføringene i menyen lar deg utføre diagnostiske tester på systemet ditt " +"til hjelp ved feilsøking." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Her kan du konfigurere nettverks diagnostikk, som skanning etter nettverks " +"enheter og ping tester." + +#~ msgid "l_d_diag" +#~ msgstr "Nettverks Diagnostikk" diff --git a/applications/luci-app-diag-core/po/pl/diag_core.po b/applications/luci-app-diag-core/po/pl/diag_core.po new file mode 100644 index 0000000000..0935fdbfa0 --- /dev/null +++ b/applications/luci-app-diag-core/po/pl/diag_core.po @@ -0,0 +1,43 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-09-08 13:17+0200\n" +"Last-Translator: Staszek \n" +"Language-Team: none\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Konfiguracja diagnostyki" + +msgid "Diagnostics" +msgstr "Diagnostyka" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Liczba testów diagnostycznych dostępnych w tym menu jest uzależniona od " +"modułów zainstalowanych w tym urządzeniu." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Wpisy w menu pozwalają na wykonanie testów diagnostycznych systemu pomocnych " +"w rozwiązywaniu problemów." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"W tym menu można skonfigurować diagnostykę sieci, jak np. skanowanie " +"urządzeń sieciowych lub testy ping." + +#~ msgid "l_d_diag" +#~ msgstr "l_d_diag" diff --git a/applications/luci-app-diag-core/po/pt-br/diag_core.po b/applications/luci-app-diag-core/po/pt-br/diag_core.po new file mode 100644 index 0000000000..e27315bc59 --- /dev/null +++ b/applications/luci-app-diag-core/po/pt-br/diag_core.po @@ -0,0 +1,42 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2011-10-08 03:14+0200\n" +"Last-Translator: luizluca \n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Configure Diagnostics" +msgstr "Configura os Diagnósticos" + +msgid "Diagnostics" +msgstr "Diagnósticos" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Os diagnósticos disponíveis neste menu dependem de quais módulos você tem " +"instalado no seu dispositivo." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"As entradas no menu permitem que você realize diagnósticos em seu sistema " +"para ajudar na resolução de problemas." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Com este menu, você pode configurar o diagnóstico de rede como varredura de " +"dispositivos e testes de ping." + +#~ msgid "l_d_diag" +#~ msgstr "l_d_diag" diff --git a/applications/luci-app-diag-core/po/pt/diag_core.po b/applications/luci-app-diag-core/po/pt/diag_core.po new file mode 100644 index 0000000000..6083f285e4 --- /dev/null +++ b/applications/luci-app-diag-core/po/pt/diag_core.po @@ -0,0 +1,39 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2013-05-30 22:57+0200\n" +"Last-Translator: joao.f.vieira \n" +"Language-Team: none\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Configurar Diagnósticos" + +msgid "Diagnostics" +msgstr "Diagnósticos " + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Os diagnósticos disponíveis neste menu dependem dos módulos que tem " +"instalados no seu dispositivo. " + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"As entradas neste menu permitem levar a cabo testes de diagnóstico no seu " +"sistema para o ajudar na resolução de problemas." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Com este menu pode configurar o diagnóstico de rede, tal como explorar " +"dispositivos de rede e testes ping." diff --git a/applications/luci-app-diag-core/po/ro/diag_core.po b/applications/luci-app-diag-core/po/ro/diag_core.po new file mode 100644 index 0000000000..604841eb8d --- /dev/null +++ b/applications/luci-app-diag-core/po/ro/diag_core.po @@ -0,0 +1,45 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-07-09 14:24+0200\n" +"Last-Translator: lex404 \n" +"Language-Team: none\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Configurează diagnozele" + +# diagnostic/ diagnostice; suna oricum prea medical. Tehnic se foloseste diagnoza, din cate stiu. +msgid "Diagnostics" +msgstr "Diagnoze" + +# . +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Diagnozele disponibile sub acest meniu depind de ce module aveți instalate " +"pe device-ul dumneavoastră." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Intrările din acest meniu permit utilizarea testelor de diagnoză în sistem " +"pentru a vă ajuta la rezolvarea problemelor." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Cu acest meniu poți configura diagnoza în rețea, cum ar fi scanarea unor " +"dispozitive din rețea sau teste ping." + +#~ msgid "l_d_diag" +#~ msgstr "l_d_diag" diff --git a/applications/luci-app-diag-core/po/ru/diag_core.po b/applications/luci-app-diag-core/po/ru/diag_core.po new file mode 100644 index 0000000000..1abaa8c6c8 --- /dev/null +++ b/applications/luci-app-diag-core/po/ru/diag_core.po @@ -0,0 +1,45 @@ +msgid "" +msgstr "" +"Project-Id-Version: LuCI: diag_core\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2012-08-15 11:44+0300\n" +"Last-Translator: Roman A. aka BasicXP \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.6\n" +"X-Poedit-SourceCharset: UTF-8\n" + +msgid "Configure Diagnostics" +msgstr "Настройки диагностики" + +msgid "Diagnostics" +msgstr "Диагностика" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Доступные в данном меню виды диагностики зависят от установленных на вашем " +"устройстве модулей. " + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Записи в меню позволять вам выполнить диагностику системы, чтобы помочь в " +"обнаружении проблем." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Используя это меню, вы можете настроить диагностику сети, например, " +"сканирование сетевых устройств или ping-тест." + +#~ msgid "l_d_diag" +#~ msgstr "l_d_diag" diff --git a/applications/luci-app-diag-core/po/sk/diag_core.po b/applications/luci-app-diag-core/po/sk/diag_core.po new file mode 100644 index 0000000000..389516fd12 --- /dev/null +++ b/applications/luci-app-diag-core/po/sk/diag_core.po @@ -0,0 +1,30 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +msgid "Configure Diagnostics" +msgstr "" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" diff --git a/applications/luci-app-diag-core/po/sv/diag_core.po b/applications/luci-app-diag-core/po/sv/diag_core.po new file mode 100644 index 0000000000..dd0a81a644 --- /dev/null +++ b/applications/luci-app-diag-core/po/sv/diag_core.po @@ -0,0 +1,31 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Configure Diagnostics" +msgstr "" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" diff --git a/applications/luci-app-diag-core/po/templates/diag_core.pot b/applications/luci-app-diag-core/po/templates/diag_core.pot new file mode 100644 index 0000000000..1b34f8381c --- /dev/null +++ b/applications/luci-app-diag-core/po/templates/diag_core.pot @@ -0,0 +1,23 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +msgid "Configure Diagnostics" +msgstr "" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" diff --git a/applications/luci-app-diag-core/po/tr/diag_core.po b/applications/luci-app-diag-core/po/tr/diag_core.po new file mode 100644 index 0000000000..d0b6211043 --- /dev/null +++ b/applications/luci-app-diag-core/po/tr/diag_core.po @@ -0,0 +1,30 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Configure Diagnostics" +msgstr "" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" diff --git a/applications/luci-app-diag-core/po/uk/diag_core.po b/applications/luci-app-diag-core/po/uk/diag_core.po new file mode 100644 index 0000000000..eae98867cc --- /dev/null +++ b/applications/luci-app-diag-core/po/uk/diag_core.po @@ -0,0 +1,40 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2013-05-26 17:55+0200\n" +"Last-Translator: Yurii \n" +"Language-Team: none\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "Конфігурування діагностики" + +msgid "Diagnostics" +msgstr "Діагностика" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" +"Доступні в цьому меню види діагностики залежать від того, які модулі " +"інстальовані на вашому пристроі." + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" +"Пункти меню дозволяють виконувати діагностичні тести на вашій системі, щоб " +"допомогти при усуненні неполадок." + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" +"Використовуючи це меню, ви можете сконфігурувати діагностику мережі, " +"наприклад, сканування мережевих пристроїв та пінг-тести." diff --git a/applications/luci-app-diag-core/po/vi/diag_core.po b/applications/luci-app-diag-core/po/vi/diag_core.po new file mode 100644 index 0000000000..d0b6211043 --- /dev/null +++ b/applications/luci-app-diag-core/po/vi/diag_core.po @@ -0,0 +1,30 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Configure Diagnostics" +msgstr "" + +msgid "Diagnostics" +msgstr "" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "" diff --git a/applications/luci-app-diag-core/po/zh-cn/diag_core.po b/applications/luci-app-diag-core/po/zh-cn/diag_core.po new file mode 100644 index 0000000000..e857d3d828 --- /dev/null +++ b/applications/luci-app-diag-core/po/zh-cn/diag_core.po @@ -0,0 +1,36 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-09-05 14:39+0200\n" +"Last-Translator: nKsyn \n" +"Language-Team: none\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "配置诊断" + +msgid "Diagnostics" +msgstr "诊断" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "可用的诊断依赖于设备上已经安装的诊断模块" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "下面的条目可以诊断测试系统,为排除故障提供信息" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "在这里可以配置网络诊断,例如:扫描网络设备,进行ping测试等。" + +#~ msgid "l_d_diag" +#~ msgstr "l_d诊断" diff --git a/applications/luci-app-diag-core/po/zh-tw/diag_core.po b/applications/luci-app-diag-core/po/zh-tw/diag_core.po new file mode 100644 index 0000000000..3cb3169998 --- /dev/null +++ b/applications/luci-app-diag-core/po/zh-tw/diag_core.po @@ -0,0 +1,33 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-05-14 12:47+0200\n" +"Last-Translator: omnistack \n" +"Language-Team: none\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Configure Diagnostics" +msgstr "診斷設定" + +msgid "Diagnostics" +msgstr "診斷" + +msgid "" +"The diagnostics available under this menu depend on what modules you have " +"installed on your device." +msgstr "這選單下的診斷機制可運用性, 端看你設備上已安裝的模組而定" + +msgid "" +"The entries in the menu allow you to perform diagnostic tests on your system " +"to aid in troubleshooting." +msgstr "選單內的項目允許你在系統內執行診斷測試以便解決疑難雜症" + +msgid "" +"With this menu you can configure network diagnostics, such as network device " +"scans and ping tests." +msgstr "採用這選項可以讓你設定網路診斷, 例如網路設備掃描跟ping的測試." -- cgit v1.2.3