diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-10-26 19:26:57 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-10-26 19:26:57 +0900 |
commit | 122ace9815ddf3652287d205809ba9defcc6b63d (patch) | |
tree | 54c8038159586e544753038d9cbcb3a3f49fbf87 /lib | |
parent | 98c416813177f7141079101da978fe1222574b5c (diff) | |
download | libquotient-122ace9815ddf3652287d205809ba9defcc6b63d.tar.gz libquotient-122ace9815ddf3652287d205809ba9defcc6b63d.zip |
Use tr() for plurals
Diffstat (limited to 'lib')
-rw-r--r-- | lib/room.cpp | 5 |
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(); |