diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-07 23:09:25 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-07 23:09:25 +0000 |
commit | 16700b0e308b001e6fa3418f67cda8293257ec24 (patch) | |
tree | e7ba0ba51ffad9c6dbaca1e75014a2da62ff9b17 | |
parent | 4e04a11995a4f33b1247b856f3232d92c73f7883 (diff) |
Remove a guarantee that may not necessarily be correct.
-rw-r--r-- | language/anope.en_US.po | 14 | ||||
-rw-r--r-- | modules/nickserv/nickserv.cpp | 5 |
2 files changed, 6 insertions, 13 deletions
diff --git a/language/anope.en_US.po b/language/anope.en_US.po index d5bc2399b..50049bb90 100644 --- a/language/anope.en_US.po +++ b/language/anope.en_US.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Anope\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-07 22:40+0000\n" -"PO-Revision-Date: 2024-03-07 22:40+0000\n" +"POT-Creation-Date: 2024-03-07 23:06+0000\n" +"PO-Revision-Date: 2024-03-07 23:06+0000\n" "Last-Translator: Sadie Powell <sadie@witchery.services>\n" "Language-Team: English\n" "Language: en_US\n" @@ -7875,14 +7875,8 @@ msgstr "" "particular option." #, c-format -msgid "" -"Type %s%s SET EMAIL email in order to set your email.\n" -"Your privacy is respected; this email won't be given to\n" -"any third-party person." -msgstr "" -"Type %s%s SET EMAIL email in order to set your email.\n" -"Your privacy is respected; this email won't be given to\n" -"any third-party person." +msgid "Type %s%s SET EMAIL email in order to set your email." +msgstr "Type %s%s SET EMAIL email in order to set your email." msgid "Un-Load a module" msgstr "Un-Load a module" diff --git a/modules/nickserv/nickserv.cpp b/modules/nickserv/nickserv.cpp index cb5e41ff6..541b7f0f9 100644 --- a/modules/nickserv/nickserv.cpp +++ b/modules/nickserv/nickserv.cpp @@ -362,9 +362,8 @@ public: u->SendMessage(NickServ, _("You must now supply an email for your nick.\n" "This email will allow you to retrieve your password in\n" "case you forget it.")); - u->SendMessage(NickServ, _("Type \002%s%s SET EMAIL \037email\037\002 in order to set your email.\n" - "Your privacy is respected; this email won't be given to\n" - "any third-party person."), Config->StrictPrivmsg.c_str(), NickServ->nick.c_str()); + u->SendMessage(NickServ, _("Type \002%s%s SET EMAIL \037email\037\002 in order to set your email."), + Config->StrictPrivmsg.c_str(), NickServ->nick.c_str()); } for (auto *c : collides) |