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

Unified Diff: chrome/browser/resources/settings/site_settings/site_data_details_dialog.js

Issue 2391253002: Site Settings Desktop: Polish the Site Data section. (Closed)
Patch Set: One more confirmation message Created 4 years, 2 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/site_settings/site_data_details_dialog.js
diff --git a/chrome/browser/resources/settings/site_settings/site_data_details_dialog.js b/chrome/browser/resources/settings/site_settings/site_data_details_dialog.js
index 9bfbdb0b6dc5c89d0975233f400c4a906509c776..a5c7ccdcdba305bb35062d3529dc90cc58a213ff 100644
--- a/chrome/browser/resources/settings/site_settings/site_data_details_dialog.js
+++ b/chrome/browser/resources/settings/site_settings/site_data_details_dialog.js
@@ -171,7 +171,7 @@ Polymer({
// of '1 cookie', '1 cookie', ... etc, it is better to show the title of the
// cookie to differentiate them.
if (item.data.type == 'cookie')
- return item.title;
+ return loadTimeData.getStringF('siteSettingsCookie', item.title);
return getCookieDataCategoryText(item.data.type, item.data.totalUsage);
},

Powered by Google App Engine
This is Rietveld 408576698