mirror of
https://github.com/anope/anope.git
synced 2026-07-05 22:33:13 +02:00
Merge pull request #84 from Zantox/2.0
Minor cs_unban Lang Update @Robby- Updated HostServ Command English Language Updated ChanServ Command English Language Updated BotServ Command English Language
This commit is contained in:
@@ -75,7 +75,7 @@ class CommandBSAssign : public Command
|
||||
{
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_("Assigns a bot pointed out by nick to a channel. You\n"
|
||||
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."));
|
||||
return true;
|
||||
@@ -121,7 +121,7 @@ class CommandBSUnassign : public Command
|
||||
|
||||
if (ci->HasExt("PERSIST") && !ModeManager::FindChannelModeByName("PERM"))
|
||||
{
|
||||
source.Reply(_("You can not unassign bots while persist is set on the channel."));
|
||||
source.Reply(_("You cannot unassign bots while persist is set on the channel."));
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -195,9 +195,9 @@ class CommandBSSetNoBot : public Command
|
||||
{
|
||||
this->SendSyntax(source);
|
||||
source.Reply(_(" \n"
|
||||
"This option makes a channel be unassignable. If a bot\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 the option."));
|
||||
"automatically when you enable it."));
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
@@ -400,7 +400,7 @@ class CommandBSBadwords : public Command
|
||||
|
||||
if (Anope::ReadOnly)
|
||||
{
|
||||
source.Reply(_("Sorry, channel bad words list modification is temporarily disabled."));
|
||||
source.Reply(_("Sorry, bad words list modification is temporarily disabled."));
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -446,7 +446,7 @@ class CommandBSBadwords : public Command
|
||||
" Lists bad words entries numbered 2 through 5 and\n"
|
||||
" 7 through 9.\n"
|
||||
" \n"
|
||||
"The \002CLEAR\002 command clears all entries of the\n"
|
||||
"The \002CLEAR\002 command clears all entries from the\n"
|
||||
"bad words list."));
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -139,7 +139,7 @@ class CommandBSBot : public Command
|
||||
*/
|
||||
if (nick.equals_cs(bi->nick) && (!user.empty() ? user.equals_cs(bi->GetIdent()) : 1) && (!host.empty() ? host.equals_cs(bi->host) : 1) && (!real.empty() ? real.equals_cs(bi->realname) : 1))
|
||||
{
|
||||
source.Reply(_("Old info is equal to the new one."));
|
||||
source.Reply(_("The old information is the same as the new information specified."));
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -341,13 +341,13 @@ class CommandBSBot : public Command
|
||||
"hostname and realname. Since no integrity checks are done\n"
|
||||
"for these settings, be really careful.\n"
|
||||
" \n"
|
||||
"\002BOT CHANGE\002 allows to change the nickname, username, hostname\n"
|
||||
"or realname of a bot without actually having to delete it (and\n"
|
||||
"\002BOT CHANGE\002 allows you to change the nickname, username, hostname\n"
|
||||
"or realname of a bot without deleting it (and\n"
|
||||
"all the data associated with it).\n"
|
||||
" \n"
|
||||
"\002BOT DEL\002 removes the given bot from the bot list.\n"
|
||||
" \n"
|
||||
"\002Note\002: you cannot create a bot that has a nick that is\n"
|
||||
"\002Note\002: You cannot create a bot with a nick that is\n"
|
||||
"currently registered. If an unregistered user is currently\n"
|
||||
"using the nick, they will be killed."));
|
||||
return true;
|
||||
|
||||
@@ -16,7 +16,7 @@ class CommandBSSay : public Command
|
||||
public:
|
||||
CommandBSSay(Module *creator) : Command(creator, "botserv/say", 2, 2)
|
||||
{
|
||||
this->SetDesc(_("Makes the bot say the given text on the given channel"));
|
||||
this->SetDesc(_("Makes the bot say the specified text on the specified channel"));
|
||||
this->SetSyntax(_("\037channel\037 \037text\037"));
|
||||
}
|
||||
|
||||
@@ -66,7 +66,7 @@ class CommandBSSay : public Command
|
||||
{
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_("Makes the bot say the given text on the given channel."));
|
||||
source.Reply(_("Makes the bot say the specified text on the specified channel."));
|
||||
return true;
|
||||
}
|
||||
};
|
||||
@@ -125,7 +125,7 @@ class CommandBSAct : public Command
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_("Makes the bot do the equivalent of a \"/me\" command\n"
|
||||
"on the given channel using the given text."));
|
||||
"on the specified channel using the specified text."));
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
@@ -100,7 +100,7 @@ class CommandBSSetBanExpire : public Command
|
||||
|
||||
if (Anope::ReadOnly)
|
||||
{
|
||||
source.Reply(_("Sorry, bot option setting is temporarily disabled."));
|
||||
source.Reply(_("Sorry, changing bot options is temporarily disabled."));
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -71,8 +71,8 @@ class CommandCSDrop : public Command
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
if (source.IsServicesOper())
|
||||
source.Reply(_("Unregisters the named channel. Only \002Services Operators\002\n"
|
||||
"can drop a channel of which they are not the founder."));
|
||||
source.Reply(_("Unregisters the specified channel. Only \002Services Operators\002\n"
|
||||
"can drop a channel of which they are not the founder of."));
|
||||
else
|
||||
source.Reply(_("Unregisters the named channel. Can only be used by\n"
|
||||
"the \002channel founder\002."));
|
||||
|
||||
@@ -239,19 +239,19 @@ class CommandEntryMessage : public Command
|
||||
source.Reply(_("Controls what messages will be sent to users when they join the channel."));
|
||||
source.Reply(" ");
|
||||
source.Reply(_("The \002ENTRYMSG ADD\002 command adds the given message to\n"
|
||||
"the list of messages to be shown to users when they join\n"
|
||||
"the list of messages shown to users when they join\n"
|
||||
"the channel."));
|
||||
source.Reply(" ");
|
||||
source.Reply(_("The \002ENTRYMSG DEL\002 command removes the given message from\n"
|
||||
"the list of messages to be shown to users when they join\n"
|
||||
"the channel. You can remove the message by specifying its number\n"
|
||||
source.Reply(_("The \002ENTRYMSG DEL\002 command removes the specified message from\n"
|
||||
"the list of messages shown to users when they join\n"
|
||||
"the channel. You can a message by specifying its number\n"
|
||||
"which you can get by listing the messages as explained below."));
|
||||
source.Reply(" ");
|
||||
source.Reply(_("The \002ENTRYMSG LIST\002 command displays a listing of messages\n"
|
||||
"to be shown to users when they join the channel."));
|
||||
"shown to users when they join the channel."));
|
||||
source.Reply(" ");
|
||||
source.Reply(_("The \002ENTRYMSG CLEAR\002 command clears all entries from\n"
|
||||
"the list of messages to be shown to users when they join\n"
|
||||
"the list of messages shown to users when they join\n"
|
||||
"the channel, effectively disabling entry messages."));
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -227,7 +227,7 @@ class CommandCSFlags : public Command
|
||||
override = true;
|
||||
else
|
||||
{
|
||||
source.Reply(_("You can not set the \002%c\002 flag."), f);
|
||||
source.Reply(_("You cannot set the \002%c\002 flag."), f);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -417,19 +417,19 @@ class CommandCSFlags : public Command
|
||||
source.Reply(_("%s is another way to modify the channel access list, similar to\n"
|
||||
"the XOP and ACCESS methods."), source.command.c_str());
|
||||
source.Reply(" ");
|
||||
source.Reply(_("The \002MODIFY\002 command allows you to modify the access list. If mask is\n"
|
||||
"not already on the access list is it added, then the changes are applied.\n"
|
||||
source.Reply(_("The \002MODIFY\002 command allows you to modify the access list. If the mask is\n"
|
||||
"not already on the access list it is added, then the changes are applied.\n"
|
||||
"If the mask has no more flags, then the mask is removed from the access list.\n"
|
||||
"Additionally, you may use +* or -* to add or remove all flags, respectively. You are\n"
|
||||
"only able to modify the access list if you have the proper permission on the channel,\n"
|
||||
"and even then you can only give other people access to up what you already have."));
|
||||
"and even then you can only give other people access to the equivalent of what your access is."));
|
||||
source.Reply(" ");
|
||||
source.Reply(_("The \002LIST\002 command allows you to list existing entries on the channel access list.\n"
|
||||
"If a mask is given, the mask is wildcard matched against all existing entries on the\n"
|
||||
"access list, and only those entries are returned. If a set of flags is given, only those\n"
|
||||
"on the access list with the specified flags are returned."));
|
||||
source.Reply(" ");
|
||||
source.Reply(_("The \002CLEAR\002 command clears the channel access list, which requires channel founder."));
|
||||
source.Reply(_("The \002CLEAR\002 command clears the channel access list. This requires channel founder access."));
|
||||
source.Reply(" ");
|
||||
source.Reply(_("The available flags are:"));
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ class CommandCSInfo : public Command
|
||||
public:
|
||||
CommandCSInfo(Module *creator) : Command(creator, "chanserv/info", 1, 2)
|
||||
{
|
||||
this->SetDesc(_("Lists information about the named registered channel"));
|
||||
this->SetDesc(_("Lists information about the specified registered channel"));
|
||||
this->SetSyntax(_("\037channel\037"));
|
||||
this->AllowUnregistered(true);
|
||||
}
|
||||
@@ -73,7 +73,7 @@ class CommandCSInfo : public Command
|
||||
{
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_("Lists information about the named registered channel,\n"
|
||||
source.Reply(_("Lists information about the specified registered channel,\n"
|
||||
"including its founder, time of registration, last\n"
|
||||
"time used, and description. If the user issuing the\n"
|
||||
"command has the appropriate access for it, then the"
|
||||
|
||||
@@ -91,7 +91,7 @@ class CommandCSInvite : public Command
|
||||
source.Reply(_("Tells %s to invite you or an optionally specified\n"
|
||||
"nick into the given channel.\n"
|
||||
" \n"
|
||||
"By default, limited to AOPs or those with level 5 and above\n"
|
||||
"By default, limited to AOPs or those with level 5 access and above\n"
|
||||
"on the channel."), source.service->nick.c_str());
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -115,7 +115,7 @@ class CommandCSKick : public Command
|
||||
source.Reply(_("Kicks a specified nick from a channel.\n"
|
||||
" \n"
|
||||
"By default, limited to AOPs or those with level 5 access\n"
|
||||
"and above on the channel. Channel founders may use masks too."));
|
||||
"and above on the channel. Channel founders can also specify masks."));
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
@@ -172,7 +172,7 @@ class CommandOSSeen : public Command
|
||||
source.Reply(" ");
|
||||
source.Reply(_("The \002STATS\002 command prints out statistics about stored nicks and memory usage."));
|
||||
source.Reply(_("The \002CLEAR\002 command lets you clean the database by removing all entries from the\n"
|
||||
"entries from the database that were added within \037time\037.\n"
|
||||
"database that were added within \037time\037.\n"
|
||||
" \n"
|
||||
"Example:\n"
|
||||
" %s CLEAR 30m\n"
|
||||
|
||||
@@ -105,7 +105,7 @@ class CommandCSUnban : public Command
|
||||
"given, all bans affecting you in channels you have access\n"
|
||||
"in are removed.\n"
|
||||
" \n"
|
||||
"By default, limited to AOPs or those with level 5 and above\n"
|
||||
"By default, limited to AOPs or those with level 5 access and above\n"
|
||||
"on the channel."), source.service->nick.c_str());
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ class CommandHSDelAll : public Command
|
||||
public:
|
||||
CommandHSDelAll(Module *creator) : Command(creator, "hostserv/delall", 1, 1)
|
||||
{
|
||||
this->SetDesc(_("Delete the vhost for all nicks in a group"));
|
||||
this->SetDesc(_("Deletes the vhost for all nicks in a group"));
|
||||
this->SetSyntax(_("\037nick\037"));
|
||||
}
|
||||
|
||||
|
||||
@@ -134,7 +134,7 @@ class CommandHSList : public Command
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_("This command lists registered vhosts to the operator\n"
|
||||
"if a \037key\037 is specified, only entries whos nick or vhost match\n"
|
||||
"If a \037key\037 is specified, only entries whose nick or vhost match\n"
|
||||
"the pattern given in \037key\037 are displayed e.g. Rob* for all\n"
|
||||
"entries beginning with \"Rob\"\n"
|
||||
"If a \037#X-Y\037 style is used, only entries between the range of \002X\002\n"
|
||||
|
||||
@@ -171,7 +171,7 @@ class CommandHSRequest : public Command
|
||||
{
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_("Request the given vHost to be actived for your nick by the\n"
|
||||
source.Reply(_("Request the given vHost to be activated for your nick by the\n"
|
||||
"network administrators. Please be patient while your request\n"
|
||||
"is being considered."));
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user