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

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html

Issue 1965203002: [MD settings] i18n-content to $i18n in passwords_and_forms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html b/chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html
index 604142e565d440f0216b9107233c95e2ea9f6844..b6a577b74a00bbd9ef473de32c6c86ffb76df3b0 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html
@@ -23,19 +23,17 @@
}
</style>
<settings-dialog id="dialog">
- <div class="title" i18n-content="editPasswordTitle"></div>
+ <div class="title">$i18n{editPasswordTitle}</div>
<div class="body">
- <paper-input id="websiteInput"
- i18n-values="label:editPasswordWebsiteLabel"
+ <paper-input id="websiteInput" label="$i18n{editPasswordWebsiteLabel}"
value="[[item.loginPair.originUrl]]">
</paper-input>
- <paper-input id="usernameInput"
- i18n-values="label:editPasswordUsernameLabel"
+ <paper-input id="usernameInput" label="$i18n{editPasswordUsernameLabel}"
value="[[item.loginPair.username]]">
</paper-input>
<div id="passwordGroup">
<paper-input id="passwordInput"
- i18n-values="label:editPasswordPasswordLabel"
+ label="$i18n{editPasswordPasswordLabel}"
type="[[getPasswordInputType_(password)]]"
value="[[getPassword_(item, password)]]">
</paper-input>
@@ -44,10 +42,10 @@
</div>
</div>
<div class="button-container">
- <paper-button id="cancelButton" i18n-content="cancel"
- on-tap="onCancelButtonTap_"></paper-button>
- <paper-button id="saveButton" class="action-button" i18n-content="save"
- on-tap="onSaveButtonTap_"></paper-button>
+ <paper-button id="cancelButton"
+ on-tap="onCancelButtonTap_">$i18n{cancel}</paper-button>
+ <paper-button id="saveButton" class="action-button"
+ on-tap="onSaveButtonTap_">$i18n{save}</paper-button>
</div>
</settings-dialog>
</template>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698