OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.htm
l"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-
button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-
button.html"> |
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
8 <link rel="stylesheet" href="sync_confirmation.css"></link> | 8 <link rel="stylesheet" href="sync_confirmation.css"></link> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
(...skipping 21 matching lines...) Expand all Loading... |
32 <svg id="checkmark-check" width="13" height="10" viewBox="0 0 13
10"> | 32 <svg id="checkmark-check" width="13" height="10" viewBox="0 0 13
10"> |
33 <path id="checkmark-path" d="M1 5l3.5 3.5L12 1" stroke="#FFF" | 33 <path id="checkmark-path" d="M1 5l3.5 3.5L12 1" stroke="#FFF" |
34 stroke-width="2" stroke-dasharray="16" | 34 stroke-width="2" stroke-dasharray="16" |
35 stroke-dashoffset="16" fill="none"></path> | 35 stroke-dashoffset="16" fill="none"></path> |
36 </svg> | 36 </svg> |
37 </div> | 37 </div> |
38 </div> | 38 </div> |
39 </div> | 39 </div> |
40 </div> | 40 </div> |
41 <div class="sync-message" | 41 <div class="sync-message" |
42 i18n-values=".innerHTML:syncConfirmationBody"></div> | 42 i18n-values=".innerHTML:syncConfirmationChromeSyncBody"></div> |
43 <div class="action-container"> | 43 <div class="action-container"> |
44 <paper-button id="confirmButton" | 44 <paper-button id="confirmButton" |
45 i18n-content="syncConfirmationConfirmLabel"></paper-button> | 45 i18n-content="syncConfirmationConfirmLabel"></paper-button> |
46 <paper-button id="undoButton" | 46 <paper-button id="undoButton" |
47 i18n-content="syncConfirmationUndoLabel"></paper-button> | 47 i18n-content="syncConfirmationUndoLabel"></paper-button> |
48 </div> | 48 </div> |
49 </div> | 49 </div> |
50 </div> | 50 </div> |
51 </body> | 51 </body> |
52 <script src="chrome://resources/js/cr.js"></script> | 52 <script src="chrome://resources/js/cr.js"></script> |
53 <script src="chrome://resources/js/load_time_data.js"></script> | 53 <script src="chrome://resources/js/load_time_data.js"></script> |
54 <script src="chrome://resources/js/util.js"></script> | 54 <script src="chrome://resources/js/util.js"></script> |
55 <script src="sync_confirmation.js"></script> | 55 <script src="sync_confirmation.js"></script> |
56 <script src="chrome://sync-confirmation/strings.js"></script> | 56 <script src="chrome://sync-confirmation/strings.js"></script> |
57 <script src="chrome://resources/js/i18n_template.js"></script> | 57 <script src="chrome://resources/js/i18n_template.js"></script> |
58 </html> | 58 </html> |
OLD | NEW |