From ccfaca32a2ba5f2e2528a2093d17be25507a3ad8 Mon Sep 17 00:00:00 2001 From: TehPeGaSuS <25697531+TehPeGaSuS@users.noreply.github.com> Date: Thu, 22 Feb 2024 00:09:09 +0100 Subject: [PATCH] Fix a typo in cs_drop. --- language/anope.en_US.po | 4 ++-- modules/chanserv/cs_drop.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/language/anope.en_US.po b/language/anope.en_US.po index c2ad3d060..7f2abb408 100644 --- a/language/anope.en_US.po +++ b/language/anope.en_US.po @@ -5400,8 +5400,8 @@ msgid "Persistent" msgstr "Persistent" #, c-format -msgid "Please confirm that you want to drop %s with with DROP %s %s." -msgstr "Please confirm that you want to drop %s with with DROP %s %s." +msgid "Please confirm that you want to drop %s with DROP %s %s" +msgstr "Please confirm that you want to drop %s with DROP %s %s" msgid "Please contact an Operator to get a vHost assigned to this nick." msgstr "Please contact an Operator to get a vHost assigned to this nick." diff --git a/modules/chanserv/cs_drop.cpp b/modules/chanserv/cs_drop.cpp index 2bc0e76a7..eada1c23b 100644 --- a/modules/chanserv/cs_drop.cpp +++ b/modules/chanserv/cs_drop.cpp @@ -58,7 +58,7 @@ public: *code = Anope::Random(15); } - source.Reply(_("Please confirm that you want to drop \002%s\002 with with \002DROP %s %s\002."), + source.Reply(_("Please confirm that you want to drop \002%s\002 with \002DROP %s %s\002"), chan.c_str(), chan.c_str(), code->c_str()); return; }