diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index fd4daab321fd..207418dcd1bc 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -212,6 +212,8 @@ pref("browser.uitour.themeOrigin", "https://addons.mozilla.org/%LOCALE%/firefox/
pref("browser.uitour.url", "https://www.mozilla.org/%LOCALE%/firefox/%VERSION%/tour/");
// This is used as a regexp match against the page's URL.
pref("browser.uitour.readerViewTrigger", "^https:\\/\\/www\\.mozilla\\.org\\/[^\\/]+\\/firefox\\/reading\\/start");
+// How long to show a Hearbeat survey (two hours, in seconds)
+pref("browser.uitour.surveyDuration", 7200);
pref("browser.customizemode.tip0.shown", false);
pref("browser.customizemode.tip0.learnMoreUrl", "https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/customize");
@@ -527,8 +529,6 @@ pref("privacy.sanitize.sanitizeOnShutdown", false);
pref("privacy.sanitize.migrateFx3Prefs", false);
-pref("privacy.sanitize.migrateClearSavedPwdsOnExit", false);
-
pref("privacy.panicButton.enabled", true);
pref("network.proxy.share_proxy_settings", false); // use the same proxy settings for all protocols
diff --git a/browser/base/content/browser-feeds.js b/browser/base/content/browser-feeds.js
index c11a7b6733fc..269f4a83d606 100644
--- a/browser/base/content/browser-feeds.js
+++ b/browser/base/content/browser-feeds.js
@@ -49,8 +49,7 @@ var FeedHandler = {
for (let feedInfo of feeds) {
let item = document.createElement(itemNodeType);
let baseTitle = feedInfo.title || feedInfo.href;
- let labelStr = gNavigatorBundle.getFormattedString("feedShowFeedNew", [baseTitle]);
- item.setAttribute("label", labelStr);
+ item.setAttribute("label", baseTitle);
item.setAttribute("feed", feedInfo.href);
item.setAttribute("tooltiptext", feedInfo.href);
item.setAttribute("crop", "center");
diff --git a/browser/base/content/browser.xul b/browser/base/content/browser.xul
index 2eb7437d40e6..d6f796975c9f 100644
--- a/browser/base/content/browser.xul
+++ b/browser/base/content/browser.xul
@@ -812,30 +812,6 @@
command="Browser:ShowAllBookmarks"
key="manBookmarkKb"/>