summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-diag-core
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-12-03 15:17:05 +0100
committerJo-Philipp Wich <jow@openwrt.org>2015-01-08 16:26:20 +0100
commit1bb4822dca6113f73e3bc89e2acf15935e6f8e92 (patch)
tree35e16f100466e4e00657199b38bb3d87d52bf73f /applications/luci-app-diag-core
parent9edd0e46c3f880727738ce8ca6ff1c8b85f99ef4 (diff)
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 <jow@openwrt.org>
Diffstat (limited to 'applications/luci-app-diag-core')
-rw-r--r--applications/luci-app-diag-core/Makefile14
-rw-r--r--applications/luci-app-diag-core/luasrc/controller/luci_diag.lua26
-rw-r--r--applications/luci-app-diag-core/luasrc/view/diag/index.htm18
-rw-r--r--applications/luci-app-diag-core/luasrc/view/diag/network_config_index.htm18
-rw-r--r--applications/luci-app-diag-core/po/ca/diag_core.po33
-rw-r--r--applications/luci-app-diag-core/po/cs/diag_core.po39
-rw-r--r--applications/luci-app-diag-core/po/de/diag_core.po42
-rw-r--r--applications/luci-app-diag-core/po/el/diag_core.po38
-rw-r--r--applications/luci-app-diag-core/po/en/diag_core.po42
-rw-r--r--applications/luci-app-diag-core/po/es/diag_core.po42
-rw-r--r--applications/luci-app-diag-core/po/fr/diag_core.po42
-rw-r--r--applications/luci-app-diag-core/po/he/diag_core.po30
-rw-r--r--applications/luci-app-diag-core/po/hu/diag_core.po42
-rw-r--r--applications/luci-app-diag-core/po/it/diag_core.po42
-rw-r--r--applications/luci-app-diag-core/po/ja/diag_core.po33
-rw-r--r--applications/luci-app-diag-core/po/ms/diag_core.po29
-rw-r--r--applications/luci-app-diag-core/po/no/diag_core.po35
-rw-r--r--applications/luci-app-diag-core/po/pl/diag_core.po43
-rw-r--r--applications/luci-app-diag-core/po/pt-br/diag_core.po42
-rw-r--r--applications/luci-app-diag-core/po/pt/diag_core.po39
-rw-r--r--applications/luci-app-diag-core/po/ro/diag_core.po45
-rw-r--r--applications/luci-app-diag-core/po/ru/diag_core.po45
-rw-r--r--applications/luci-app-diag-core/po/sk/diag_core.po30
-rw-r--r--applications/luci-app-diag-core/po/sv/diag_core.po31
-rw-r--r--applications/luci-app-diag-core/po/templates/diag_core.pot23
-rw-r--r--applications/luci-app-diag-core/po/tr/diag_core.po30
-rw-r--r--applications/luci-app-diag-core/po/uk/diag_core.po40
-rw-r--r--applications/luci-app-diag-core/po/vi/diag_core.po30
-rw-r--r--applications/luci-app-diag-core/po/zh-cn/diag_core.po36
-rw-r--r--applications/luci-app-diag-core/po/zh-tw/diag_core.po33
30 files changed, 1032 insertions, 0 deletions
diff --git a/applications/luci-app-diag-core/Makefile b/applications/luci-app-diag-core/Makefile
new file mode 100644
index 000000000..ac9f499b1
--- /dev/null
+++ b/applications/luci-app-diag-core/Makefile
@@ -0,0 +1,14 @@
+#
+# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
+#
+# 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 000000000..4a8a02003
--- /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 000000000..6b1efa1a8
--- /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%>
+<h2><a id="content" name="content"><%:Diagnostics%></a></h2>
+<p><%:The entries in the menu allow you to perform diagnostic tests on your system to aid in troubleshooting.%></p>
+<p><%:The diagnostics available under this menu depend on what modules you have installed on your device.%></p>
+<%+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 000000000..67980a6e7
--- /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%>
+<h2><a id="content" name="content"><%:Diagnostics%></a></h2>
+<p><%:With this menu you can configure network diagnostics, such as network device scans and ping tests.%></p>
+<p><%:The diagnostics available under this menu depend on what modules you have installed on your device.%></p>
+<%+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 000000000..ffe0ded63
--- /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 <alexhenrie24@gmail.com>\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 000000000..dcfea7750
--- /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 <lukas.koluch@gmail.com>\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 000000000..feda0fcb6
--- /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 <dgolle@allnet.de>\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 000000000..8e57c5249
--- /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 <acinonyx@openwrt.gr>\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 000000000..aa030efb9
--- /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 <crazycshore@gmail.com>, 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 <crazycshore@gmail.com>\n"
+"Language-Team: en <LL@li.org>\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 000000000..8b9b3b581
--- /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 <danips@gmail.com>\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 000000000..a5b4e6adc
--- /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 <hogsim@gmail.com>\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 000000000..b4d73e022
--- /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 000000000..f9f6e66cf
--- /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 <pro564@hotmail.com>\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 000000000..39d4cedff
--- /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 000000000..f67657fdf
--- /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 <kentaro.matsuyama@gmail.com>\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 000000000..90fefc50d
--- /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 000000000..4955d4735
--- /dev/null
+++ b/applications/luci-app-diag-core/po/no/diag_core.po
@@ -0,0 +1,35 @@
+msgid ""
+msgstr ""
+"Last-Translator: Lars Hardy <lars.hardy@gmail.com>\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 000000000..0935fdbfa
--- /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 <fistaszek@tlen.pl>\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 000000000..e27315bc5
--- /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 <luizluca@gmail.com>\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 000000000..6083f285e
--- /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 <joao.f.vieira@gmail.com>\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 000000000..604841eb8
--- /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 <alex.qwq@gmail.com>\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 000000000..1abaa8c6c
--- /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 <x12ozmouse@ya.ru>\n"
+"Language-Team: Russian <x12ozmouse@ya.ru>\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 000000000..389516fd1
--- /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 000000000..dd0a81a64
--- /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 000000000..1b34f8381
--- /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 000000000..d0b621104
--- /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 000000000..eae98867c
--- /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 <yuripet@gmail.com>\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 000000000..d0b621104
--- /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 000000000..e857d3d82
--- /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 <e.nksyn@gmail.com>\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 000000000..3cb316999
--- /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 <omnistack@gmail.com>\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的測試."