diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2022-04-19 23:43:00 -0400 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2022-04-23 18:47:17 -0400 |
commit | 24ec2181a38a0af29765f68d6c7e531fa70212ec (patch) | |
tree | 4a7064518a1b320380327629020980e961a72459 | |
parent | Allow users to see through the spinner (diff) | |
download | nheko-24ec2181a38a0af29765f68d6c7e531fa70212ec.tar.xz |
Better handle pluralization
-rw-r--r-- | resources/qml/TimelineView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index e72e79ce..00fac563 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -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 } |