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

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.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 | « chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html ('k') | no next file » | 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/passwords_section.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
index 462a9570266185a873e4df2520c4aaba8a06cc60..70846e7c37d1c9965cb6834fdf368c139a7857ff 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
@@ -91,13 +91,15 @@
}
</style>
<div id="manageLink">$i18nRaw{managePasswordsLabel}</div>
- <div class="heading" i18n-content="savedPasswordsHeading"></div>
+ <div class="heading">$i18n{savedPasswordsHeading}</div>
<div id="saved-password-columns" class="list-item">
- <div class="website-column" i18n-content="editPasswordWebsiteLabel"></div>
- <div class="username-column"
- i18n-content="editPasswordUsernameLabel"></div>
- <div class="password-column"
- i18n-content="editPasswordPasswordLabel"></div>
+ <div class="website-column">$i18n{editPasswordWebsiteLabel}</div>
+ <div class="username-column">
+ $i18n{editPasswordUsernameLabel}
+ </div>
+ <div class="password-column">
+ $i18n{editPasswordPasswordLabel}
+ </div>
</div>
<iron-list id="passwordList" class="vertical-list list-section"
items="[[savedPasswords]]">
@@ -122,14 +124,13 @@
</iron-list>
<cr-shared-menu id="menu">
<div id="menuEditPassword" class="list-item menu-item"
- i18n-content="editPassword" on-tap="onMenuEditPasswordTap_"
- hidden="[[!showPasswords]]"></div>
+ on-tap="onMenuEditPasswordTap_"
+ hidden="[[!showPasswords]]">$i18n{editPassword}</div>
<div id="menuRemovePassword" class="list-item menu-item"
- i18n-content="removePassword" on-tap="onMenuRemovePasswordTap_">
- </div>
+ on-tap="onMenuRemovePasswordTap_">$i18n{removePassword}</div>
</cr-shared-menu>
<password-edit-dialog id="passwordEditDialog"></password-edit-dialog>
- <div class="heading" i18n-content="passwordExceptionsHeading"></div>
+ <div class="heading">$i18n{passwordExceptionsHeading}</div>
<iron-list id="passwordExceptionsList" class="vertical-list list-section"
items="[[passwordExceptions]]">
<template>
« no previous file with comments | « chrome/browser/resources/settings/passwords_and_forms_page/password_edit_dialog.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698