summaryrefslogtreecommitdiffstats
path: root/resources/qml/TimelineView.qml
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2022-04-19 23:43:00 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2022-04-23 18:47:17 -0400
commit24ec2181a38a0af29765f68d6c7e531fa70212ec (patch)
tree4a7064518a1b320380327629020980e961a72459 /resources/qml/TimelineView.qml
parent3d60fadb3998f73790d88438f3e741a97813f3bc (diff)
Better handle pluralization
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r--resources/qml/TimelineView.qml2
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
}