summaryrefslogtreecommitdiff
path: root/modules/memoserv/memoserv.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-11-25 01:19:41 +0000
committerSadie Powell <sadie@witchery.services>2024-11-25 01:20:03 +0000
commitebea7289572dde1cb0b87118e4be4f5718256941 (patch)
treed6e10995d50d6cf0bc8854e68528c37b1fa6331b /modules/memoserv/memoserv.cpp
parent233a5bf4cd71207e30430d076baf2e0aa0112f56 (diff)
Fix pluralising languages which use the same plural for 0 as 1.
Diffstat (limited to 'modules/memoserv/memoserv.cpp')
-rw-r--r--modules/memoserv/memoserv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/memoserv/memoserv.cpp b/modules/memoserv/memoserv.cpp
index 4b005eaf5..957d6dd32 100644
--- a/modules/memoserv/memoserv.cpp
+++ b/modules/memoserv/memoserv.cpp
@@ -139,7 +139,7 @@ public:
if (nc->memos.GetMemo(i)->unread)
++newcnt;
if (newcnt > 0)
- u->SendMessage(MemoServ, newcnt, N_("You have 1 new memo.", "You have %d new memos."), newcnt);
+ u->SendMessage(MemoServ, newcnt, N_("You have %d new memo.", "You have %d new memos."), newcnt);
if (nc->memos.memomax > 0 && nc->memos.memos->size() >= static_cast<unsigned>(nc->memos.memomax))
{
if (nc->memos.memos->size() > static_cast<unsigned>(nc->memos.memomax))