diff options
author | Sadie Powell <sadie@witchery.services> | 2025-02-05 19:38:36 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-02-05 19:38:36 +0000 |
commit | 5d9344b6773a54c3e1706019c1910c20b5e95055 (patch) | |
tree | d0086ff9e0941fd6fa4f83bf9b1c448f8cb1ab01 | |
parent | 8d3755af5b51049c229b3dcae474e743e7973ac4 (diff) |
Fix the pluralisation of a message in bs_info.
-rw-r--r-- | modules/botserv/bs_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/botserv/bs_info.cpp b/modules/botserv/bs_info.cpp index 0bee2de01..ae4af76cf 100644 --- a/modules/botserv/bs_info.cpp +++ b/modules/botserv/bs_info.cpp @@ -55,7 +55,7 @@ public: info[_("Real name")] = bi->realname; info[_("Created")] = Anope::strftime(bi->created, source.GetAccount()); info[_("Options")] = bi->oper_only ? _("Private") : _("None"); - info[_("Used on")] = Anope::printf(Language::Translate(source.nc, N_("%u channel", "%u channels")), bi->GetChannelCount()); + info[_("Used on")] = Anope::printf(Language::Translate(source.nc, bi->GetChannelCount(), N_("%u channel", "%u channels")), bi->GetChannelCount()); FOREACH_MOD(OnBotInfo, (source, bi, ci, info)); |