| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title i18n-content="dialogTitle"></title> | 5 <title i18n-content="dialogTitle"></title> |
| 6 <script src="chrome://resources/js/cr.js"></script> | 6 <script src="chrome://resources/js/cr.js"></script> |
| 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="strings.js"></script> | 9 <script src="strings.js"></script> |
| 10 <script src="profile_signin_confirmation.js"></script> | 10 <script src="profile_signin_confirmation.js"></script> |
| 11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 11 <link rel="stylesheet" href="profile_signin_confirmation.css"> | 12 <link rel="stylesheet" href="profile_signin_confirmation.css"> |
| 12 </head> | 13 </head> |
| 13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 14 <body> |
| 14 <h1 id="dialog-title" i18n-content="dialogTitle"></h1> | 15 <h1 id="dialog-title" i18n-content="dialogTitle"></h1> |
| 15 <p id="dialog-message"></p> | 16 <p id="dialog-message"></p> |
| 16 <a i18n-content="learnMoreText" | 17 <a i18n-content="learnMoreText" |
| 17 href="http://support.google.com/chromeos/bin/answer.py?hl=en&answer=133154
9" | 18 href="http://support.google.com/chromeos/bin/answer.py?hl=en&answer=133154
9" |
| 18 target="_blank"> | 19 target="_blank"> |
| 19 </a> | 20 </a> |
| 20 <p id="dialog-prompt"></p> | 21 <p id="dialog-prompt"></p> |
| 21 <div id="button-row"> | 22 <div id="button-row"> |
| 22 <button id="create-button" i18n-content="createProfileButtonText"></button> | 23 <button id="create-button" i18n-content="createProfileButtonText"></button> |
| 23 <button id="continue-button"></button> | 24 <button id="continue-button"></button> |
| 24 <button id="cancel-button" i18n-content="cancelButtonText"></button> | 25 <button id="cancel-button" i18n-content="cancelButtonText"></button> |
| 25 </div> | 26 </div> |
| 26 | 27 |
| 27 <!-- Must be last in the DOM: processes elements and inserts i18n strings --> | 28 <!-- Must be last in the DOM: processes elements and inserts i18n strings --> |
| 28 <script src="chrome://resources/js/i18n_template2.js"></script> | 29 <script src="chrome://resources/js/i18n_template2.js"></script> |
| 29 </body> | 30 </body> |
| 30 </html> | 31 </html> |
| OLD | NEW |