| Index: chrome/browser/resources/options2/autofill_options_list.js
|
| diff --git a/chrome/browser/resources/options2/autofill_options_list.js b/chrome/browser/resources/options2/autofill_options_list.js
|
| index 422545a14e371329ba21e25537e9f06e55ca40d5..7bb9c7bf88b83a3626c2cb9a2f3a562ab63b0452 100644
|
| --- a/chrome/browser/resources/options2/autofill_options_list.js
|
| +++ b/chrome/browser/resources/options2/autofill_options_list.js
|
| @@ -11,7 +11,8 @@ cr.define('options.autofillOptions', function() {
|
| function AutofillEditProfileButton(guid, edit) {
|
| var editButtonEl = document.createElement('button');
|
| editButtonEl.className = 'list-inline-button custom-appearance';
|
| - editButtonEl.textContent = templateData.autofillEditProfileButton;
|
| + editButtonEl.textContent =
|
| + loadTimeData.getString('autofillEditProfileButton');
|
| editButtonEl.onclick = function(e) { edit(guid); };
|
|
|
| // Don't select the row when clicking the button.
|
| @@ -261,11 +262,11 @@ cr.define('options.autofillOptions', function() {
|
|
|
| if (this.isPlaceholder) {
|
| this.firstNameInput.placeholder =
|
| - templateData.autofillAddFirstNamePlaceholder;
|
| + loadTimeData.getString('autofillAddFirstNamePlaceholder');
|
| this.middleNameInput.placeholder =
|
| - templateData.autofillAddMiddleNamePlaceholder;
|
| + loadTimeData.getString('autofillAddMiddleNamePlaceholder');
|
| this.lastNameInput.placeholder =
|
| - templateData.autofillAddLastNamePlaceholder;
|
| + loadTimeData.getString('autofillAddLastNamePlaceholder');
|
| this.deletable = false;
|
| }
|
|
|
|
|