diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-09 15:19:47 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-09 15:19:47 +0000 |
commit | c7a3eeddf3eaa44b1232c55d2c0c3d2be561a257 (patch) | |
tree | 7410a8240c58ea8fa3d005da197ca770d56bd5d5 /applications/luci-minidlna | |
parent | 68b915d338fcac5e4f7b1d1303536433e6925d0b (diff) |
applications/luci-minidlna: load language file in status template
Diffstat (limited to 'applications/luci-minidlna')
-rw-r--r-- | applications/luci-minidlna/luasrc/view/minidlna_status.htm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/applications/luci-minidlna/luasrc/view/minidlna_status.htm b/applications/luci-minidlna/luasrc/view/minidlna_status.htm index ba23bedcc..a2336f76a 100644 --- a/applications/luci-minidlna/luasrc/view/minidlna_status.htm +++ b/applications/luci-minidlna/luasrc/view/minidlna_status.htm @@ -1,3 +1,5 @@ +<%- luci.i18n.loadc("minidlna") -%> + <script type="text/javascript">//<![CDATA[ XHR.poll(5, '<%=luci.dispatcher.build_url("admin/services/minidlna_status")%>', null, function(x, st) @@ -14,7 +16,7 @@ } else { - tb.innerHTML = '<%:The miniDLNA service is not running.%>'; + tb.innerHTML = '<em><%:The miniDLNA service is not running.%></em>'; } } } |