Revert "Fix broken i18ncp call"

This reverts commit 7d100b2a0f
This commit is contained in:
Tobias Fella
2021-02-12 15:21:20 +00:00
parent 7d100b2a0f
commit f4ab281789

View File

@@ -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(", ")) : ""
}
}