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

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

Issue 6484022: Autofill i18n: Set postal code and state field labels based on the selected country. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: I see you, ICU Created 9 years, 10 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 class="page hidden" id="autoFillEditAddressOverlay"> 1 <div class="page hidden" id="autoFillEditAddressOverlay">
2 <h1 id="autoFillAddressTitle"></h1> 2 <h1 id="autoFillAddressTitle"></h1>
3 <div class="content-area"> 3 <div class="content-area">
4 <div class="input"> 4 <div class="input">
James Hawkins 2011/02/12 20:32:45 Why are you moving the position of the country inp
Ilya Sherman 2011/02/16 10:27:18 Different countries have different address formats
5 <label id="countryLabel">
James Hawkins 2011/02/12 20:32:45 IDs use dash-form. I realize that this file is usi
Ilya Sherman 2011/02/16 10:27:18 Done.
6 <div><span i18n-content="countryLabel"></span></div>
7 <select id="country">
8 <option value=""></option>
James Hawkins 2011/02/12 20:32:45 It appears you're filling the select element in th
Ilya Sherman 2011/02/16 10:27:18 Done.
9 </select>
10 </label>
11 </div>
12 <div class="input">
5 <label id="fullNameLabel"> 13 <label id="fullNameLabel">
6 <div><span i18n-content="fullNameLabel"></span></div> 14 <div><span i18n-content="fullNameLabel"></span></div>
7 <input type="text" class="form" class="form" id="fullName"> 15 <input type="text" class="form" class="form" id="fullName">
8 </label> 16 </label>
9 </div> 17 </div>
10 <div class="input"> 18 <div class="input">
11 <label id="companyNameLabel"> 19 <label id="companyNameLabel">
12 <div><span i18n-content="companyNameLabel"></span></div> 20 <div><span i18n-content="companyNameLabel"></span></div>
13 <input type="text" class="form" class="form" id="companyName"> 21 <input type="text" class="form" class="form" id="companyName">
14 </label> 22 </label>
(...skipping 16 matching lines...) Expand all
31 <label id="cityLabel" for="city"> 39 <label id="cityLabel" for="city">
32 <span i18n-content="cityLabel"></span> 40 <span i18n-content="cityLabel"></span>
33 </label> 41 </label>
34 </div> 42 </div>
35 <div class="input cell"> 43 <div class="input cell">
36 <label id="stateLabel" for="state"> 44 <label id="stateLabel" for="state">
37 <span i18n-content="stateLabel"></span> 45 <span i18n-content="stateLabel"></span>
38 </label> 46 </label>
39 </div> 47 </div>
40 <div class="input cell"> 48 <div class="input cell">
41 <label id="zipCodeLabel" for="zipCode"> 49 <label id="postalCodeLabel" for="postalCode">
James Hawkins 2011/02/12 20:32:45 dash-form ID
Ilya Sherman 2011/02/16 10:27:18 Done.
42 <span i18n-content="zipCodeLabel"></span> 50 <span i18n-content="postalCodeLabel"></span>
43 </label> 51 </label>
44 </div> 52 </div>
45 </div> 53 </div>
46 <div class="row"> 54 <div class="row">
47 <div class="input cell"> 55 <div class="input cell">
48 <input type="text" class="form" id="city"> 56 <input type="text" class="form" id="city">
49 </div> 57 </div>
50 <div class="input cell"> 58 <div class="input cell">
51 <input type="text" class="form" id="state"> 59 <input type="text" class="form" id="state">
52 </div> 60 </div>
53 <div class="input cell"> 61 <div class="input cell">
54 <input type="text" class="form" id="zipCode"> 62 <input type="text" class="form" id="postalCode">
James Hawkins 2011/02/12 20:32:45 dash-form ID
Ilya Sherman 2011/02/16 10:27:18 Done.
55 </div> 63 </div>
56 </div> 64 </div>
57 </div> 65 </div>
58 <div class="input">
59 <label id="countryLabel">
60 <div><span i18n-content="countryLabel"></span></div>
61 <input type="text" class="form" class="form" id="country">
62 </label>
63 </div>
64 <div class="table"> 66 <div class="table">
65 <div class="row"> 67 <div class="row">
66 <div class="input cell"> 68 <div class="input cell">
67 <label id="phoneLabel" for="phone"> 69 <label id="phoneLabel" for="phone">
68 <span i18n-content="phoneLabel"></span> 70 <span i18n-content="phoneLabel"></span>
69 </label> 71 </label>
70 </div> 72 </div>
71 <div class="input cell"> 73 <div class="input cell">
72 <label id="faxLabel" for="fax"> 74 <label id="faxLabel" for="fax">
73 <span i18n-content="faxLabel"></span> 75 <span i18n-content="faxLabel"></span>
(...skipping 18 matching lines...) Expand all
92 </div> 94 </div>
93 <div class="action-area"> 95 <div class="action-area">
94 <div class="button-strip"> 96 <div class="button-strip">
95 <button type="reset" id="autoFillEditAddressCancelButton" 97 <button type="reset" id="autoFillEditAddressCancelButton"
96 i18n-content="cancel"></button> 98 i18n-content="cancel"></button>
97 <button type="submit" id="autoFillEditAddressApplyButton" disabled 99 <button type="submit" id="autoFillEditAddressApplyButton" disabled
98 i18n-content="ok"></button> 100 i18n-content="ok"></button>
99 </div> 101 </div>
100 </div> 102 </div>
101 </div> 103 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698