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

Unified Diff: chrome/browser/resources/options2/certificate_edit_ca_trust_overlay.js

Issue 10391044: retry 136193 - convert localStrings to loadTimeData for options page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 8 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/options2/certificate_edit_ca_trust_overlay.js
diff --git a/chrome/browser/resources/options2/certificate_edit_ca_trust_overlay.js b/chrome/browser/resources/options2/certificate_edit_ca_trust_overlay.js
index f861accf6fdc7ceb1ff311b671802cf6a63243fe..5f017c8e93234c90801fbadb2b10f543db4486ab 100644
--- a/chrome/browser/resources/options2/certificate_edit_ca_trust_overlay.js
+++ b/chrome/browser/resources/options2/certificate_edit_ca_trust_overlay.js
@@ -123,7 +123,7 @@ cr.define('options', function() {
self.finishEdit_();
}
$('certificateEditCaTrustDescription').textContent =
- localStrings.getStringF('certificateEditCaTrustDescriptionFormat',
+ loadTimeData.getStringF('certificateEditCaTrustDescriptionFormat',
certName);
self.enableInputs_(false);
OptionsPage.navigateToPage('certificateEditCaTrustOverlay');
@@ -147,7 +147,7 @@ cr.define('options', function() {
self.finishImport_();
}
$('certificateEditCaTrustDescription').textContent =
- localStrings.getStringF('certificateImportCaDescriptionFormat',
+ loadTimeData.getStringF('certificateImportCaDescriptionFormat',
certName);
CertificateEditCaTrustOverlay.populateTrust(false, false, false);
OptionsPage.navigateToPage('certificateEditCaTrustOverlay');

Powered by Google App Engine
This is Rietveld 408576698