summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-04-02 22:50:34 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-04-02 22:50:34 +0000
commit9f729c8d8cf5cc00100a299fba898a680217805c (patch)
treea972f11d6902533f6d06fbf2b61b7283751367ca /applications
parentf0ebbd0c5a70d3fac48c8d619e1f98918a54dce2 (diff)
applications/luci-ahcp: allow to translate AHCP service status string
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-ahcp/luasrc/view/ahcp_status.htm4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-ahcp/luasrc/view/ahcp_status.htm b/applications/luci-ahcp/luasrc/view/ahcp_status.htm
index abe8879a4..88796cb1c 100644
--- a/applications/luci-ahcp/luasrc/view/ahcp_status.htm
+++ b/applications/luci-ahcp/luasrc/view/ahcp_status.htm
@@ -30,9 +30,9 @@
}
if( st.uid == '00:00:00:00:00:00:00:00' )
- tx.innerHTML = 'The AHCP Service is not running.';
+ tx.innerHTML = '<%:The AHCP Service is not running.%>';
else
- tx.innerHTML = String.format('The AHCP Service is running with ID %s.', st.uid);
+ tx.innerHTML = String.format('<%:The AHCP Service is running with ID %s.%>', st.uid);
}
}
);