diff --git a/include/language.h b/include/language.h index faf8ef350..5b7a2cfe0 100644 --- a/include/language.h +++ b/include/language.h @@ -140,8 +140,8 @@ namespace Language #define CHAN_ACCESS_LEVEL_RANGE _("Access level must be between %d and %d inclusive.") #define CHAN_EXCEPTED _("\002%s\002 matches an except on %s and cannot be banned until the except has been removed.") #define CHAN_INFO_HEADER _("Information about channel \002%s\002:") -#define CHAN_LIMIT_EXCEEDED _("Sorry, you have already exceeded your limit of \002%d\002 channels.") -#define CHAN_LIMIT_REACHED _("Sorry, you have already reached your limit of \002%d\002 channels.") +#define CHAN_LIMIT_EXCEEDED _("You have already exceeded your limit of \002%d\002 channels.") +#define CHAN_LIMIT_REACHED _("You have already reached your limit of \002%d\002 channels.") #define CHAN_NOT_ALLOWED_TO_JOIN _("You are not permitted to be on this channel.") #define CHAN_SETTING_CHANGED _("%s for %s set to %s.") #define CHAN_SETTING_UNSET _("%s for %s unset.") diff --git a/language/anope.en_US.po b/language/anope.en_US.po index d2dca66de..19971f761 100644 --- a/language/anope.en_US.po +++ b/language/anope.en_US.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: Anope\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-25 00:00+0000\n" -"PO-Revision-Date: 2025-11-25 00:00+0000\n" +"POT-Creation-Date: 2025-11-25 00:05+0000\n" +"PO-Revision-Date: 2025-11-25 00:05+0000\n" "Last-Translator: Sadie Powell \n" "Language-Team: English\n" "Language: en_US\n" @@ -986,6 +986,10 @@ msgstr "" msgid "%s currently has no memos." msgstr "" +#, c-format +msgid "%s currently has too many memos and cannot receive more." +msgstr "" + #, c-format msgid "%s deleted from the %s forbid list." msgstr "" @@ -3163,6 +3167,10 @@ msgstr "" msgid "Hosts with at least %d sessions:" msgstr "" +#, c-format +msgid "I have not seen %s." +msgstr "" + msgid "ID" msgstr "" @@ -5082,46 +5090,6 @@ msgstr "" msgid "Signed kicks" msgstr "" -#, c-format -msgid "Sorry, %s currently has too many memos and cannot receive more." -msgstr "" - -#, c-format -msgid "Sorry, I have not seen %s." -msgstr "" - -#, c-format -msgid "Sorry, the maximum of %d auto join entries has been reached." -msgstr "" - -#, c-format -msgid "Sorry, the maximum of %d certificate entries has been reached." -msgstr "" - -#, c-format -msgid "Sorry, the memo ignore list for %s is full." -msgstr "" - -#, c-format -msgid "Sorry, you can only have %d access entries on a channel, including access entries from other channels." -msgstr "" - -#, c-format -msgid "Sorry, you can only have %d autokick masks on a channel." -msgstr "" - -#, c-format -msgid "Sorry, you can only have %d bad words entries on a channel." -msgstr "" - -#, c-format -msgid "Sorry, you have already exceeded your limit of %d channels." -msgstr "" - -#, c-format -msgid "Sorry, you have already reached your limit of %d channels." -msgstr "" - msgid "State" msgstr "" @@ -5499,6 +5467,18 @@ msgstr "" msgid "The mask must contain at least one non wildcard character." msgstr "" +#, c-format +msgid "The maximum of %d auto join entries has been reached." +msgstr "" + +#, c-format +msgid "The maximum of %d certificate entries has been reached." +msgstr "" + +#, c-format +msgid "The memo ignore list for %s is full." +msgstr "" + #, c-format msgid "The memo limit for %s may not be changed." msgstr "" @@ -6208,6 +6188,18 @@ msgstr "" msgid "You can not send a single message while you have messages queued." msgstr "" +#, c-format +msgid "You can only have %d access entries on a channel, including access entries from other channels." +msgstr "" + +#, c-format +msgid "You can only have %d autokick masks on a channel." +msgstr "" + +#, c-format +msgid "You can only have %d bad words entries on a channel." +msgstr "" + #, c-format msgid "You can't %s yourself!" msgstr "" @@ -6289,6 +6281,14 @@ msgstr[1] "" msgid "You have a new memo from %s. Type %s%zu to read it." msgstr "" +#, c-format +msgid "You have already exceeded your limit of %d channels." +msgstr "" + +#, c-format +msgid "You have already reached your limit of %d channels." +msgstr "" + #, c-format msgid "You have been invited to %s by %s." msgstr "" diff --git a/modules/botserv/bs_badwords.cpp b/modules/botserv/bs_badwords.cpp index bf0f570c9..f7dd7d7dd 100644 --- a/modules/botserv/bs_badwords.cpp +++ b/modules/botserv/bs_badwords.cpp @@ -340,7 +340,7 @@ private: unsigned badwordsmax = Config->GetModule(this->module).Get("badwordsmax"); if (badwords->GetBadWordCount() >= badwordsmax) { - source.Reply(_("Sorry, you can only have %d bad words entries on a channel."), badwordsmax); + source.Reply(_("You can only have %d bad words entries on a channel."), badwordsmax); return; } diff --git a/modules/chanserv/cs_access.cpp b/modules/chanserv/cs_access.cpp index 219be2cfb..c74b2d8b1 100644 --- a/modules/chanserv/cs_access.cpp +++ b/modules/chanserv/cs_access.cpp @@ -243,7 +243,7 @@ private: unsigned access_max = Config->GetModule("chanserv").Get("accessmax", "1000"); if (access_max && ci->GetDeepAccessCount() >= access_max) { - source.Reply(_("Sorry, you can only have %d access entries on a channel, including access entries from other channels."), access_max); + source.Reply(_("You can only have %d access entries on a channel, including access entries from other channels."), access_max); return; } diff --git a/modules/chanserv/cs_akick.cpp b/modules/chanserv/cs_akick.cpp index 51c863448..cce10ddf4 100644 --- a/modules/chanserv/cs_akick.cpp +++ b/modules/chanserv/cs_akick.cpp @@ -349,7 +349,7 @@ class CommandCSAKick final if (ChanServ::akick_service->GetAKickCount(ci) >= Config->GetModule(this->owner).Get("autokickmax")) { - source.Reply(_("Sorry, you can only have %d autokick masks on a channel."), Config->GetModule(this->owner).Get("autokickmax")); + source.Reply(_("You can only have %d autokick masks on a channel."), Config->GetModule(this->owner).Get("autokickmax")); return; } diff --git a/modules/chanserv/cs_flags.cpp b/modules/chanserv/cs_flags.cpp index 091db1cc8..8f9b12274 100644 --- a/modules/chanserv/cs_flags.cpp +++ b/modules/chanserv/cs_flags.cpp @@ -185,7 +185,7 @@ class CommandCSFlags final unsigned access_max = Config->GetModule("chanserv").Get("accessmax", "1000"); if (access_max && ci->GetDeepAccessCount() >= access_max) { - source.Reply(_("Sorry, you can only have %d access entries on a channel, including access entries from other channels."), access_max); + source.Reply(_("You can only have %d access entries on a channel, including access entries from other channels."), access_max); return; } diff --git a/modules/chanserv/cs_seen.cpp b/modules/chanserv/cs_seen.cpp index 04fba9450..6e12791fa 100644 --- a/modules/chanserv/cs_seen.cpp +++ b/modules/chanserv/cs_seen.cpp @@ -276,7 +276,7 @@ public: SeenInfo *info = FindInfo(target); if (!info) { - source.Reply(_("Sorry, I have not seen %s."), target.c_str()); + source.Reply(_("I have not seen %s."), target.c_str()); return; } diff --git a/modules/chanserv/cs_xop.cpp b/modules/chanserv/cs_xop.cpp index 0b52a351d..00cd73c2e 100644 --- a/modules/chanserv/cs_xop.cpp +++ b/modules/chanserv/cs_xop.cpp @@ -218,7 +218,7 @@ private: unsigned access_max = Config->GetModule("chanserv").Get("accessmax", "1000"); if (access_max && ci->GetDeepAccessCount() >= access_max) { - source.Reply(_("Sorry, you can only have %d access entries on a channel, including access entries from other channels."), access_max); + source.Reply(_("You can only have %d access entries on a channel, including access entries from other channels."), access_max); return; } diff --git a/modules/memoserv/ms_ignore.cpp b/modules/memoserv/ms_ignore.cpp index 29fbfeef4..6db1dfa85 100644 --- a/modules/memoserv/ms_ignore.cpp +++ b/modules/memoserv/ms_ignore.cpp @@ -56,7 +56,7 @@ public: { if (mi->ignores.size() >= Config->GetModule(this->owner).Get("max", "50")) { - source.Reply(_("Sorry, the memo ignore list for \002%s\002 is full."), channel.c_str()); + source.Reply(_("The memo ignore list for \002%s\002 is full."), channel.c_str()); return; } diff --git a/modules/memoserv/ms_rsend.cpp b/modules/memoserv/ms_rsend.cpp index 119c87adb..50ef0faec 100644 --- a/modules/memoserv/ms_rsend.cpp +++ b/modules/memoserv/ms_rsend.cpp @@ -64,7 +64,7 @@ public: source.Reply(_("Please wait %s before using the %s command again."), Anope::Duration(waitperiod, source.GetAccount()).c_str(), source.command.nobreak().c_str()); } else if (result == MemoServ::MEMO_TARGET_FULL) - source.Reply(_("Sorry, %s currently has too many memos and cannot receive more."), nick.c_str()); + source.Reply(_("%s currently has too many memos and cannot receive more."), nick.c_str()); else { source.Reply(_("Memo sent to \002%s\002."), nick.c_str()); diff --git a/modules/memoserv/ms_send.cpp b/modules/memoserv/ms_send.cpp index 3aecb96e3..a98c104b8 100644 --- a/modules/memoserv/ms_send.cpp +++ b/modules/memoserv/ms_send.cpp @@ -63,7 +63,7 @@ public: source.Reply(_("Please wait %s before using the %s command again."), Anope::Duration(waitperiod, source.GetAccount()).c_str(), source.command.nobreak().c_str()); } else if (result == MemoServ::MEMO_TARGET_FULL) - source.Reply(_("Sorry, %s currently has too many memos and cannot receive more."), nick.c_str()); + source.Reply(_("%s currently has too many memos and cannot receive more."), nick.c_str()); } bool OnHelp(CommandSource &source, const Anope::string &subcommand) override diff --git a/modules/nickserv/ns_ajoin.cpp b/modules/nickserv/ns_ajoin.cpp index d2b79f554..dcfdfb814 100644 --- a/modules/nickserv/ns_ajoin.cpp +++ b/modules/nickserv/ns_ajoin.cpp @@ -158,7 +158,7 @@ class CommandNSAJoin final if ((*channels)->size() >= Config->GetModule(this->owner).Get("ajoinmax")) { - source.Reply(_("Sorry, the maximum of %d auto join entries has been reached."), Config->GetModule(this->owner).Get("ajoinmax")); + source.Reply(_("The maximum of %d auto join entries has been reached."), Config->GetModule(this->owner).Get("ajoinmax")); return; } else if (i != (*channels)->size()) diff --git a/modules/nickserv/ns_cert.cpp b/modules/nickserv/ns_cert.cpp index 981109cc7..ff85469f5 100644 --- a/modules/nickserv/ns_cert.cpp +++ b/modules/nickserv/ns_cert.cpp @@ -214,7 +214,7 @@ private: if (cl->GetCertCount() >= max) { - source.Reply(_("Sorry, the maximum of %d certificate entries has been reached."), max); + source.Reply(_("The maximum of %d certificate entries has been reached."), max); return; }