Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(790)

Side by Side Diff: chrome/browser/resources/options/autofill_edit_address_overlay.html

Issue 243013004: i18n address editing in chrome://settings/autofillEditAddress. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows build. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div id="autofill-edit-address-overlay" class="page" hidden> 1 <div id="autofill-edit-address-overlay" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 id="autofill-address-title"></h1> 3 <h1 id="autofill-address-title"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <div> 5 <div id="autofill-edit-address-fields">
6 <div id="autofill-name-labels">
7 <span i18n-content="autofillFirstNameLabel"></span>
8 <span i18n-content="autofillMiddleNameLabel"></span>
9 <span i18n-content="autofillLastNameLabel"></span>
10 </div>
11 </div>
12 <div>
13 <list id="full-name-list"></list>
14 </div>
15
16 <label class="settings-row">
17 <div i18n-content="autofillCompanyNameLabel"></div>
18 <input id="company-name" type="text">
19 </label>
20
21 <label class="settings-row">
22 <div i18n-content="autofillAddrLine1Label"></div>
23 <input id="addr-line-1" type="text">
24 </label>
25
26 <label class="settings-row">
27 <div i18n-content="autofillAddrLine2Label"></div>
28 <input id="addr-line-2" type="text">
29 </label>
30
31 <div class="input-group settings-row">
32 <label>
33 <div i18n-content="autofillCityLabel"></div>
34 <input id="city" type="text">
35 </label>
36
37 <label>
38 <div id="state-label"></div>
39 <input id="state" type="text">
40 </label>
41
42 <label>
43 <div id="postal-code-label"></div>
44 <input id="postal-code" type="text">
45 </label>
46 </div> 6 </div>
47 7
48 <div class="settings-row"> 8 <div class="settings-row">
49 <label> 9 <label>
50 <div i18n-content="autofillCountryLabel"></div> 10 <div i18n-content="autofillCountryLabel"></div>
51 <select id="country"></select> 11 <select class="country" field="country"></select>
52 </label> 12 </label>
53 </div> 13 </div>
54 14
55 <div class="input-group settings-row"> 15 <div class="input-group settings-row">
56 <div> 16 <div>
57 <div i18n-content="autofillPhoneLabel"></div> 17 <div i18n-content="autofillPhoneLabel"></div>
58 <list id="phone-list" 18 <list class="short" field="phone"
59 i18n-values="placeholder:autofillAddPhonePlaceholder"></list> 19 i18n-values="placeholder:autofillAddPhonePlaceholder"></list>
60 </div> 20 </div>
61 21
62 <div> 22 <div>
63 <div i18n-content="autofillEmailLabel"></div> 23 <div i18n-content="autofillEmailLabel"></div>
64 <list id="email-list" 24 <list class="short" field="email"
65 i18n-values="placeholder:autofillAddEmailPlaceholder"></list> 25 i18n-values="placeholder:autofillAddEmailPlaceholder"></list>
66 </div> 26 </div>
67 </div> 27 </div>
68 28
69 </div> 29 </div>
70 30
71 <div class="action-area button-strip"> 31 <div class="action-area button-strip">
72 <button id="autofill-edit-address-cancel-button" type="reset" 32 <button id="autofill-edit-address-cancel-button" type="reset"
73 i18n-content="cancel"></button> 33 i18n-content="cancel"></button>
74 <button id="autofill-edit-address-apply-button" type="submit" 34 <button id="autofill-edit-address-apply-button" type="submit"
75 class="default-button" i18n-content="ok" disabled></button> 35 class="default-button" i18n-content="ok" disabled></button>
76 </div> 36 </div>
77 </div> 37 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698