From d7250fcb1fb358702296a2b1df600bcd264d8db6 Mon Sep 17 00:00:00 2001 From: Andrea Marchesini Date: Tue, 26 Oct 2021 14:56:17 +0200 Subject: [PATCH] Fix i10n issue - closes #2169 --- src/js/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/popup.js b/src/js/popup.js index 2ff88c2..dd2a7b9 100644 --- a/src/js/popup.js +++ b/src/js/popup.js @@ -938,7 +938,7 @@ Logic.registerPanel(P_CONTAINER_INFO, { hideShowIcon.src = identity.hasHiddenTabs ? CONTAINER_UNHIDE_SRC : CONTAINER_HIDE_SRC; const hideShowLabel = document.getElementById("container-info-hideorshow-label"); - hideShowLabel.textContent = identity.hasHiddenTabs ? "Show this container" : "Hide this container"; + hideShowLabel.textContent = browser.i18n.getMessage(identity.hasHiddenTabs ? "showThisContainer" : "hideThisContainer"); return; },