Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Side by Side Diff: chrome/browser/resources/md_downloads/downloads.html

Issue 1409933012: MD Downloads: re-jigger the order of i18n processing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mac vulcanize Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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.html">
michaelpg 2015/11/09 20:25:47 perhaps rename now that the only file dealing spec
Dan Beam 2015/11/11 00:03:31 renamed to i18n_setup.html like we discussed
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/crisper.js ('k') | chrome/browser/resources/md_downloads/i18n.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698