aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-10-26 19:26:57 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-10-26 19:26:57 +0900
commit122ace9815ddf3652287d205809ba9defcc6b63d (patch)
tree54c8038159586e544753038d9cbcb3a3f49fbf87 /lib
parent98c416813177f7141079101da978fe1222574b5c (diff)
downloadlibquotient-122ace9815ddf3652287d205809ba9defcc6b63d.tar.gz
libquotient-122ace9815ddf3652287d205809ba9defcc6b63d.zip
Use tr() for plurals
Diffstat (limited to 'lib')
-rw-r--r--lib/room.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 7c45bf89..f8ed2721 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -1963,9 +1963,8 @@ QString Room::Private::roomNameFromMemberNames(const QList<User *> &userlist) co
// iii. More users.
if (userlist.size() > 3)
- return tr("%1 and %L2 others")
- .arg(q->roomMembername(first_two[0]))
- .arg(userlist.size() - 3);
+ return tr("%1 and %Ln other(s)", "", userlist.size() - 3)
+ .arg(q->roomMembername(first_two[0]));
// userlist.size() < 2 - apparently, there's only current user in the room
return QString();