OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
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://resources/css/text_defaults.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
7 <link rel="stylesheet" href="chrome://network/network_ui.css"> | 7 <link rel="stylesheet" href="chrome://network/network_ui.css"> |
8 <script src="chrome://resources/js/load_time_data.js"></script> | 8 <script src="chrome://resources/js/load_time_data.js"></script> |
9 <script src="chrome://resources/js/util.js"></script> | 9 <script src="chrome://resources/js/util.js"></script> |
10 <script src="chrome://network/strings.js"></script> | 10 <script src="chrome://network/strings.js"></script> |
11 <script src="chrome://network/network_ui.js"></script> | 11 <script src="chrome://network/network_ui.js"></script> |
12 </head> | 12 </head> |
13 <body> | 13 <body> |
14 <div id="header"> | 14 <div id="header"> |
15 <p i18n-content="autoRefreshText"></p> | 15 <p i18n-content="autoRefreshText"></p> |
16 <span i18n-values=".innerHTML:deviceLogLinkText"></span> | 16 <span i18n-values=".innerHTML:deviceLogLinkText"></span> |
17 <div id="advanced-options"> | 17 <div id="advanced-options"> |
18 <span i18n-content="clickToExpandText"></span> | 18 <span i18n-content="clickToExpandText"></span> |
19 <span i18n-content="propertyFormatText"></span> | 19 <span i18n-content="propertyFormatText"></span> |
20 <select id="get-property-format"> | 20 <select id="get-property-format"> |
21 <option value="normal" i18n-content="normalFormatOption"></option> | 21 <option value="normal" i18n-content="normalFormatOption"></option> |
22 <option value="managed" i18n-content="managedFormatOption"></option> | 22 <option value="managed" i18n-content="managedFormatOption"></option> |
| 23 <option value="state" i18n-content="stateFormatOption"></option> |
23 <option value="shill" i18n-content="shillFormatOption"></option> | 24 <option value="shill" i18n-content="shillFormatOption"></option> |
24 </select> | 25 </select> |
25 </div> | 26 </div> |
26 <p><button id="refresh" i18n-content="networkRefreshText"></button></p> | 27 <p><button id="refresh" i18n-content="networkRefreshText"></button></p> |
27 </div> | 28 </div> |
28 | 29 |
29 <h3 i18n-content="visibleNetworksLabel"></h3> | 30 <h3 i18n-content="visibleNetworksLabel"></h3> |
30 <table id="network-state-table" class="state-table"> | 31 <table id="network-state-table" class="state-table"> |
31 <tr class="state-table-header"> | 32 <tr class="state-table-header"> |
32 <td></td> | 33 <td></td> |
(...skipping 23 matching lines...) Expand all Loading... |
56 <td>Type</td> | 57 <td>Type</td> |
57 <td>Profile</td> | 58 <td>Profile</td> |
58 <td>Visible</td> | 59 <td>Visible</td> |
59 <td>ONC Source</td> | 60 <td>ONC Source</td> |
60 </tr> | 61 </tr> |
61 </table> | 62 </table> |
62 | 63 |
63 <script src="chrome://resources/js/i18n_template2.js"></script> | 64 <script src="chrome://resources/js/i18n_template2.js"></script> |
64 </body> | 65 </body> |
65 </html> | 66 </html> |
OLD | NEW |