OLD | NEW |
1 <div id="sync-setup-overlay" class="page" hidden> | 1 <div id="sync-setup-overlay" class="page" hidden> |
2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
3 <div id="sync-setup-configure" hidden> | 3 <div id="sync-setup-configure" hidden> |
4 <div id="confirm-sync-preferences"> | 4 <div id="confirm-sync-preferences"> |
5 <h1 i18n-content="confirmSyncPreferences"></h1> | 5 <h1 i18n-content="confirmSyncPreferences"></h1> |
6 <div id="sync-instructions-container" class="content-area"> | 6 <div id="sync-instructions-container" class="content-area"> |
7 <span i18n-content="chooseDataTypesInstructions"></span> | 7 <span i18n-content="chooseDataTypesInstructions"></span> |
8 <a id="encryption-help-link" target="_blank" | 8 <a id="encryption-help-link" target="_blank" |
9 i18n-values="href:syncEverythingHelpURL" i18n-content="learnMore"> | 9 i18n-values="href:syncEverythingHelpURL" i18n-content="learnMore"> |
10 </a> | 10 </a> |
(...skipping 16 matching lines...) Expand all Loading... |
27 </div> | 27 </div> |
28 </div> | 28 </div> |
29 <div id="customize-sync-preferences" hidden> | 29 <div id="customize-sync-preferences" hidden> |
30 <h1 i18n-content="syncSetupConfigureTitle"></h1> | 30 <h1 i18n-content="syncSetupConfigureTitle"></h1> |
31 <form id="choose-data-types-form"> | 31 <form id="choose-data-types-form"> |
32 <div id="sync-configure-content" class="content-area"> | 32 <div id="sync-configure-content" class="content-area"> |
33 <div id="sync-select-container"> | 33 <div id="sync-select-container"> |
34 <select id="sync-select-datatypes"> | 34 <select id="sync-select-datatypes"> |
35 <option i18n-content="syncAllDataTypes" selected></option> | 35 <option i18n-content="syncAllDataTypes" selected></option> |
36 <option i18n-content="chooseDataTypes"></option> | 36 <option i18n-content="chooseDataTypes"></option> |
37 <option i18n-content="syncNothing"></option> | 37 <!-- The syncNothing element is to be hidden for M29. |
| 38 TODO(rsimha): Revisit this for M30. |
| 39 See http://crbug.com/252049. |
| 40 --> |
| 41 <option i18n-content="syncNothing" hidden></option> |
38 </select> | 42 </select> |
39 <div id="choose-data-types-body"> | 43 <div id="choose-data-types-body"> |
40 <div id="apps-item" class="sync-type-checkbox checkbox"> | 44 <div id="apps-item" class="sync-type-checkbox checkbox"> |
41 <label> | 45 <label> |
42 <input id="apps-checkbox" type="checkbox"> | 46 <input id="apps-checkbox" type="checkbox"> |
43 <span i18n-content="apps" i18n-values="title:apps"></span> | 47 <span i18n-content="apps" i18n-values="title:apps"></span> |
44 </label> | 48 </label> |
45 </div> | 49 </div> |
46 <div id="autofill-item" class="sync-type-checkbox checkbox"> | 50 <div id="autofill-item" class="sync-type-checkbox checkbox"> |
47 <label> | 51 <label> |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 <span i18n-values=".innerHTML:stopSyncingExplanation"></span> | 266 <span i18n-values=".innerHTML:stopSyncingExplanation"></span> |
263 </div> | 267 </div> |
264 <div class="action-area button-strip"> | 268 <div class="action-area button-strip"> |
265 <input id="stop-syncing-cancel" type="button" | 269 <input id="stop-syncing-cancel" type="button" |
266 i18n-values="value:cancel"> | 270 i18n-values="value:cancel"> |
267 <input id="stop-syncing-ok" type="button" | 271 <input id="stop-syncing-ok" type="button" |
268 i18n-values="value:stopSyncingConfirm"> | 272 i18n-values="value:stopSyncingConfirm"> |
269 </div> | 273 </div> |
270 </div> | 274 </div> |
271 </div> | 275 </div> |
OLD | NEW |