summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2022-04-19 23:43:00 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2022-04-28 17:39:08 -0400
commite9112912b879f795959efc3892b2d6cde634c9ed (patch)
tree063024637916e4abb51bc34182710a1644b4358b /resources
parentAllow users to see through the spinner (diff)
downloadnheko-e9112912b879f795959efc3892b2d6cde634c9ed.tar.xz
Better handle pluralization
Diffstat (limited to 'resources')
-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 87e931df..fc5a5ead 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 }