fixes, fully translated tomato, with english dictionary and Polish translation
[tomato.git] / release / src / router / www / mnoise.asp
blob65012496fe51ee636c9f76e7de8c7bb64a1d1451
1 <html>
2 <!--
3 Tomato GUI
4 Copyright (C) 2006-2010 Jonathan Zarate
5 http://www.polarcloud.com/tomato/
7 For use with Tomato Firmware only.
8 No part of this file may be used without permission.
9 -->
10 <head>
11 <meta http-equiv='content-type' content='text/html;charset=utf-8'>
12 <meta name='robots' content='noindex,nofollow'>
13 <title>[<% ident(); %>] <% translate("Measuring Noise"); %>...</title>
14 <script language='javascript'>
15 function tick()
17 t.innerHTML = tock + ' second' + ((tock == 1) ? '' : 's');
18 if (--tock >= 0) setTimeout(tick, 1000);
19 else history.go(-1);
21 function init()
23 t = document.getElementById('time');
24 tock = 15;
25 tick();
27 </script></head>
28 <body onload='init()' style='background-color:#fff' onclick='go()'>
29 <table style='width:100%;height:100%'>
30 <tr><td style='text-align:center;vertical-align:middle;font:13px sans-serif;width:100%;height:100%'>
31 <span style='font-size: 25px'><% translate("Measuring radio noise floor"); %>...</span>
32 <br>
33 <% translate("Wireless access has been temporarily disabled for"); %> <span id='time'>15 <% translate("seconds"); %></span>.
34 </td></tr>
35 </table>
36 </body></html>