diff options
author | Sadie Powell <sadie@witchery.services> | 2024-08-18 03:17:33 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-08-18 03:17:33 +0100 |
commit | 136680f917b71a4d0210739c3d36942061c85708 (patch) | |
tree | 7e2d641a59eb51a505e55b3eb0a6d038b0e182d8 /modules | |
parent | 378ae21ac7e26b551cf79368264a93450370abca (diff) |
Fix the grammar of some info messages.
Diffstat (limited to 'modules')
-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 b4a5592b1..c13ce4fa5 100644 --- a/modules/botserv/bs_info.cpp +++ b/modules/botserv/bs_info.cpp @@ -50,7 +50,7 @@ public: if (bi) { - source.Reply(_("Information for bot \002%s\002:"), bi->nick.c_str()); + source.Reply(_("Information about bot \002%s\002:"), bi->nick.c_str()); info[_("Mask")] = bi->GetIdent() + "@" + bi->host; info[_("Real name")] = bi->realname; info[_("Created")] = Anope::strftime(bi->created, source.GetAccount()); |