OLD | NEW |
---|---|
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title id="network" i18n-content="titleText"></title> | 5 <title id="network" i18n-content="titleText"></title> |
6 <link rel="stylesheet" href="chrome://network/network.css"> | 6 <link rel="stylesheet" href="chrome://network/network_ui.css"> |
7 <script src="chrome://resources/js/load_time_data.js"></script> | 7 <script src="chrome://resources/js/load_time_data.js"></script> |
8 <script src="chrome://resources/js/util.js"></script> | 8 <script src="chrome://resources/js/util.js"></script> |
9 <script src="chrome://network/strings.js"></script> | 9 <script src="chrome://network/strings.js"></script> |
10 <script src="chrome://network/network.js"></script> | 10 <script src="chrome://network/network_config.js"></script> |
11 <script src="chrome://network/network_ui.js"></script> | |
11 </head> | 12 </head> |
12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
13 <p i18n-content="autoRefreshText"></p> | 14 <p i18n-content="autoRefreshText"></p> |
14 <h3>Event Log (Newest first):</h3> | 15 <h3>Event Log (Newest first):</h3> |
15 <div id="log-level-container"> | 16 <div id="log-level-container"> |
16 <button id="log-refresh" i18n-content="logRefreshText"></button> | 17 <button id="log-refresh" i18n-content="logRefreshText"></button> |
17 <label i18n-content="logLevelShowText"></label> | 18 <label i18n-content="logLevelShowText"></label> |
18 <input id="log-error" type="checkbox"> | 19 <input id="log-error" type="checkbox"> |
19 <label for="log-error" i18n-content="logLevelErrorText"></label> | 20 <label for="log-error" i18n-content="logLevelErrorText"></label> |
20 <input id="log-user" type="checkbox"> | 21 <input id="log-user" type="checkbox"> |
(...skipping 11 matching lines...) Expand all Loading... | |
32 </div> | 33 </div> |
33 <h3>Networks: </h3> | 34 <h3>Networks: </h3> |
34 <table id="network-state-table" class="state-table"> | 35 <table id="network-state-table" class="state-table"> |
35 <tr class="state-table-header"> | 36 <tr class="state-table-header"> |
36 <td></td> | 37 <td></td> |
37 <td>Path</td> | 38 <td>Path</td> |
38 <td>GUID</td> | 39 <td>GUID</td> |
39 <td>Name</td> | 40 <td>Name</td> |
40 <td>Type</td> | 41 <td>Type</td> |
41 <td>State</td> | 42 <td>State</td> |
42 <td>Profile</td> | |
43 <td>Connect</td> | |
44 <td>Error</td> | 43 <td>Error</td> |
45 <td>Security</td> | 44 <td>Security</td> |
46 <td>Technology</td> | 45 <td>Technology</td> |
47 <td>Activation</td> | 46 <td>Activation</td> |
48 <td>Roaming</td> | 47 <td>Roaming</td> |
49 <td>OOC</td> | 48 <td>OOC</td> |
50 <td>Strength</td> | 49 <td>Strength</td> |
51 </tr> | 50 </tr> |
52 </table> | 51 </table> |
53 <h3>Favorites: </h3> | 52 <h3>Favorites: </h3> |
54 <table id="favorite-state-table" class="state-table"> | 53 <table id="favorite-state-table" class="state-table"> |
55 <tr class="state-table-header"> | 54 <tr class="state-table-header"> |
56 <td></td> | 55 <td></td> |
57 <td>Path</td> | 56 <td>Path</td> |
58 <td>GUID</td> | 57 <td>GUID</td> |
59 <td>Name</td> | 58 <td>Name</td> |
60 <td>Type</td> | 59 <td>Type</td> |
61 <td>Profile</td> | 60 <td>Profile</td> |
62 <td>ONC Source</td> | 61 <td>Onc Source</td> |
michaelpg
2014/04/29 19:51:00
Why? ONC is uppercase everywhere else in English,
stevenjb
2014/05/01 01:45:14
Done.
| |
63 </tr> | 62 </tr> |
64 </table> | 63 </table> |
65 <script src="chrome://resources/js/i18n_template2.js"></script> | 64 <script src="chrome://resources/js/i18n_template2.js"></script> |
66 </body> | 65 </body> |
67 </html> | 66 </html> |
OLD | NEW |