OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
3 <!-- | 3 <!-- |
4 Copyright 2013 The Chromium Authors. All rights reserved. | 4 Copyright 2013 The Chromium Authors. All rights reserved. |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 <head> | 8 <head> |
9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
10 <title>Translate Internals</title> | 10 <title>Translate Internals</title> |
11 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> | 11 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> |
12 <link rel="stylesheet" href="./translate_internals.css"> | 12 <link rel="stylesheet" href="./translate_internals.css"> |
13 <script src="chrome://resources/js/util.js"></script> | 13 <script src="chrome://resources/js/util.js"></script> |
14 <script src="chrome://resources/js/cr.js"></script> | 14 <script src="chrome://resources/js/cr.js"></script> |
15 <script src="chrome://resources/js/i18n_template.js"></script> | 15 <script src="chrome://resources/js/i18n_template.js"></script> |
16 <script src="chrome://resources/js/cr/event_target.js"></script> | 16 <script src="chrome://resources/js/cr/event_target.js"></script> |
17 <script src="chrome://resources/js/cr/ui.js"></script> | 17 <script src="chrome://resources/js/cr/ui.js"></script> |
18 <script src="chrome://resources/js/cr/ui/tabs.js"></script> | 18 <script src="chrome://resources/js/cr/ui/tabs.js"></script> |
19 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> | 19 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> |
20 <script src="/strings.js"></script> | 20 <script src="/strings.js"></script> |
21 <script src="./translate_internals.js"></script> | 21 <script src="./translate_internals.js"></script> |
22 </head> | 22 </head> |
23 | 23 |
24 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 24 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
25 | 25 |
26 <tabbox> | 26 <tabbox> |
27 <tabs> | 27 <tabs> |
28 <tab>Prefs</tab> | 28 <tab>Prefs</tab> |
29 <tab>Detection Logs</tab> | 29 <tab>Detection Logs</tab> |
| 30 <tab>Error Logs</tab> |
30 </tabs> | 31 </tabs> |
31 <tabpanels> | 32 <tabpanels> |
32 | 33 |
33 <tabpanel id="prefs"> | 34 <tabpanel id="prefs"> |
34 <div> | 35 <div> |
35 <include src="prefs.html"/> | 36 <include src="prefs.html"/> |
36 </div> | 37 </div> |
37 </tabpanel> | 38 </tabpanel> |
38 | 39 |
39 <tabpanel id="detection-logs"> | 40 <tabpanel id="detection-logs"> |
40 <div> | 41 <div> |
41 <include src="detection_logs.html"/> | 42 <include src="detection_logs.html"/> |
42 </div> | 43 </div> |
43 </tabpanel> | 44 </tabpanel> |
44 | 45 |
| 46 <tabpanel id="error-logs"> |
| 47 <div> |
| 48 <include src="error_logs.html"/> |
| 49 </div> |
| 50 </tabpanel> |
| 51 |
45 </tabpanels> | 52 </tabpanels> |
46 </tabbox> | 53 </tabbox> |
47 | 54 |
48 <script src="chrome://resources/js/i18n_template.js"></script> | 55 <script src="chrome://resources/js/i18n_template.js"></script> |
49 <script src="chrome://resources/js/i18n_process.js"></script> | 56 <script src="chrome://resources/js/i18n_process.js"></script> |
50 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 57 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
51 </body> | 58 </body> |
52 | 59 |
53 </html> | 60 </html> |
OLD | NEW |