From e15810ab0cf21ba3f15232c1a257cb3700872e3a Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Tue, 23 Mar 2021 14:48:32 +0100 Subject: [PATCH] Fix broken i18n in ReplyPane --- imports/NeoChat/Component/ChatBox/ReplyPane.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/imports/NeoChat/Component/ChatBox/ReplyPane.qml b/imports/NeoChat/Component/ChatBox/ReplyPane.qml index b86a49a93..c2fe91d62 100644 --- a/imports/NeoChat/Component/ChatBox/ReplyPane.qml +++ b/imports/NeoChat/Component/ChatBox/ReplyPane.qml @@ -58,8 +58,7 @@ Loader { if (isEdit) { heading = heading.arg(i18n("Editing message:")) + "
" } else { - heading = heading.arg(i18n("Replying to %1:")) - heading = heading.arg(userName) + "
" + heading = heading.arg(i18n("Replying to %1:", userName)) } return stylesheet + heading