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

Unified Diff: chrome/browser/resources/settings/reset_page/reset_profile_dialog.html

Issue 1971443003: [MD settings] update i18n replacements in a11y, privacy, reset, and search (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: i18n-values 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
Index: chrome/browser/resources/settings/reset_page/reset_profile_dialog.html
diff --git a/chrome/browser/resources/settings/reset_page/reset_profile_dialog.html b/chrome/browser/resources/settings/reset_page/reset_profile_dialog.html
index bc0a5a2c718fdeba7b872c1cb145eff0013a536d..68146aba2c5e29940f298cc1aa04a2a766b5a3ea 100644
--- a/chrome/browser/resources/settings/reset_page/reset_profile_dialog.html
+++ b/chrome/browser/resources/settings/reset_page/reset_profile_dialog.html
@@ -18,25 +18,24 @@
}
</style>
<settings-dialog id="dialog">
- <div class="title" i18n-content="resetPageTitle"></div>
+ <div class="title">$i18n{resetPageTitle}</div>
<div class="body">
- <span i18n-content="resetPageExplanation"></span>
- <a i18n-values="href:resetPageLearnMoreUrl"
- i18n-content="learnMore" target="_blank"></a>
+ $i18n{resetPageExplanation}&nbsp;
+ <a href="$i18nRaw{resetPageLearnMoreUrl}"
+ target="_blank">$i18n{learnMore}</a>
</div>
<div class="button-container">
<paper-spinner id="resetSpinner"></paper-spinner>
<paper-button class="cancel-button" on-tap="onCancelTap_"
- id="cancel" i18n-content="cancel"></paper-button>
+ id="cancel">$i18n{cancel}</paper-button>
<paper-button class="action-button" on-tap="onResetTap_"
- id="reset" i18n-content="resetPageCommit"></paper-button>
+ id="reset">$i18n{resetPageCommit}</paper-button>
</div>
<div class="footer">
- <paper-checkbox id="sendSettings" i18n-content="resetPageFeedback"
- checked>
- </paper-checkbox>
- <a is="action-link" i18n-content="viewReportedSettings"
- on-tap="onShowReportedSettingsTap_"></a>
+ <paper-checkbox id="sendSettings"
+ checked>$i18n{resetPageFeedback}</paper-checkbox>
+ <a is="action-link"
+ on-tap="onShowReportedSettingsTap_">$i18n{viewReportedSettings}</a>
</div>
</settings-dialog>
</template>

Powered by Google App Engine
This is Rietveld 408576698