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

Side by Side Diff: chrome/browser/resources/md_history/history.html

Issue 1609683002: MD History: Rewrite i18n system using ReplaceTemplateExpressions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md_history_2
Patch Set: Rewrite with simpler new system Created 4 years, 9 months 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_list.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="utf8"> 4 <meta charset="utf8">
5 <title i18n-content="title"></title> 5 <title>$i18n{title}</title>
6 6
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
8 8
9 <style> 9 <style>
10 html, 10 html,
11 body { 11 body {
12 height: 100%; 12 height: 100%;
13 margin: 0; 13 margin: 0;
14 } 14 }
15 15
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 <script src="strings.js"></script> 57 <script src="strings.js"></script>
58 58
59 <link rel="import" href="chrome://history/constants.html"> 59 <link rel="import" href="chrome://history/constants.html">
60 <link rel="import" href="chrome://history/history_list.html"> 60 <link rel="import" href="chrome://history/history_list.html">
61 <link rel="import" href="chrome://history/history_toolbar.html"> 61 <link rel="import" href="chrome://history/history_toolbar.html">
62 <link rel="import" href="chrome://history/synced_device_manager.html"> 62 <link rel="import" href="chrome://history/synced_device_manager.html">
63 <link rel="import" href="chrome://history/side_bar.html"> 63 <link rel="import" href="chrome://history/side_bar.html">
64 64
65 <script src="history.js"></script> 65 <script src="history.js"></script>
66 66
67 <!-- Prepare strings and perform i18n substitutions. --> 67 <!--
68 Prepare strings and perform i18n substitutions.
69 TODO(tsergeant): Remove once we are fully converted to
70 ReplaceTemplateExpressions. It is currently only used for the <html> tag.
71 -->
68 <link rel="import" href="chrome://resources/html/i18n_template.html"> 72 <link rel="import" href="chrome://resources/html/i18n_template.html">
69 </body> 73 </body>
70 74
71 </html> 75 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_list.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698