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 i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
6 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> |
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
8 <style> | 8 <style> |
9 html { | 9 html { |
10 background: #f2f2f2; | 10 background: #f2f2f2; |
(...skipping 15 matching lines...) Expand all Loading... |
26 <body> | 26 <body> |
27 <downloads-manager></downloads-manager> | 27 <downloads-manager></downloads-manager> |
28 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> | 28 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> |
29 <if expr="is_macosx"> | 29 <if expr="is_macosx"> |
30 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> | 30 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> |
31 </if> | 31 </if> |
32 <if expr="not is_macosx"> | 32 <if expr="not is_macosx"> |
33 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> | 33 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> |
34 </if> | 34 </if> |
35 <link rel="import" href="chrome://resources/html/polymer_config.html"> | 35 <link rel="import" href="chrome://resources/html/polymer_config.html"> |
36 <link rel="import" href="chrome://downloads/i18n.html"> | 36 <link rel="import" href="chrome://downloads/i18n_setup.html"> |
37 <link rel="import" href="chrome://downloads/manager.html"> | 37 <link rel="import" href="chrome://downloads/manager.html"> |
| 38 <!-- i18n_template.html actually does i18n-* attribute substitutions. |
| 39 It should be imported last and only once. TODO(dbeam): figure out a good |
| 40 solution for each individual element to do this as well. --> |
| 41 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
38 <script src="chrome://downloads/downloads.js"></script> | 42 <script src="chrome://downloads/downloads.js"></script> |
39 </body> | 43 </body> |
40 </html> | 44 </html> |
OLD | NEW |