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

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

Issue 2946433002: Fix a regression from i18n-* -> $i18n{} migration (Closed)
Patch Set: one more Created 3 years, 6 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 | components/flags_ui/resources/apple_flags.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 dir="$i18n{textdirection}" lang="$i18n{language}"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title id="device-log-title">$i18n{titleText}</title> 5 <title id="device-log-title">$i18n{titleText}</title>
6 <link rel="stylesheet" href="chrome://device-log/device_log_ui.css"> 6 <link rel="stylesheet" href="chrome://device-log/device_log_ui.css">
7 <script src="chrome://resources/js/load_time_data.js"></script> 7 <script src="chrome://resources/js/load_time_data.js"></script>
8 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://device-log/strings.js"></script> 9 <script src="chrome://device-log/strings.js"></script>
10 <script src="chrome://device-log/device_log_ui.js"></script> 10 <script src="chrome://device-log/device_log_ui.js"></script>
11 </head> 11 </head>
12 <body style="fontFamily:$i18n{fontfamily};fontSize:$i18n{fontsize};"> 12 <body style="font-family: $i18n{fontfamily}; font-size: $i18n{fontsize};">
13 <div id="header"> 13 <div id="header">
14 <p>$i18n{autoRefreshText}</p> 14 <p>$i18n{autoRefreshText}</p>
15 </div> 15 </div>
16 <div id="log-checkbox-container"> 16 <div id="log-checkbox-container">
17 <button id="log-refresh">$i18n{logRefreshText}</button> 17 <button id="log-refresh">$i18n{logRefreshText}</button>
18 <label id="log-checkbox-show">$i18n{logLevelShowText}</label> 18 <label id="log-checkbox-show">$i18n{logLevelShowText}</label>
19 <label> 19 <label>
20 <input id="log-level-error" type="checkbox"> 20 <input id="log-level-error" type="checkbox">
21 <span>$i18n{logLevelErrorText}</span> 21 <span>$i18n{logLevelErrorText}</span>
22 </label> 22 </label>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 </label> 62 </label>
63 <label> 63 <label>
64 <input id="log-timedetail" type="checkbox"> 64 <input id="log-timedetail" type="checkbox">
65 <span>$i18n{logLevelTimeDetailText}</span> 65 <span>$i18n{logLevelTimeDetailText}</span>
66 </label> 66 </label>
67 </div> 67 </div>
68 <div id="log-container"></div> 68 <div id="log-container"></div>
69 <script src="chrome://resources/js/i18n_template.js"></script> 69 <script src="chrome://resources/js/i18n_template.js"></script>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW
« no previous file with comments | « no previous file | components/flags_ui/resources/apple_flags.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698