summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-ntpc
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-ntpc')
-rw-r--r--applications/luci-app-ntpc/Makefile14
-rw-r--r--applications/luci-app-ntpc/luasrc/controller/ntpc.lua30
-rw-r--r--applications/luci-app-ntpc/luasrc/model/cbi/ntpc/ntpc.lua49
-rw-r--r--applications/luci-app-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua38
-rw-r--r--applications/luci-app-ntpc/po/ca/ntpc.po57
-rw-r--r--applications/luci-app-ntpc/po/cs/ntpc.po55
-rw-r--r--applications/luci-app-ntpc/po/de/ntpc.po53
-rw-r--r--applications/luci-app-ntpc/po/el/ntpc.po56
-rw-r--r--applications/luci-app-ntpc/po/en/ntpc.po51
-rw-r--r--applications/luci-app-ntpc/po/es/ntpc.po53
-rw-r--r--applications/luci-app-ntpc/po/fr/ntpc.po53
-rw-r--r--applications/luci-app-ntpc/po/he/ntpc.po59
-rw-r--r--applications/luci-app-ntpc/po/hu/ntpc.po55
-rw-r--r--applications/luci-app-ntpc/po/it/ntpc.po53
-rw-r--r--applications/luci-app-ntpc/po/ja/ntpc.po53
-rw-r--r--applications/luci-app-ntpc/po/ms/ntpc.po52
-rw-r--r--applications/luci-app-ntpc/po/no/ntpc.po44
-rw-r--r--applications/luci-app-ntpc/po/pl/ntpc.po54
-rw-r--r--applications/luci-app-ntpc/po/pt-br/ntpc.po53
-rw-r--r--applications/luci-app-ntpc/po/pt/ntpc.po53
-rw-r--r--applications/luci-app-ntpc/po/ro/ntpc.po56
-rw-r--r--applications/luci-app-ntpc/po/ru/ntpc.po55
-rw-r--r--applications/luci-app-ntpc/po/sk/ntpc.po48
-rw-r--r--applications/luci-app-ntpc/po/sv/ntpc.po49
-rw-r--r--applications/luci-app-ntpc/po/templates/ntpc.pot41
-rw-r--r--applications/luci-app-ntpc/po/tr/ntpc.po55
-rw-r--r--applications/luci-app-ntpc/po/uk/ntpc.po56
-rw-r--r--applications/luci-app-ntpc/po/vi/ntpc.po57
-rw-r--r--applications/luci-app-ntpc/po/zh-cn/ntpc.po53
-rw-r--r--applications/luci-app-ntpc/po/zh-tw/ntpc.po51
30 files changed, 1506 insertions, 0 deletions
diff --git a/applications/luci-app-ntpc/Makefile b/applications/luci-app-ntpc/Makefile
new file mode 100644
index 000000000..b30f967a1
--- /dev/null
+++ b/applications/luci-app-ntpc/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:=NTP time synchronisation configuration module
+LUCI_DEPENDS:=+ntpclient
+
+include ../../luci.mk
+
+# call BuildPackage - OpenWrt buildroot signature
diff --git a/applications/luci-app-ntpc/luasrc/controller/ntpc.lua b/applications/luci-app-ntpc/luasrc/controller/ntpc.lua
new file mode 100644
index 000000000..b7f4cdfc7
--- /dev/null
+++ b/applications/luci-app-ntpc/luasrc/controller/ntpc.lua
@@ -0,0 +1,30 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+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$
+]]--
+
+module("luci.controller.ntpc", package.seeall)
+
+function index()
+ if not nixio.fs.access("/etc/config/ntpclient") then
+ return
+ end
+
+ local page
+
+ page = entry({"admin", "system", "ntpc"}, cbi("ntpc/ntpc"), _("Time Synchronisation"), 50)
+ page.dependent = true
+
+ page = entry({"mini", "system", "ntpc"}, cbi("ntpc/ntpcmini", {autoapply=true}), _("Time Synchronisation"), 50)
+ page.dependent = true
+end
diff --git a/applications/luci-app-ntpc/luasrc/model/cbi/ntpc/ntpc.lua b/applications/luci-app-ntpc/luasrc/model/cbi/ntpc/ntpc.lua
new file mode 100644
index 000000000..5265359c6
--- /dev/null
+++ b/applications/luci-app-ntpc/luasrc/model/cbi/ntpc/ntpc.lua
@@ -0,0 +1,49 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+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$
+]]--
+m = Map("ntpclient", translate("Time Synchronisation"), translate("Synchronizes the system time"))
+
+s = m:section(TypedSection, "ntpclient", translate("General"))
+s.anonymous = true
+s.addremove = false
+
+s:option(DummyValue, "_time", translate("Current system time")).value = os.date("%c")
+
+interval = s:option(Value, "interval", translate("Update interval (in seconds)"))
+interval.datatype = "and(uinteger,min(1))"
+interval.rmempty = true
+
+count = s:option(Value, "count", translate("Count of time measurements"), translate("empty = infinite"))
+count.datatype = "and(uinteger,min(1))"
+count.rmempty = true
+
+s2 = m:section(TypedSection, "ntpdrift", translate("Clock Adjustment"))
+s2.anonymous = true
+s2.addremove = false
+
+freq = s2:option(Value, "freq", translate("Offset frequency"))
+freq.datatype = "integer"
+freq.rmempty = true
+
+s3 = m:section(TypedSection, "ntpserver", translate("Time Servers"))
+s3.anonymous = true
+s3.addremove = true
+s3.template = "cbi/tblsection"
+
+s3:option(Value, "hostname", translate("Hostname"))
+port = s3:option(Value, "port", translate("Port"))
+port.datatype = "port"
+port.rmempty = true
+
+return m
diff --git a/applications/luci-app-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua b/applications/luci-app-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua
new file mode 100644
index 000000000..2a6c41524
--- /dev/null
+++ b/applications/luci-app-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua
@@ -0,0 +1,38 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+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$
+]]--
+require("luci.tools.webadmin")
+m = Map("ntpclient", translate("Time Synchronisation"), translate("Synchronizes the system time"))
+
+s = m:section(TypedSection, "ntpclient", translate("General"))
+s.anonymous = true
+s.addremove = false
+
+s:option(DummyValue, "_time", translate("Current system time")).value = os.date("%c")
+
+interval = s:option(Value, "interval", translate("Update interval (in seconds)"))
+interval.datatype = "and(uinteger,min(1))"
+interval.rmempty = true
+
+s3 = m:section(TypedSection, "ntpserver", translate("Time Server"))
+s3.anonymous = true
+s3.addremove = true
+s3.template = "cbi/tblsection"
+
+s3:option(Value, "hostname", translate("Hostname"))
+port = s3:option(Value, "port", translate("Port"))
+port.datatype = "port"
+port.rmempty = true
+
+return m
diff --git a/applications/luci-app-ntpc/po/ca/ntpc.po b/applications/luci-app-ntpc/po/ca/ntpc.po
new file mode 100644
index 000000000..1a0f5fbc8
--- /dev/null
+++ b/applications/luci-app-ntpc/po/ca/ntpc.po
@@ -0,0 +1,57 @@
+# ntpc.pot
+# generated from ./applications/luci-ntpc/luasrc/i18n/ntpc.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2014-07-03 20:32+0200\n"
+"Last-Translator: Alex <alexhenrie24@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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 "Clock Adjustment"
+msgstr "Ajustament de rellotge"
+
+#, fuzzy
+msgid "Count of time measurements"
+msgstr "Compte de mesures d'horari"
+
+msgid "Current system time"
+msgstr "Horari del sistema actual"
+
+msgid "General"
+msgstr "General"
+
+msgid "Hostname"
+msgstr "Nom de host"
+
+#, fuzzy
+msgid "Offset frequency"
+msgstr "Compensació de freqüència"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "Sincronitza l'hora del sistema"
+
+msgid "Time Server"
+msgstr "Servidor d'horari"
+
+msgid "Time Servers"
+msgstr "Servidors d'horari"
+
+msgid "Time Synchronisation"
+msgstr "Sincronització d'horari"
+
+msgid "Update interval (in seconds)"
+msgstr "Interval d'actualització (en segons)"
+
+msgid "empty = infinite"
+msgstr "buit = infinit"
diff --git a/applications/luci-app-ntpc/po/cs/ntpc.po b/applications/luci-app-ntpc/po/cs/ntpc.po
new file mode 100644
index 000000000..8c342deaa
--- /dev/null
+++ b/applications/luci-app-ntpc/po/cs/ntpc.po
@@ -0,0 +1,55 @@
+# Generated from applications/luci-ntpc/luasrc/model/cbi/ntpc/*.lua
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2014-04-14 12:47+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 "Clock Adjustment"
+msgstr "Úprava času"
+
+msgid "Count of time measurements"
+msgstr "Počet měření času"
+
+msgid "Current system time"
+msgstr "Aktuální systémový čas"
+
+msgid "General"
+msgstr "Obecné nastavení"
+
+msgid "Hostname"
+msgstr "Hostname"
+
+msgid "Offset frequency"
+msgstr "Offsetová frekvence (chyba měření času)"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "Synchronizuje systémový čas s přesným reálným časem přes síť"
+
+msgid "Time Server"
+msgstr "Synchronizační server"
+
+msgid "Time Servers"
+msgstr "Synchronizační servery"
+
+msgid "Time Synchronisation"
+msgstr "Synchronizace času"
+
+msgid "Update interval (in seconds)"
+msgstr "Interval obnovy synchronizace (v sekundách)"
+
+msgid "empty = infinite"
+msgstr "prázdný = neustálé opakování"
diff --git a/applications/luci-app-ntpc/po/de/ntpc.po b/applications/luci-app-ntpc/po/de/ntpc.po
new file mode 100644
index 000000000..b6109358d
--- /dev/null
+++ b/applications/luci-app-ntpc/po/de/ntpc.po
@@ -0,0 +1,53 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-07-17 15:07+0200\n"
+"Last-Translator: Martin <roecker@empty-v.de>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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 "Clock Adjustment"
+msgstr "Zeitgeberjustierung"
+
+msgid "Count of time measurements"
+msgstr "Anzahl der Zeitmessungen"
+
+msgid "Current system time"
+msgstr "Aktuelle Systemzeit"
+
+msgid "General"
+msgstr "Allgemein"
+
+msgid "Hostname"
+msgstr "Hostname"
+
+msgid "Offset frequency"
+msgstr "Frequenzabweichung"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "Synchronisiert die Systemzeit"
+
+msgid "Time Server"
+msgstr "Zeitserver"
+
+msgid "Time Servers"
+msgstr "Zeitserver"
+
+msgid "Time Synchronisation"
+msgstr "Zeitsynchronisation"
+
+msgid "Update interval (in seconds)"
+msgstr "Aktualisierungsintervall (in Sekunden)"
+
+msgid "empty = infinite"
+msgstr "leer = unendlich"
diff --git a/applications/luci-app-ntpc/po/el/ntpc.po b/applications/luci-app-ntpc/po/el/ntpc.po
new file mode 100644
index 000000000..c8f22ebaa
--- /dev/null
+++ b/applications/luci-app-ntpc/po/el/ntpc.po
@@ -0,0 +1,56 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-03-31 15:40+0200\n"
+"Last-Translator: Vasilis <acinonyx@openwrt.gr>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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 "Clock Adjustment"
+msgstr "Ρύθμιση Ρολογιού"
+
+msgid "Count of time measurements"
+msgstr "Πλήθος μετρήσεων ώρας"
+
+msgid "Current system time"
+msgstr "Τρέχουσα ώρα συστήματος"
+
+msgid "General"
+msgstr "Γενικά"
+
+msgid "Hostname"
+msgstr "Όνομα συστήματος"
+
+#, fuzzy
+msgid "Offset frequency"
+msgstr "Συχνότητα μετάθεσης"
+
+msgid "Port"
+msgstr "Θύρα"
+
+msgid "Synchronizes the system time"
+msgstr "Συγχρονίζει την ώρα του συστήματος"
+
+msgid "Time Server"
+msgstr ""
+
+#, fuzzy
+msgid "Time Servers"
+msgstr "Εξυπηρετητές Ώρας"
+
+msgid "Time Synchronisation"
+msgstr "Συγχρονισμός Ώρας"
+
+#, fuzzy
+msgid "Update interval (in seconds)"
+msgstr "Περίοδος ενημέρωσης (σε δευτερόλεπτα)"
+
+msgid "empty = infinite"
+msgstr "άδειο = άπειρος"
diff --git a/applications/luci-app-ntpc/po/en/ntpc.po b/applications/luci-app-ntpc/po/en/ntpc.po
new file mode 100644
index 000000000..803a99656
--- /dev/null
+++ b/applications/luci-app-ntpc/po/en/ntpc.po
@@ -0,0 +1,51 @@
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+msgid "Clock Adjustment"
+msgstr "Clock Adjustment"
+
+msgid "Count of time measurements"
+msgstr "Count of time measurements"
+
+msgid "Current system time"
+msgstr "Current system time"
+
+msgid "General"
+msgstr "General"
+
+msgid "Hostname"
+msgstr "Hostname"
+
+msgid "Offset frequency"
+msgstr "Offset frequency"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "Synchronizes the system time"
+
+msgid "Time Server"
+msgstr ""
+
+msgid "Time Servers"
+msgstr "Time Servers"
+
+msgid "Time Synchronisation"
+msgstr "Time Synchronisation"
+
+msgid "Update interval (in seconds)"
+msgstr "Update interval (in seconds)"
+
+msgid "empty = infinite"
+msgstr "empty = infinite"
diff --git a/applications/luci-app-ntpc/po/es/ntpc.po b/applications/luci-app-ntpc/po/es/ntpc.po
new file mode 100644
index 000000000..40edf249b
--- /dev/null
+++ b/applications/luci-app-ntpc/po/es/ntpc.po
@@ -0,0 +1,53 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-11-25 11:14+0200\n"
+"Last-Translator: José Vicente <josevteg@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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 "Clock Adjustment"
+msgstr "Ajuste del Reloj"
+
+msgid "Count of time measurements"
+msgstr "Medida del tiempo"
+
+msgid "Current system time"
+msgstr "Hora actual del sistema"
+
+msgid "General"
+msgstr "General"
+
+msgid "Hostname"
+msgstr "Nombre de la máquina"
+
+msgid "Offset frequency"
+msgstr "Desplazamiento de frecuencia"
+
+msgid "Port"
+msgstr "Puerto"
+
+msgid "Synchronizes the system time"
+msgstr "Sincronizar la hora del sistema"
+
+msgid "Time Server"
+msgstr "Servidor de tiempo"
+
+msgid "Time Servers"
+msgstr "Servidores de hora"
+
+msgid "Time Synchronisation"
+msgstr "Sincronización horaria"
+
+msgid "Update interval (in seconds)"
+msgstr "Intervalo de actualización (en segundos)"
+
+msgid "empty = infinite"
+msgstr "vacío = infinito"
diff --git a/applications/luci-app-ntpc/po/fr/ntpc.po b/applications/luci-app-ntpc/po/fr/ntpc.po
new file mode 100644
index 000000000..d417e15e4
--- /dev/null
+++ b/applications/luci-app-ntpc/po/fr/ntpc.po
@@ -0,0 +1,53 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-11-06 16:08+0200\n"
+"Last-Translator: hogsim <hogsim@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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 "Clock Adjustment"
+msgstr "Ajustement de l'horloge"
+
+msgid "Count of time measurements"
+msgstr "Nombre de mesures du temps"
+
+msgid "Current system time"
+msgstr "Temps système actuel"
+
+msgid "General"
+msgstr "Général"
+
+msgid "Hostname"
+msgstr "Nom d'hôte"
+
+msgid "Offset frequency"
+msgstr "Décalage en fréquence"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "Synchronise le temps système"
+
+msgid "Time Server"
+msgstr "Serveur temps "
+
+msgid "Time Servers"
+msgstr "Serveurs de temps"
+
+msgid "Time Synchronisation"
+msgstr "Synchronisation du temps"
+
+msgid "Update interval (in seconds)"
+msgstr "Intervalle de mise à jour (en secondes)"
+
+msgid "empty = infinite"
+msgstr "vide = infini"
diff --git a/applications/luci-app-ntpc/po/he/ntpc.po b/applications/luci-app-ntpc/po/he/ntpc.po
new file mode 100644
index 000000000..9d2bee630
--- /dev/null
+++ b/applications/luci-app-ntpc/po/he/ntpc.po
@@ -0,0 +1,59 @@
+# Generated from applications/luci-ntpc/luasrc/model/cbi/ntpc/*.lua
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2011-06-25 11:40+0200\n"
+"Last-Translator: GiladL <gl1000007@gmail.com>\n"
+"Language-Team: none\n"
+"Language: he\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"
+
+# התאמת שעון?
+#, fuzzy
+msgid "Clock Adjustment"
+msgstr "כיוון שעון"
+
+#, fuzzy
+msgid "Count of time measurements"
+msgstr "ספירת יחידות זמן"
+
+msgid "Current system time"
+msgstr "זמן מערכת נוכחי"
+
+msgid "General"
+msgstr "כללי"
+
+msgid "Hostname"
+msgstr "שם מארח"
+
+#, fuzzy
+msgid "Offset frequency"
+msgstr "תדירות סטייה"
+
+msgid "Port"
+msgstr "פורט"
+
+msgid "Synchronizes the system time"
+msgstr "מסנכרן את זמן המערכת"
+
+msgid "Time Server"
+msgstr ""
+
+msgid "Time Servers"
+msgstr "שרתי זמן"
+
+msgid "Time Synchronisation"
+msgstr "סנכרון זמן"
+
+msgid "Update interval (in seconds)"
+msgstr "מרווח בין עדכונים (בשניות)"
+
+msgid "empty = infinite"
+msgstr "ריק = אינסופי"
diff --git a/applications/luci-app-ntpc/po/hu/ntpc.po b/applications/luci-app-ntpc/po/hu/ntpc.po
new file mode 100644
index 000000000..f69046f5f
--- /dev/null
+++ b/applications/luci-app-ntpc/po/hu/ntpc.po
@@ -0,0 +1,55 @@
+# Generated from applications/luci-ntpc/luasrc/model/cbi/ntpc/*.lua
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-07-10 21:05+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 "Clock Adjustment"
+msgstr "Óra igazítás"
+
+msgid "Count of time measurements"
+msgstr "Időmérések száma"
+
+msgid "Current system time"
+msgstr "Jelenlegi rendszeridő"
+
+msgid "General"
+msgstr "Általános"
+
+msgid "Hostname"
+msgstr "Gépnév"
+
+msgid "Offset frequency"
+msgstr "Frekvencia eltolás"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "A rendszeridő szinkronizálása"
+
+msgid "Time Server"
+msgstr "Időszerver"
+
+msgid "Time Servers"
+msgstr "Időkiszolgálók"
+
+msgid "Time Synchronisation"
+msgstr "Idő szinkronizálás"
+
+msgid "Update interval (in seconds)"
+msgstr "Frissítési időköz (másodpercben)"
+
+msgid "empty = infinite"
+msgstr "üres = végtelen"
diff --git a/applications/luci-app-ntpc/po/it/ntpc.po b/applications/luci-app-ntpc/po/it/ntpc.po
new file mode 100644
index 000000000..4b027b7f4
--- /dev/null
+++ b/applications/luci-app-ntpc/po/it/ntpc.po
@@ -0,0 +1,53 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2013-02-03 13:56+0200\n"
+"Last-Translator: Francesco <3gasas@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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 "Clock Adjustment"
+msgstr "Impostazione Ora"
+
+msgid "Count of time measurements"
+msgstr "Conteggio delle misure del tempo"
+
+msgid "Current system time"
+msgstr "Ora corrente del sistema"
+
+msgid "General"
+msgstr "Generale"
+
+msgid "Hostname"
+msgstr "Hostname"
+
+msgid "Offset frequency"
+msgstr "Offset delle frequenza"
+
+msgid "Port"
+msgstr "Porta"
+
+msgid "Synchronizes the system time"
+msgstr "Sincronizza l'ora di sistema"
+
+msgid "Time Server"
+msgstr "Server Orologio"
+
+msgid "Time Servers"
+msgstr "Server dell'ora"
+
+msgid "Time Synchronisation"
+msgstr "Sincronizzazione dell'ora"
+
+msgid "Update interval (in seconds)"
+msgstr "Intervallo di aggiornamento (in secondi)"
+
+msgid "empty = infinite"
+msgstr "vuoto = infinito"
diff --git a/applications/luci-app-ntpc/po/ja/ntpc.po b/applications/luci-app-ntpc/po/ja/ntpc.po
new file mode 100644
index 000000000..bb6135cc2
--- /dev/null
+++ b/applications/luci-app-ntpc/po/ja/ntpc.po
@@ -0,0 +1,53 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-11-14 14:41+0200\n"
+"Last-Translator: Kentaro <kentaro.matsuyama@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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.6\n"
+
+msgid "Clock Adjustment"
+msgstr "時刻調整"
+
+msgid "Count of time measurements"
+msgstr "時間計測回数"
+
+msgid "Current system time"
+msgstr "現在時刻"
+
+msgid "General"
+msgstr "一般設定"
+
+msgid "Hostname"
+msgstr "ホスト名"
+
+msgid "Offset frequency"
+msgstr "オフセット周波数"
+
+msgid "Port"
+msgstr "ポート"
+
+msgid "Synchronizes the system time"
+msgstr "システムの時間を同期します。"
+
+msgid "Time Server"
+msgstr "時刻サーバー"
+
+msgid "Time Servers"
+msgstr "時刻サーバー"
+
+msgid "Time Synchronisation"
+msgstr "Time Synchronisation"
+
+msgid "Update interval (in seconds)"
+msgstr "アップデート間隔 (秒)"
+
+msgid "empty = infinite"
+msgstr "空の場合、無限大になります"
diff --git a/applications/luci-app-ntpc/po/ms/ntpc.po b/applications/luci-app-ntpc/po/ms/ntpc.po
new file mode 100644
index 000000000..abbfdbe6b
--- /dev/null
+++ b/applications/luci-app-ntpc/po/ms/ntpc.po
@@ -0,0 +1,52 @@
+# Generated from applications/luci-ntpc/luasrc/model/cbi/ntpc/*.lua
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2010-04-14 13:24+0200\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 "Clock Adjustment"
+msgstr ""
+
+msgid "Count of time measurements"
+msgstr ""
+
+msgid "Current system time"
+msgstr ""
+
+msgid "General"
+msgstr ""
+
+msgid "Hostname"
+msgstr ""
+
+msgid "Offset frequency"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Synchronizes the system time"
+msgstr ""
+
+msgid "Time Server"
+msgstr ""
+
+msgid "Time Servers"
+msgstr ""
+
+msgid "Time Synchronisation"
+msgstr ""
+
+msgid "Update interval (in seconds)"
+msgstr ""
+
+msgid "empty = infinite"
+msgstr ""
diff --git a/applications/luci-app-ntpc/po/no/ntpc.po b/applications/luci-app-ntpc/po/no/ntpc.po
new file mode 100644
index 000000000..7b3fd0b36
--- /dev/null
+++ b/applications/luci-app-ntpc/po/no/ntpc.po
@@ -0,0 +1,44 @@
+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 "Clock Adjustment"
+msgstr "Tidskorrigering"
+
+msgid "Count of time measurements"
+msgstr "Antall tidsmålinger"
+
+msgid "Current system time"
+msgstr "Nåværende system tid"
+
+msgid "General"
+msgstr "Generelt"
+
+msgid "Hostname"
+msgstr "Vertsnavn"
+
+msgid "Offset frequency"
+msgstr "Frekvens forskyvning"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "Synkroniserer systemets tid"
+
+msgid "Time Server"
+msgstr "Tids Server"
+
+msgid "Time Servers"
+msgstr "Tids Servere"
+
+msgid "Time Synchronisation"
+msgstr "Tidssynkronisering"
+
+msgid "Update interval (in seconds)"
+msgstr "Oppdateringsintervall (i sek)"
+
+msgid "empty = infinite"
+msgstr "tomt = uendelig"
diff --git a/applications/luci-app-ntpc/po/pl/ntpc.po b/applications/luci-app-ntpc/po/pl/ntpc.po
new file mode 100644
index 000000000..c2cb3e8a9
--- /dev/null
+++ b/applications/luci-app-ntpc/po/pl/ntpc.po
@@ -0,0 +1,54 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2011-09-18 02:23+0200\n"
+"Last-Translator: Michał <wispwind@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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.4\n"
+
+msgid "Clock Adjustment"
+msgstr "Regulacja zegara"
+
+msgid "Count of time measurements"
+msgstr "Liczba pomiarów czasu"
+
+msgid "Current system time"
+msgstr "Aktualny czas systemowy"
+
+msgid "General"
+msgstr "Główne"
+
+msgid "Hostname"
+msgstr "Nazwa hosta"
+
+msgid "Offset frequency"
+msgstr "Przesunięcie częstotliwości"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "Synchronizuje czas systemowy"
+
+msgid "Time Server"
+msgstr "Serwer czasu"
+
+msgid "Time Servers"
+msgstr "Serwery czasu"
+
+msgid "Time Synchronisation"
+msgstr "Synchronizacja czasu"
+
+msgid "Update interval (in seconds)"
+msgstr "Interwał aktualizacji (w sekundach)"
+
+msgid "empty = infinite"
+msgstr "puste = nieskończone"
diff --git a/applications/luci-app-ntpc/po/pt-br/ntpc.po b/applications/luci-app-ntpc/po/pt-br/ntpc.po
new file mode 100644
index 000000000..9e8849a2d
--- /dev/null
+++ b/applications/luci-app-ntpc/po/pt-br/ntpc.po
@@ -0,0 +1,53 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2011-10-18 22:38+0200\n"
+"Last-Translator: Luiz Angelo <luizluca@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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 "Clock Adjustment"
+msgstr "Ajuste do Relógio"
+
+msgid "Count of time measurements"
+msgstr "Quantidade de medições do tempo"
+
+msgid "Current system time"
+msgstr "Hora atual do sistema"
+
+msgid "General"
+msgstr "Geral"
+
+msgid "Hostname"
+msgstr "Nome do computador"
+
+msgid "Offset frequency"
+msgstr "Frequência da compensação"
+
+msgid "Port"
+msgstr "Porta"
+
+msgid "Synchronizes the system time"
+msgstr "Sincroniza a hora do sistema"
+
+msgid "Time Server"
+msgstr "Servidor de Hora."
+
+msgid "Time Servers"
+msgstr "Servidores de Hora"
+
+msgid "Time Synchronisation"
+msgstr "Sincronização de Horário"
+
+msgid "Update interval (in seconds)"
+msgstr "Intervalo de atualização (em segundos)"
+
+msgid "empty = infinite"
+msgstr "vazio = infinito"
diff --git a/applications/luci-app-ntpc/po/pt/ntpc.po b/applications/luci-app-ntpc/po/pt/ntpc.po
new file mode 100644
index 000000000..70e7952c8
--- /dev/null
+++ b/applications/luci-app-ntpc/po/pt/ntpc.po
@@ -0,0 +1,53 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2013-05-01 01:16+0200\n"
+"Last-Translator: pedromrgoncalves <pedromrgoncalves@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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 "Clock Adjustment"
+msgstr "Ajuste do Relógio"
+
+msgid "Count of time measurements"
+msgstr "Quantas vezes irá atualizar"
+
+msgid "Current system time"
+msgstr "Hora actual do sistema"
+
+msgid "General"
+msgstr "Geral"
+
+msgid "Hostname"
+msgstr "Nome do Host"
+
+msgid "Offset frequency"
+msgstr "Frequência do Offset"
+
+msgid "Port"
+msgstr "Porta"
+
+msgid "Synchronizes the system time"
+msgstr "Sincroniza a hora do sistema"
+
+msgid "Time Server"
+msgstr "Servidor de Hora"
+
+msgid "Time Servers"
+msgstr "Servidores de Hora"
+
+msgid "Time Synchronisation"
+msgstr "Sincronização de Horário"
+
+msgid "Update interval (in seconds)"
+msgstr "Intervalo de Actualização (em s)"
+
+msgid "empty = infinite"
+msgstr "vazio = infinito"
diff --git a/applications/luci-app-ntpc/po/ro/ntpc.po b/applications/luci-app-ntpc/po/ro/ntpc.po
new file mode 100644
index 000000000..893419f20
--- /dev/null
+++ b/applications/luci-app-ntpc/po/ro/ntpc.po
@@ -0,0 +1,56 @@
+# Generated from applications/luci-ntpc/luasrc/model/cbi/ntpc/*.lua
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-12-01 16:08+0200\n"
+"Last-Translator: cgherman <cgherman@mandrivausers.ro>\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 "Clock Adjustment"
+msgstr "Ajustarea ceasului"
+
+msgid "Count of time measurements"
+msgstr "Masuratori de timp"
+
+msgid "Current system time"
+msgstr "Timpul curent de sistem"
+
+msgid "General"
+msgstr "General"
+
+msgid "Hostname"
+msgstr "Numele de host"
+
+msgid "Offset frequency"
+msgstr "Frecventa de offset"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "Sincronizeaza timpul sistemului"
+
+msgid "Time Server"
+msgstr "Server de timp"
+
+msgid "Time Servers"
+msgstr "Serverele de timp"
+
+msgid "Time Synchronisation"
+msgstr "Sincronizarea de timp"
+
+msgid "Update interval (in seconds)"
+msgstr "Intervalul de actualizare (in secunde)"
+
+msgid "empty = infinite"
+msgstr "gol = infinit"
diff --git a/applications/luci-app-ntpc/po/ru/ntpc.po b/applications/luci-app-ntpc/po/ru/ntpc.po
new file mode 100644
index 000000000..229b6101b
--- /dev/null
+++ b/applications/luci-app-ntpc/po/ru/ntpc.po
@@ -0,0 +1,55 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: LuCI: ntpc\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-08-15 11:41+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.4\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+
+msgid "Clock Adjustment"
+msgstr "Корректировка часов"
+
+msgid "Count of time measurements"
+msgstr "Количество измерений времени"
+
+msgid "Current system time"
+msgstr "Текущее время"
+
+msgid "General"
+msgstr "Общие"
+
+msgid "Hostname"
+msgstr "Имя хоста"
+
+msgid "Offset frequency"
+msgstr "Смещение частоты"
+
+msgid "Port"
+msgstr "Порт"
+
+msgid "Synchronizes the system time"
+msgstr "Синхронизирует системное время"
+
+msgid "Time Server"
+msgstr "Сервер времени"
+
+msgid "Time Servers"
+msgstr "Серверы времени"
+
+msgid "Time Synchronisation"
+msgstr "Синхронизация времени"
+
+msgid "Update interval (in seconds)"
+msgstr "Интервал обновления (в секундах)"
+
+msgid "empty = infinite"
+msgstr "пусто = бесконечно"
diff --git a/applications/luci-app-ntpc/po/sk/ntpc.po b/applications/luci-app-ntpc/po/sk/ntpc.po
new file mode 100644
index 000000000..d3f8fb872
--- /dev/null
+++ b/applications/luci-app-ntpc/po/sk/ntpc.po
@@ -0,0 +1,48 @@
+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 "Clock Adjustment"
+msgstr ""
+
+msgid "Count of time measurements"
+msgstr ""
+
+msgid "Current system time"
+msgstr ""
+
+msgid "General"
+msgstr ""
+
+msgid "Hostname"
+msgstr ""
+
+msgid "Offset frequency"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Synchronizes the system time"
+msgstr ""
+
+msgid "Time Server"
+msgstr ""
+
+msgid "Time Servers"
+msgstr ""
+
+msgid "Time Synchronisation"
+msgstr ""
+
+msgid "Update interval (in seconds)"
+msgstr ""
+
+msgid "empty = infinite"
+msgstr ""
diff --git a/applications/luci-app-ntpc/po/sv/ntpc.po b/applications/luci-app-ntpc/po/sv/ntpc.po
new file mode 100644
index 000000000..00715e65b
--- /dev/null
+++ b/applications/luci-app-ntpc/po/sv/ntpc.po
@@ -0,0 +1,49 @@
+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 "Clock Adjustment"
+msgstr ""
+
+msgid "Count of time measurements"
+msgstr ""
+
+msgid "Current system time"
+msgstr ""
+
+msgid "General"
+msgstr ""
+
+msgid "Hostname"
+msgstr ""
+
+msgid "Offset frequency"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Synchronizes the system time"
+msgstr ""
+
+msgid "Time Server"
+msgstr ""
+
+msgid "Time Servers"
+msgstr ""
+
+msgid "Time Synchronisation"
+msgstr ""
+
+msgid "Update interval (in seconds)"
+msgstr ""
+
+msgid "empty = infinite"
+msgstr ""
diff --git a/applications/luci-app-ntpc/po/templates/ntpc.pot b/applications/luci-app-ntpc/po/templates/ntpc.pot
new file mode 100644
index 000000000..1ed4c40e4
--- /dev/null
+++ b/applications/luci-app-ntpc/po/templates/ntpc.pot
@@ -0,0 +1,41 @@
+msgid ""
+msgstr "Content-Type: text/plain; charset=UTF-8"
+
+msgid "Clock Adjustment"
+msgstr ""
+
+msgid "Count of time measurements"
+msgstr ""
+
+msgid "Current system time"
+msgstr ""
+
+msgid "General"
+msgstr ""
+
+msgid "Hostname"
+msgstr ""
+
+msgid "Offset frequency"
+msgstr ""
+
+msgid "Port"
+msgstr ""
+
+msgid "Synchronizes the system time"
+msgstr ""
+
+msgid "Time Server"
+msgstr ""
+
+msgid "Time Servers"
+msgstr ""
+
+msgid "Time Synchronisation"
+msgstr ""
+
+msgid "Update interval (in seconds)"
+msgstr ""
+
+msgid "empty = infinite"
+msgstr ""
diff --git a/applications/luci-app-ntpc/po/tr/ntpc.po b/applications/luci-app-ntpc/po/tr/ntpc.po
new file mode 100644
index 000000000..657b2e8be
--- /dev/null
+++ b/applications/luci-app-ntpc/po/tr/ntpc.po
@@ -0,0 +1,55 @@
+# Generated from applications/luci-ntpc/luasrc/model/cbi/ntpc/*.lua
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-10-11 22:20+0200\n"
+"Last-Translator: vincenzo <tayfun_ozturk@hotmail.com>\n"
+"Language-Team: none\n"
+"Language: tr\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 "Clock Adjustment"
+msgstr "Saat Ayarı"
+
+msgid "Count of time measurements"
+msgstr "Zaman Ölçüm Sayacı"
+
+msgid "Current system time"
+msgstr "Mevcut Sistem Saati"
+
+msgid "General"
+msgstr "Genel"
+
+msgid "Hostname"
+msgstr "Sunucu Adı"
+
+msgid "Offset frequency"
+msgstr "Denge Frekansı"
+
+msgid "Port"
+msgstr "Port"
+
+msgid "Synchronizes the system time"
+msgstr "Sistem Saati Senkronizasyonu"
+
+msgid "Time Server"
+msgstr "Zaman Sunucusu"
+
+msgid "Time Servers"
+msgstr "Zaman Sunucuları"
+
+msgid "Time Synchronisation"
+msgstr "Saat Senkronizasyonu"
+
+msgid "Update interval (in seconds)"
+msgstr "Güncelleme Aralığı (Saniye)"
+
+msgid "empty = infinite"
+msgstr "Boş = Sonsuz"
diff --git a/applications/luci-app-ntpc/po/uk/ntpc.po b/applications/luci-app-ntpc/po/uk/ntpc.po
new file mode 100644
index 000000000..451f783f9
--- /dev/null
+++ b/applications/luci-app-ntpc/po/uk/ntpc.po
@@ -0,0 +1,56 @@
+# Generated from applications/luci-ntpc/luasrc/model/cbi/ntpc/*.lua
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-03-18 20:32+0200\n"
+"Last-Translator: YuriPet <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.4\n"
+
+msgid "Clock Adjustment"
+msgstr "Коригування годинника"
+
+msgid "Count of time measurements"
+msgstr "Кількість вимірювань часу"
+
+msgid "Current system time"
+msgstr "Поточний системний час"
+
+msgid "General"
+msgstr "Загальне"
+
+msgid "Hostname"
+msgstr "Назва (ім'я) вузла"
+
+msgid "Offset frequency"
+msgstr "Зсув частоти"
+
+msgid "Port"
+msgstr "Порт"
+
+msgid "Synchronizes the system time"
+msgstr "Синхронізація системного часу"
+
+msgid "Time Server"
+msgstr "Сервер часу"
+
+msgid "Time Servers"
+msgstr "Сервери часу"
+
+msgid "Time Synchronisation"
+msgstr "Синхронізація часу"
+
+msgid "Update interval (in seconds)"
+msgstr "Інтервал оновлення (в секундах)"
+
+msgid "empty = infinite"
+msgstr "пусто = нескінченно"
diff --git a/applications/luci-app-ntpc/po/vi/ntpc.po b/applications/luci-app-ntpc/po/vi/ntpc.po
new file mode 100644
index 000000000..4de0971cb
--- /dev/null
+++ b/applications/luci-app-ntpc/po/vi/ntpc.po
@@ -0,0 +1,57 @@
+# ntpc.pot
+# generated from ./applications/luci-ntpc/luasrc/i18n/ntpc.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2009-08-13 03:46+0200\n"
+"Last-Translator: Hong Phuc Dang <dhppat@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Pootle 1.1.0\n"
+
+msgid "Clock Adjustment"
+msgstr "Điều chỉnh đồng hồ"
+
+#, fuzzy
+msgid "Count of time measurements"
+msgstr "Đếm thời gian"
+
+msgid "Current system time"
+msgstr "Thời gian hiện tại của hệ thống"
+
+msgid "General"
+msgstr ""
+
+msgid "Hostname"
+msgstr ""
+
+#, fuzzy
+msgid "Offset frequency"
+msgstr "tần số offset "
+
+msgid "Port"
+msgstr ""
+
+msgid "Synchronizes the system time"
+msgstr "Đồng bộ hóa giờ hệ thống"
+
+msgid "Time Server"
+msgstr ""
+
+#, fuzzy
+msgid "Time Servers"
+msgstr "Giờ server"
+
+msgid "Time Synchronisation"
+msgstr "Thời gian đồng bộ hóa"
+
+#, fuzzy
+msgid "Update interval (in seconds)"
+msgstr "Cập nhật Interval (giây)"
+
+msgid "empty = infinite"
+msgstr "Rỗng = Vô tận"
diff --git a/applications/luci-app-ntpc/po/zh-cn/ntpc.po b/applications/luci-app-ntpc/po/zh-cn/ntpc.po
new file mode 100644
index 000000000..0821c3f46
--- /dev/null
+++ b/applications/luci-app-ntpc/po/zh-cn/ntpc.po
@@ -0,0 +1,53 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: LuCi Chinese Translation\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-14 13:24+0200\n"
+"PO-Revision-Date: 2012-11-15 21:39+0200\n"
+"Last-Translator: Rui <shenrui01@gmail.com>\n"
+"Language-Team: QQ Group 75543259\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 "Clock Adjustment"
+msgstr "时钟校对"
+
+msgid "Count of time measurements"
+msgstr "单位时间数"
+
+msgid "Current system time"
+msgstr "当前系统时间"
+
+msgid "General"
+msgstr "基本设置"
+
+msgid "Hostname"
+msgstr "主机名"
+
+msgid "Offset frequency"
+msgstr "偏移量"
+
+msgid "Port"
+msgstr "端口"
+
+msgid "Synchronizes the system time"
+msgstr "同步系统时间"
+
+msgid "Time Server"
+msgstr "时间服务器"
+
+msgid "Time Servers"
+msgstr "时间服务器"
+
+msgid "Time Synchronisation"
+msgstr "时间同步"
+
+msgid "Update interval (in seconds)"
+msgstr "更新间隔(秒)"
+
+msgid "empty = infinite"
+msgstr "空值为无限长度"
diff --git a/applications/luci-app-ntpc/po/zh-tw/ntpc.po b/applications/luci-app-ntpc/po/zh-tw/ntpc.po
new file mode 100644
index 000000000..a89867113
--- /dev/null
+++ b/applications/luci-app-ntpc/po/zh-tw/ntpc.po
@@ -0,0 +1,51 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2014-05-14 18:43+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 "Clock Adjustment"
+msgstr "校時修正"
+
+msgid "Count of time measurements"
+msgstr "時間計量次數"
+
+msgid "Current system time"
+msgstr "目前系統時間"
+
+msgid "General"
+msgstr "一般"
+
+msgid "Hostname"
+msgstr "主機名稱"
+
+msgid "Offset frequency"
+msgstr "偏移頻道"
+
+msgid "Port"
+msgstr "埠號"
+
+msgid "Synchronizes the system time"
+msgstr "同步這個系統時間"
+
+msgid "Time Server"
+msgstr "校時伺服器"
+
+msgid "Time Servers"
+msgstr "校時伺服器"
+
+msgid "Time Synchronisation"
+msgstr "校時同步"
+
+msgid "Update interval (in seconds)"
+msgstr "更新間隔(秒)"
+
+msgid "empty = infinite"
+msgstr "留白=不限制"