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

Side by Side Diff: chrome/browser/resources/about_sys/about_sys.html

Issue 2906993002: [i18n] about-sys to $i18n{} (Closed)
Patch Set: Created 3 years, 7 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 | no next file » | 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 id="t" i18n-values="dir:textdirection;lang:language"> 2 <html id="t" dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <title i18n-content="title"></title> 5 <title>$i18n{title}</title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link rel="stylesheet" href="about_sys.css"> 7 <link rel="stylesheet" href="about_sys.css">
8 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://resources/js/i18n_template_no_process.js"></script> 9 <script src="chrome://resources/js/i18n_template_no_process.js"></script>
10 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 10 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
11 <script src="about_sys.js"></script> 11 <script src="about_sys.js"></script>
12 </head> 12 </head>
13 <body> 13 <body>
14 <div id="header"> 14 <div id="header">
15 <h1 i18n-content="title"></h1> 15 <h1>$i18n{title}</h1>
16 <p i18n-content="description"></p> 16 <p>$i18n{description}</p>
17 </div> 17 </div>
18 <div id="content"> 18 <div id="content">
19 <h2 id="tableTitle" i18n-content="tableTitle"></h2> 19 <h2 id="tableTitle">$i18n{tableTitle}</h2>
20 <div id="anchor" jscontent="anchor"></div> 20 <div id="anchor" jscontent="anchor"></div>
21 <button id="expandAll" class="global-button" i18n-content="expandAllBtn"> 21 <button id="expandAll" class="global-button">$i18n{expandAllBtn}</button>
22 <button id="collapseAll" class="global-button">
23 $i18n{collapseAllBtn}
22 </button> 24 </button>
23 <button id="collapseAll" class="global-button"
24 i18n-content="collapseAllBtn"></button>
25 <p id="status"></p> 25 <p id="status"></p>
26 <table class="list" id="details"> 26 <table class="list" id="details">
27 <tr jsselect="details"> 27 <tr jsselect="details">
28 <td class="name"> 28 <td class="name">
29 <div class="stat-name" jscontent="statName"></div> 29 <div class="stat-name" jscontent="statName"></div>
30 </td> 30 </td>
31 <td class="button-cell"> 31 <td class="button-cell">
32 <button jsvalues="id:statName + '-value-btn'" 32 <button jsvalues="id:statName + '-value-btn'"
33 class="expand-status"></button> 33 class="expand-status"></button>
34 </td> 34 </td>
35 <td class="number"> 35 <td class="number">
36 <div class="stat-value" jscontent="statValue" 36 <div class="stat-value" jscontent="statValue"
37 jsvalues="id:statName + '-value'"></div> 37 jsvalues="id:statName + '-value'"></div>
38 </td> 38 </td>
39 </tr> 39 </tr>
40 </table> 40 </table>
41 </div> 41 </div>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698