diff options
author | TehPeGaSuS <25697531+TehPeGaSuS@users.noreply.github.com> | 2024-02-22 00:09:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-21 23:09:09 +0000 |
commit | ccfaca32a2ba5f2e2528a2093d17be25507a3ad8 (patch) | |
tree | 8b923439a17407a50c88a90b7cba3fef98eb423f | |
parent | 07373c8cf2325d6e3b6c9d91acbc8abbf51db51e (diff) |
Fix a typo in cs_drop.
-rw-r--r-- | language/anope.en_US.po | 4 | ||||
-rw-r--r-- | 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; } |