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

Side by Side Diff: components/neterror/resources/neterror.html

Issue 2908353003: [i18n] components directory to $i18n{} (Closed)
Patch Set: handle blank cohort name 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0, 5 <meta name="viewport" content="width=device-width, initial-scale=1.0,
6 maximum-scale=1.0, user-scalable=no"> 6 maximum-scale=1.0, user-scalable=no">
7 <title i18n-content="title"></title> 7 <title>$i18n{title}</title>
8 <link rel="stylesheet" href="../../../components/security_interstitials/core/b rowser/resources/interstitial_common.css"> 8 <link rel="stylesheet" href="../../../components/security_interstitials/core/b rowser/resources/interstitial_common.css">
9 <link rel="stylesheet" href="../../../components/security_interstitials/core/b rowser/resources/interstitial_large.css"> 9 <link rel="stylesheet" href="../../../components/security_interstitials/core/b rowser/resources/interstitial_large.css">
10 <link rel="stylesheet" href="neterror.css"> 10 <link rel="stylesheet" href="neterror.css">
11 <script src="../../../components/security_interstitials/core/browser/resources /interstitial_mobile_nav.js"></script> 11 <script src="../../../components/security_interstitials/core/browser/resources /interstitial_mobile_nav.js"></script>
12 <script src="neterror.js"></script> 12 <script src="neterror.js"></script>
13 <script src="offline.js"></script> 13 <script src="offline.js"></script>
14 </head> 14 </head>
15 <body id="t" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize" > 15 <body id="t" style="fontFamily:$i18n{fontfamily};fontSize:$i18n{fontsize}">
16 <div id="main-frame-error" class="interstitial-wrapper"> 16 <div id="main-frame-error" class="interstitial-wrapper">
17 <div id="main-content"> 17 <div id="main-content">
18 <div class="icon" 18 <div class="icon"
19 jseval="updateIconClass(this.classList, iconClass)" alt=""></div> 19 jseval="updateIconClass(this.classList, iconClass)" alt=""></div>
20 <div id="main-message"> 20 <div id="main-message">
21 <h1 jsselect="heading" jsvalues=".innerHTML:msg"></h1> 21 <h1 jsselect="heading" jsvalues=".innerHTML:msg"></h1>
22 <p jsselect="summary" jsvalues=".innerHTML:msg"></p> 22 <p jsselect="summary" jsvalues=".innerHTML:msg"></p>
23 <div id="suggestions-list" style="display:none" 23 <div id="suggestions-list" style="display:none"
24 jsdisplay="(suggestionsSummaryList && suggestionsSummaryList.length) "> 24 jsdisplay="(suggestionsSummaryList && suggestionsSummaryList.length) ">
25 <p jsvalues=".innerHTML:suggestionsSummaryListHeader"></p> 25 <p jsvalues=".innerHTML:suggestionsSummaryListHeader"></p>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 <img id="offline-resources-1x" src="default_100_percent/offline/100-offline- sprite.png"> 77 <img id="offline-resources-1x" src="default_100_percent/offline/100-offline- sprite.png">
78 <img id="offline-resources-2x" src="default_200_percent/offline/200-offline- sprite.png"> 78 <img id="offline-resources-2x" src="default_200_percent/offline/200-offline- sprite.png">
79 <template id="audio-resources"> 79 <template id="audio-resources">
80 <audio id="offline-sound-press" src="sounds/button-press.mp3"></audio> 80 <audio id="offline-sound-press" src="sounds/button-press.mp3"></audio>
81 <audio id="offline-sound-hit" src="sounds/hit.mp3"></audio> 81 <audio id="offline-sound-hit" src="sounds/hit.mp3"></audio>
82 <audio id="offline-sound-reached" src="sounds/score-reached.mp3"></audio> 82 <audio id="offline-sound-reached" src="sounds/score-reached.mp3"></audio>
83 </template> 83 </template>
84 </div> 84 </div>
85 </body> 85 </body>
86 </html> 86 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698