diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 496e6d9..c82541e 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -56,7 +56,7 @@ "description": "For an wiki in English. See the bannerText message for more information. Include a leading space when appropriate." }, "bannerVisit": { - "message": "Visit $destination$ →", + "message": "Visit $destination$", "description": "Text to display in the banner for the visit link", "placeholders": { "destination": { diff --git a/scripts/content-banners.js b/scripts/content-banners.js index 68a81ed..fe74035 100644 --- a/scripts/content-banners.js +++ b/scripts/content-banners.js @@ -210,7 +210,7 @@ function displayRedirectBanner(newUrl, id, destinationName, destinationLanguage, bannerWikiLink.classList.add('indie-wiki-banner-link'); bannerText.appendChild(bannerWikiLink); bannerWikiLink.href = newUrl; - bannerWikiLink.textContent = extensionAPI.i18n.getMessage('bannerVisit', [destinationName]); + bannerWikiLink.textContent = extensionAPI.i18n.getMessage('bannerVisit', [destinationName]) + ' →'; // Function to insert banner into DOM before body element function addBannerToDOM() {