From f4ab281789d5ff9867c883083344fbe53a82fdbf Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Fri, 12 Feb 2021 15:21:20 +0000 Subject: [PATCH] Revert "Fix broken i18ncp call" This reverts commit 7d100b2a0fe7910401df6126707d5436265faa35 --- imports/NeoChat/Page/RoomPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/NeoChat/Page/RoomPage.qml b/imports/NeoChat/Page/RoomPage.qml index 937971564..2024a3e92 100644 --- a/imports/NeoChat/Page/RoomPage.qml +++ b/imports/NeoChat/Page/RoomPage.qml @@ -540,7 +540,7 @@ Kirigami.ScrollablePage { Layout.preferredHeight: Kirigami.Units.iconSizes.smallMedium } QQC2.Label { - text: visible ? i18ncp("Message displayed when some users are typing", "%1 is typing", "%1 are typing", currentRoom.usersTyping.length, currentRoom.usersTyping.map(user => user.displayName).join(", ")) : "" + text: visible ? i18ncp("Message displayed when some users are typing", "%2 is typing", "%2 are typing", currentRoom.usersTyping.length, currentRoom.usersTyping.map(user => user.displayName).join(", ")) : "" } }