Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html i18n-values="dir:textdirection"> | |
| 2 <head> | |
| 3 <title i18n-content="headerText"></title> | |
| 4 | |
| 5 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html"> | |
| 7 | |
| 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | |
| 9 <link rel="stylesheet" href="chrome://welcome/welcome.css"> | |
| 10 | |
| 11 <script src="chrome://resources/js/cr.js"></script> | |
| 12 <script src="chrome://resources/js/load_time_data.js"></script> | |
| 13 <script src="chrome://resources/js/util.js"></script> | |
| 14 <script src="chrome://welcome/strings.js"></script> | |
| 15 <script src="chrome://welcome/welcome.js"></script> | |
| 16 </head> | |
| 17 <body> | |
| 18 | |
| 19 <div class="spacer"></div> | |
| 20 <div class="content"> | |
| 21 <div class="logo"> | |
| 22 <div class="logo-icon"> | |
| 23 <img src="chrome://welcome/logo.png" class="logo-bw"> | |
| 24 <img src="chrome://welcome/logo.png" class="logo-color"> | |
| 25 </div> | |
| 26 <div class="logo-shadow"></div> | |
| 27 </div> | |
| 28 <p class="heading" i18n-content="headerText"></p> | |
| 29 <p class="subheading" i18n-content="subheaderText"></p> | |
| 30 <div class="signin"> | |
| 31 <p class="signin-description" i18n-content="descriptionText"></p> | |
|
Moe
2016/08/19 17:10:52
it's preferred to use $i18n{...} instead of i18n-*
| |
| 32 <div class="signin-buttons"> | |
| 33 <paper-button class="action" i18n-content="acceptText"></paper-button> | |
| 34 <a href="#" class="link" i18n-content="declineText"></a> | |
| 35 </div> | |
| 36 </div> | |
| 37 </div> | |
| 38 <div class="watermark"> | |
| 39 | |
| 40 <script src="chrome://resources/js/i18n_template.js"></script> | |
|
Moe
2016/08/19 17:10:52
you should be able to get rid of this after conver
| |
| 41 </body> | |
| 42 </html> | |
| OLD | NEW |