diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-03-19 06:34:28 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-03-19 06:34:28 +0100 |
commit | 28613ba83674c70399561a157f1c0f01b931f4d6 (patch) | |
tree | c66b38d59eaa635a4423c59e7f72cc85a2a0133d /toolkit | |
parent | 8a5b1214895d2dfb991485d2d24052f6dde44a8d (diff) | |
download | UXP-28613ba83674c70399561a157f1c0f01b931f4d6.tar UXP-28613ba83674c70399561a157f1c0f01b931f4d6.tar.gz UXP-28613ba83674c70399561a157f1c0f01b931f4d6.tar.lz UXP-28613ba83674c70399561a157f1c0f01b931f4d6.tar.xz UXP-28613ba83674c70399561a157f1c0f01b931f4d6.zip |
Revert "Issue #1445 - Add a link to details on using Firefox extensions in Pale Moon"
This reverts commit c220c30bbb25015d85bd243a6445ca84401297a9.
Diffstat (limited to 'toolkit')
3 files changed, 0 insertions, 10 deletions
diff --git a/toolkit/locales/en-US/chrome/mozapps/extensions/extensions.properties b/toolkit/locales/en-US/chrome/mozapps/extensions/extensions.properties index 3ee8a36c1..b98160b53 100644 --- a/toolkit/locales/en-US/chrome/mozapps/extensions/extensions.properties +++ b/toolkit/locales/en-US/chrome/mozapps/extensions/extensions.properties @@ -32,7 +32,6 @@ notification.softblocked=%1$S is known to cause issues. notification.softblocked.link=More Information #LOCALIZATION NOTE (details.notification.compatibility) %1$S is the add-on name, %2$S is brand name notification.compatibility=%1$S was not designed for %2$S. It may not function properly or cease to function. -notification.compatibility.link=More Information #LOCALIZATION NOTE (notification.outdated) %1$S is the add-on name notification.outdated=An important update is available for %1$S. notification.outdated.link=Update Now @@ -83,7 +82,6 @@ details.notification.blocked=%1$S has been disabled due to security or stability details.notification.blocked.link=More Information #LOCALIZATION NOTE (details.notification.compatibility) %1$S is the add-on name, %2$S is brand name details.notification.compatibility=%1$S was not designed for %2$S. It may not function properly or cease to function. -details.notification.compatibility.link=More Information #LOCALIZATION NOTE (details.notification.softblocked) %1$S is the add-on name details.notification.softblocked=%1$S is known to cause issues. details.notification.softblocked.link=More Information diff --git a/toolkit/mozapps/extensions/content/extensions.js b/toolkit/mozapps/extensions/content/extensions.js index 3c3b5894b..782fca303 100644 --- a/toolkit/mozapps/extensions/content/extensions.js +++ b/toolkit/mozapps/extensions/content/extensions.js @@ -3067,10 +3067,6 @@ var gDetailView = { "details.notification.compatibility", [this._addon.name, gStrings.brandShortName], 2 ); - var warningLink = document.getElementById("detail-warning-link"); - warningLink.value = gStrings.ext.GetStringFromName("details.notification.compatibility.link"); - warningLink.href = Services.urlFormatter.formatURLPref("extensions.compatibility.url"); - warningLink.hidden = false; #endif } else { this.node.removeAttribute("notification"); diff --git a/toolkit/mozapps/extensions/content/extensions.xml b/toolkit/mozapps/extensions/content/extensions.xml index e2eef852a..097410fd2 100644 --- a/toolkit/mozapps/extensions/content/extensions.xml +++ b/toolkit/mozapps/extensions/content/extensions.xml @@ -1363,10 +1363,6 @@ "notification.compatibility", [this.mAddon.name, gStrings.brandShortName], 2 ); - this._warningLink.value = gStrings.ext.GetStringFromName("notification.compatibility.link"); - this._warningLink.href = Services.urlFormatter.formatURLPref("extensions.compatibility.url"); - this._warningLink.hidden = false; - this._warningBtn.hidden = true; } } #endif |