From a353b1fdc1ab47de5037ececabb4c1912cdaa38c Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Fri, 19 Mar 2021 10:35:08 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B03530=20Fix=20"No=20new=20message"=20dict?= =?UTF-8?q?=20entry=20call?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/components/newsroom-menu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/components/newsroom-menu.js b/js/components/newsroom-menu.js index d789a86d6..21deacb28 100644 --- a/js/components/newsroom-menu.js +++ b/js/components/newsroom-menu.js @@ -178,7 +178,7 @@ $(function() this._buildMenu(aAllMessages); }, _refreshTogglerMessage : function(iItemCount){ - var sMessage = this.options.labels.no_notification; + var sMessage = Dict.S(this.options.labels.no_notification); if(iItemCount > 0){ sMessage = Dict.Format(this.options.labels.x_notifications, iItemCount); }