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 <if expr="is_macosx"> | 5 <if expr="is_macosx"> |
6 <div class="checkbox"> | 6 <div class="checkbox"> |
7 <label> | 7 <label> |
8 <input pref="autofill.use_mac_address_book" type="checkbox" | 8 <input pref="autofill.use_mac_address_book" type="checkbox" |
9 id="autofill-use-mac-address-book-checkbox" | 9 id="autofill-use-mac-address-book-checkbox" |
10 metric="Options_AutofillAuxiliaryProfiles"> | 10 metric="Options_AutofillAuxiliaryProfiles"> |
11 <span i18n-content="auxiliaryProfilesEnabled"></span> | 11 <span i18n-content="auxiliaryProfilesEnabled"></span> |
12 </label> | 12 </label> |
13 </div> | 13 </div> |
14 </if> | 14 </if> |
| 15 <!-- TODO(estade): This section shouldn't show if you're not signed into |
| 16 sync. Or perhaps it should show with a link to go sign in with sync? |
| 17 --> |
| 18 <div id="autofill-wallet-setting-area" class="settings-row" hidden> |
| 19 <div class="checkbox"> |
| 20 <label> |
| 21 <input pref="autofill.wallet_import_enabled" type="checkbox"> |
| 22 <span> |
| 23 Include |
| 24 <a target="_blank" i18n-values="href:manageWalletAddressesUrl"> |
| 25 addresses</a> |
| 26 and |
| 27 <a target="_blank" |
| 28 i18n-values="href:manageWalletPaymentMethodsUrl">cards</a> |
| 29 stored in your Google Wallet |
| 30 <!-- A reminder not to launch this UI. --> |
| 31 <span style="font-size: 80%">translate me!</span> |
| 32 </span> |
| 33 </div> |
| 34 </div> |
| 35 |
15 <h3 i18n-content="autofillAddresses"></h3> | 36 <h3 i18n-content="autofillAddresses"></h3> |
16 <div class="settings-list"> | 37 <div class="settings-list"> |
17 <list id="address-list"></list> | 38 <list id="address-list"></list> |
18 <div> | 39 <div> |
19 <button id="autofill-add-address" i18n-content="autofillAddAddress"> | 40 <button id="autofill-add-address" i18n-content="autofillAddAddress"> |
20 </button> | 41 </button> |
21 </div> | 42 </div> |
22 </div> | 43 </div> |
| 44 |
23 <h3 i18n-content="autofillCreditCards"></h3> | 45 <h3 i18n-content="autofillCreditCards"></h3> |
24 <div class="settings-list"> | 46 <div class="settings-list"> |
25 <list id="creditcard-list"></list> | 47 <list id="creditcard-list"></list> |
26 <div> | 48 <div> |
27 <button id="autofill-add-creditcard" | 49 <button id="autofill-add-creditcard" |
28 i18n-content="autofillAddCreditCard"></button> | 50 i18n-content="autofillAddCreditCard"></button> |
29 </div> | 51 </div> |
30 </div> | 52 </div> |
31 <!-- TODO(estade): This section shouldn't show if you're not signed into | 53 |
32 sync. --> | 54 <!-- TODO(estade): what do we do with this section when the pref is unset? |
33 <div id="autofill-wallet-card-area" class="settings-row" hidden> | 55 --> |
| 56 <div id="autofill-wallet-remask-cards-area"> |
| 57 <span class="settings-row">Credit cards from Wallet require authentication |
| 58 once and then remain unlocked. |
| 59 </span> |
| 60 <a id="remask-server-cards-link" |
| 61 is="action-link">Reset authenticated cards</a> |
34 <!-- A reminder not to launch this UI. --> | 62 <!-- A reminder not to launch this UI. --> |
35 <span>Warning, these strings are not translated!</span> | 63 <span style="font-size: 80%">translate me!</span> |
36 <div> | |
37 Chrome will also suggest | |
38 <a target="_blank" i18n-values="href:manageWalletAddressesUrl"> | |
39 addresses</a> | |
40 and | |
41 <a target="_blank" i18n-values="href:manageWalletPaymentMethodsUrl"> | |
42 cards</a> | |
43 stored in your Wallet. | |
44 </div> | |
45 <div> | |
46 <span>Credit cards from Wallet require authentication once and | |
47 then remain unlocked. | |
48 </span> | |
49 <a id="remask-server-cards-link" | |
50 is="action-link">Reset authenticated cards</a> | |
51 </div> | |
52 </div> | 64 </div> |
53 </div> | 65 </div> |
| 66 |
54 <div class="action-area"> | 67 <div class="action-area"> |
55 <a id="autofill-help" target="_blank" i18n-values="href:helpUrl" | 68 <a id="autofill-help" target="_blank" i18n-values="href:helpUrl" |
56 i18n-content="helpButton"> | 69 i18n-content="helpButton"> |
57 </a> | 70 </a> |
58 <div class="spacer-div"></div> | 71 <div class="spacer-div"></div> |
59 <div class="button-strip"> | 72 <div class="button-strip"> |
60 <button id="autofill-options-confirm" class="default-button" | 73 <button id="autofill-options-confirm" class="default-button" |
61 i18n-content="done"></button> | 74 i18n-content="done"></button> |
62 </div> | 75 </div> |
63 </div> | 76 </div> |
64 </div> | 77 </div> |
OLD | NEW |