Better handle pluralization

This commit is contained in:
Loren Burkholder 2022-04-19 23:43:00 -04:00
parent 8436b5c498
commit e9112912b8
1 changed files with 1 additions and 1 deletions

View File

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