applications/luci-ahcp: allow to translate AHCP service status string

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
This commit is contained in:
Jo-Philipp Wich 2012-04-02 22:50:34 +00:00
parent f0ebbd0c5a
commit 9f729c8d8c

View file

@ -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);
}
}
);