OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
michaelpg
2014/12/11 01:41:44
nit: This is supposed to be case sensitive. But it
stevenjb
2014/12/11 19:57:51
It looks like we use a mixture of both in the UI,
| |
2 <html i18n-values="dir:textdirection;"> | |
3 <head> | |
4 <meta charset="utf-8"> | |
5 <title id="device-log-title" i18n-content="titleText"></title> | |
6 <link rel="stylesheet" href="chrome://device-log/device_log_ui.css"> | |
7 <script src="chrome://resources/js/load_time_data.js"></script> | |
8 <script src="chrome://resources/js/util.js"></script> | |
9 <script src="chrome://device-log/strings.js"></script> | |
10 <script src="chrome://device-log/device_log_ui.js"></script> | |
11 </head> | |
12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | |
13 <div id="header"> | |
14 <p i18n-content="autoRefreshText"></p> | |
15 <h3>Event Log (Newest first):</h3> | |
michaelpg
2014/12/11 01:41:45
question: why is some text localized and some not?
stevenjb
2014/12/11 19:57:51
Historical reasons (this was mostly just moved fro
| |
16 </div> | |
17 <div id="log-checkbox-container"> | |
18 <button id="log-refresh" i18n-content="logRefreshText"></button> | |
19 <label id="log-checkbox-show" i18n-content="logLevelShowText"></label> | |
20 | |
21 <label> | |
22 <input id="log-level-error" type="checkbox"> | |
23 <span i18n-content="logLevelErrorText"></span> | |
24 </label> | |
25 <label> | |
26 <input id="log-level-user" type="checkbox"> | |
27 <span i18n-content="logLevelUserText"></span> | |
28 </label> | |
29 <label> | |
30 <input id="log-level-event" type="checkbox"> | |
31 <span i18n-content="logLevelEventText"></span> | |
32 </label> | |
33 <label> | |
34 <input id="log-level-debug" type="checkbox"> | |
35 <span i18n-content="logLevelDebugText"></span> | |
36 </label> | |
37 <label> | |
38 <input id="log-type-login" type="checkbox"> | |
39 <span i18n-content="logTypeLoginText"></span> | |
40 </label> | |
41 <label> | |
42 <input id="log-type-network" type="checkbox"> | |
43 <span i18n-content="logTypeNetworkText"></span> | |
44 </label> | |
45 <label> | |
46 <input id="log-type-power" type="checkbox"> | |
47 <span i18n-content="logTypePowerText"></span> | |
48 </label> | |
49 <label> | |
50 <input id="log-fileinfo" type="checkbox"> | |
51 <span i18n-ontent="logLevelFileinfoText"></span> | |
michaelpg
2014/12/11 01:41:45
i18n-content
stevenjb
2014/12/11 19:57:51
Done.
| |
52 </label> | |
53 <label> | |
54 <input id="log-timedetail" type="checkbox"> | |
55 <span i18n-ontent="logLevelTimeDetailText"></span> | |
michaelpg
2014/12/11 01:41:44
i18n-content
stevenjb
2014/12/11 19:57:51
Done.
| |
56 </label> | |
57 </div> | |
58 <div id="log-container"></div> | |
59 <script src="chrome://resources/js/i18n_template2.js"></script> | |
60 </body> | |
61 </html> | |
OLD | NEW |