diff options
author | Steven Barth <steven@midlink.org> | 2008-08-16 21:50:09 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-16 21:50:09 +0000 |
commit | 32f2f12438f29ab2b0423d434f08e7bd2d1c755f (patch) | |
tree | 48b7357386e709657c315af5c5577077ec643423 /applications/luci-ntpc | |
parent | 8b2e83f2d5650acfe2b15a44cb125e28867beb98 (diff) |
applications/luci-ntpc: Display current system time
Diffstat (limited to 'applications/luci-ntpc')
4 files changed, 9 insertions, 2 deletions
diff --git a/applications/luci-ntpc/luasrc/i18n/ntpc.de.lua b/applications/luci-ntpc/luasrc/i18n/ntpc.de.lua index 89a8ba1ff..6d067ad7e 100644 --- a/applications/luci-ntpc/luasrc/i18n/ntpc.de.lua +++ b/applications/luci-ntpc/luasrc/i18n/ntpc.de.lua @@ -5,4 +5,5 @@ ntpc_interval = "Aktualisierungsintervall (in s)" ntpc_count = "Anzahl der Zeitmessungen" ntpc_count_desc = "leer = unendlich" ntpc_drift = "Zeitgeberjustierung" -ntpc_drift_freq = "Frequenzabweichung"
\ No newline at end of file +ntpc_drift_freq = "Frequenzabweichung" +ntpc_current = "Aktuelle Systemzeit"
\ No newline at end of file diff --git a/applications/luci-ntpc/luasrc/i18n/ntpc.en.lua b/applications/luci-ntpc/luasrc/i18n/ntpc.en.lua index 411b33828..58bf7b3ea 100644 --- a/applications/luci-ntpc/luasrc/i18n/ntpc.en.lua +++ b/applications/luci-ntpc/luasrc/i18n/ntpc.en.lua @@ -5,4 +5,5 @@ ntpc_interval = "Update Interval (in s)" ntpc_count = "Count of Time Measurements" ntpc_count_desc = "empty = infinite" ntpc_drift = "Clock Adjustment" -ntpc_drift_freq = "Offset Frequency"
\ No newline at end of file +ntpc_drift_freq = "Offset Frequency" +ntpc_current = "Current system time"
\ No newline at end of file diff --git a/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpc.lua b/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpc.lua index d8b35c6e1..2b4e2c23d 100644 --- a/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpc.lua +++ b/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpc.lua @@ -17,6 +17,8 @@ m = Map("ntpclient", translate("ntpc"), translate("ntpc_desc")) s = m:section(TypedSection, "ntpclient", translate("general")) s.anonymous = true +s:option(DummyValue, "_time", translate("ntpc_current")).value = os.date("%c") + s:option(Value, "interval", translate("ntpc_interval")) s:option(Value, "count", translate("ntpc_count"), translate("ntpc_count_desc")) diff --git a/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua b/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua index af36ca47c..ecb098ab3 100644 --- a/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua +++ b/applications/luci-ntpc/luasrc/model/cbi/ntpc/ntpcmini.lua @@ -17,6 +17,9 @@ m = Map("ntpclient", translate("ntpc"), translate("ntpc_desc")) s = m:section(TypedSection, "ntpclient", translate("general")) s.anonymous = true + +s:option(DummyValue, "_time", translate("ntpc_current")).value = os.date("%c") + s:option(Value, "interval", translate("ntpc_interval")) |