summaryrefslogtreecommitdiff
path: root/modules/botserv/bs_assign.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-04-16 00:04:30 +0100
committerSadie Powell <sadie@witchery.services>2025-04-16 00:04:30 +0100
commitce362854a39c35249f8d2c7bcf27e3d5f9aa9980 (patch)
tree6d4012d9579c2d56055d621768122cf5f3b658ba /modules/botserv/bs_assign.cpp
parenta883b616a1360ba74254661cbd39280404d1753a (diff)
Update as many messages as possible for automatic line wrapping.
Diffstat (limited to 'modules/botserv/bs_assign.cpp')
-rw-r--r--modules/botserv/bs_assign.cpp30
1 files changed, 18 insertions, 12 deletions
diff --git a/modules/botserv/bs_assign.cpp b/modules/botserv/bs_assign.cpp
index f80e9c17e..292c89459 100644
--- a/modules/botserv/bs_assign.cpp
+++ b/modules/botserv/bs_assign.cpp
@@ -76,9 +76,11 @@ public:
{
this->SendSyntax(source);
source.Reply(" ");
- source.Reply(_("Assigns the specified bot to a channel. You\n"
- "can then configure the bot for the channel so it fits\n"
- "your needs."));
+ source.Reply(_(
+ "Assigns the specified bot to a channel. You "
+ "can then configure the bot for the channel so it fits "
+ "your needs."
+ ));
return true;
}
};
@@ -138,11 +140,13 @@ public:
{
this->SendSyntax(source);
source.Reply(" ");
- source.Reply(_("Unassigns a bot from a channel. When you use this command,\n"
- "the bot won't join the channel anymore. However, bot\n"
- "configuration for the channel is kept, so you will always\n"
- "be able to reassign a bot later without having to reconfigure\n"
- "it entirely."));
+ source.Reply(_(
+ "Unassigns a bot from a channel. When you use this command, "
+ "the bot won't join the channel anymore. However, bot "
+ "configuration for the channel is kept, so you will always "
+ "be able to reassign a bot later without having to reconfigure "
+ "it entirely."
+ ));
return true;
}
};
@@ -197,10 +201,12 @@ public:
bool OnHelp(CommandSource &source, const Anope::string &) override
{
this->SendSyntax(source);
- source.Reply(_(" \n"
- "This option makes a channel unassignable. If a bot\n"
- "is already assigned to the channel, it is unassigned\n"
- "automatically when you enable it."));
+ source.Reply(" ");
+ source.Reply(_(
+ "This option makes a channel unassignable. If a bot "
+ "is already assigned to the channel, it is unassigned "
+ "automatically when you enable it."
+ ));
return true;
}
};