From c2fddd4ed279054873663851c0c019368d7bb6f0 Mon Sep 17 00:00:00 2001 From: Gabriel Borlea Date: Thu, 29 Jun 2023 14:51:24 +0300 Subject: [PATCH] fix(shortscuts): reactions description translations --- react/features/toolbox/components/web/Toolbox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/toolbox/components/web/Toolbox.tsx b/react/features/toolbox/components/web/Toolbox.tsx index fb7a1f612460e..6bcbd83d4f65e 100644 --- a/react/features/toolbox/components/web/Toolbox.tsx +++ b/react/features/toolbox/components/web/Toolbox.tsx @@ -486,7 +486,7 @@ class Toolbox extends Component { return { character: REACTIONS[key].shortcutChar, exec: onShortcutSendReaction, - helpDescription: t(`toolbar.reaction${key.charAt(0).toUpperCase()}${key.slice(1)}`), + helpDescription: `toolbar.reaction${key.charAt(0).toUpperCase()}${key.slice(1)}`, altKey: true }; });