OLD | NEW |
1 <div id="autofill-options" class="page" hidden> | 1 <div id="autofill-options" class="page" hidden> |
2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
3 <h1 i18n-content="autofillOptionsPage"></h1> | 3 <h1 i18n-content="autofillOptionsPage"></h1> |
4 <div class="content-area"> | 4 <div class="content-area"> |
| 5 <!-- TODO(estade): This checkbox shouldn't show if you're not signed into |
| 6 sync. Or perhaps it should show with a link to go sign in with sync? |
| 7 --> |
5 <div id="autofill-wallet-setting-area" class="checkbox"> | 8 <div id="autofill-wallet-setting-area" class="checkbox"> |
6 <label> | 9 <label> |
7 <input pref="autofill.wallet_import_enabled" type="checkbox"> | 10 <input pref="autofill.wallet_import_enabled" type="checkbox"> |
8 <span> | 11 <span i18n-content="autofillWalletOption"></span> |
9 Suggest addresses and credit cards from Google Wallet | |
10 <!-- A reminder not to launch this UI. --> | |
11 <span style="font-size: 80%">translate me!</span> | |
12 </span> | |
13 </div> | 12 </div> |
14 <if expr="is_macosx"> | 13 <if expr="is_macosx"> |
15 <div class="checkbox"> | 14 <div class="checkbox"> |
16 <label> | 15 <label> |
17 <input pref="autofill.use_mac_address_book" type="checkbox" | 16 <input pref="autofill.use_mac_address_book" type="checkbox" |
18 id="autofill-use-mac-address-book-checkbox" | 17 id="autofill-use-mac-address-book-checkbox" |
19 metric="Options_AutofillAuxiliaryProfiles"> | 18 metric="Options_AutofillAuxiliaryProfiles"> |
20 <span i18n-content="auxiliaryProfilesEnabled"></span> | 19 <span i18n-content="auxiliaryProfilesEnabled"></span> |
21 </label> | 20 </label> |
22 </div> | 21 </div> |
23 </if> | 22 </if> |
24 <!-- TODO(estade): This section shouldn't show if you're not signed into | |
25 sync. Or perhaps it should show with a link to go sign in with sync? | |
26 --> | |
27 <h3 i18n-content="autofillAddresses"></h3> | 23 <h3 i18n-content="autofillAddresses"></h3> |
28 <div class="settings-list"> | 24 <div class="settings-list"> |
29 <list id="address-list"></list> | 25 <list id="address-list"></list> |
30 <div> | 26 <div> |
31 <button id="autofill-add-address" i18n-content="autofillAddAddress"> | 27 <button id="autofill-add-address" i18n-content="autofillAddAddress"> |
32 </button> | 28 </button> |
33 </div> | 29 </div> |
34 </div> | 30 </div> |
35 | 31 |
36 <h3 i18n-content="autofillCreditCards"></h3> | 32 <h3 i18n-content="autofillCreditCards"></h3> |
(...skipping 10 matching lines...) Expand all Loading... |
47 <a id="autofill-help" target="_blank" i18n-values="href:helpUrl" | 43 <a id="autofill-help" target="_blank" i18n-values="href:helpUrl" |
48 i18n-content="helpButton"> | 44 i18n-content="helpButton"> |
49 </a> | 45 </a> |
50 <div class="spacer-div"></div> | 46 <div class="spacer-div"></div> |
51 <div class="button-strip"> | 47 <div class="button-strip"> |
52 <button id="autofill-options-confirm" class="default-button" | 48 <button id="autofill-options-confirm" class="default-button" |
53 i18n-content="done"></button> | 49 i18n-content="done"></button> |
54 </div> | 50 </div> |
55 </div> | 51 </div> |
56 </div> | 52 </div> |
OLD | NEW |