Better handle pluralization

This commit is contained in:
Loren Burkholder 2022-04-19 23:43:00 -04:00
parent 3d60fadb39
commit 24ec2181a3
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ Item {
Layout.alignment: Qt.AlignHCenter
MatrixText {
text: qsTr("%1 member(s)").arg(room ? room.roomMemberCount : 0)
text: qsTr("%n member(s)", "", room ? room.roomMemberCount : 0)
cursorShape: Qt.PointingHandCursor
}