summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-01-01 04:40:43 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2022-01-01 04:41:15 +0100
commit52a6105dc1dee5f4f7e0b0fd4cc580e6f6ad1acc (patch)
tree3599b1807342d780f15f60d1e303780c05500167 /src
parentTranslated using Weblate (Spanish) (diff)
downloadnheko-52a6105dc1dee5f4f7e0b0fd4cc580e6f6ad1acc.tar.xz
Update translations
Diffstat (limited to 'src')
-rw-r--r--src/Cache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Cache.cpp b/src/Cache.cpp
index eec5b79f..49589a6f 100644
--- a/src/Cache.cpp
+++ b/src/Cache.cpp
@@ -2442,7 +2442,7 @@ Cache::getRoomName(lmdb::txn &txn, lmdb::dbi &statesdb, lmdb::dbi &membersdb)
     if (total == 2)
         return first_member;
     else if (total > 2)
-        return tr("%1 and %2 others").arg(first_member).arg(total - 1);
+        return tr("%1 and %n other(s)", "", (int)total - 1).arg(first_member);
 
     return tr("Empty Room");
 }