diff options
-rw-r--r-- | data/example.conf | 39 | ||||
-rw-r--r-- | docs/Changes.conf | 1 | ||||
-rw-r--r-- | include/account.h | 2 | ||||
-rw-r--r-- | include/regchannel.h | 2 | ||||
-rw-r--r-- | lang/cat.l | 207 | ||||
-rw-r--r-- | lang/de.l | 94 | ||||
-rw-r--r-- | lang/en_us.l | 97 | ||||
-rw-r--r-- | lang/es.l | 97 | ||||
-rw-r--r-- | lang/fr.l | 98 | ||||
-rw-r--r-- | lang/gr.l | 97 | ||||
-rw-r--r-- | lang/hun.l | 94 | ||||
-rw-r--r-- | lang/it.l | 97 | ||||
-rw-r--r-- | lang/nl.l | 97 | ||||
-rw-r--r-- | lang/pl.l | 106 | ||||
-rw-r--r-- | lang/pt.l | 97 | ||||
-rw-r--r-- | lang/ru.l | 93 | ||||
-rw-r--r-- | lang/tr.l | 98 | ||||
-rw-r--r-- | src/chanserv.cpp | 4 | ||||
-rw-r--r-- | src/core/cs_info.cpp | 4 | ||||
-rw-r--r-- | src/core/cs_set_email.cpp | 103 | ||||
-rw-r--r-- | src/core/cs_set_entrymsg.cpp | 2 | ||||
-rw-r--r-- | src/core/cs_set_url.cpp | 111 | ||||
-rw-r--r-- | src/core/db_plain.cpp | 16 | ||||
-rw-r--r-- | src/core/ns_group.cpp | 3 | ||||
-rw-r--r-- | src/core/ns_info.cpp | 4 | ||||
-rw-r--r-- | src/core/ns_set_icq.cpp | 133 | ||||
-rw-r--r-- | src/core/ns_set_url.cpp | 125 | ||||
-rw-r--r-- | src/modules/cs_set_misc.cpp | 196 | ||||
-rw-r--r-- | src/modules/os_info.cpp | 515 | ||||
-rw-r--r-- | src/nickcore.cpp | 6 | ||||
-rw-r--r-- | src/nickserv.cpp | 2 | ||||
-rw-r--r-- | src/regchannel.cpp | 6 |
32 files changed, 291 insertions, 2355 deletions
diff --git a/data/example.conf b/data/example.conf index d66e98611..6c5c87bc7 100644 --- a/data/example.conf +++ b/data/example.conf @@ -979,7 +979,7 @@ chanserv * The core modules to load for ChanServ. This is a space separated list that corresponds * to the base names of the modules for ChanServ. This directive is optional, but highly recommended. */ - modules = "cs_help cs_register cs_set cs_saset cs_set_bantype cs_set_description cs_set_email cs_set_entrymsg cs_set_founder cs_set_keeptopic cs_set_mlock cs_set_opnotice cs_set_peace cs_set_persist cs_set_private cs_set_restricted cs_set_secure cs_set_securefounder cs_set_secureops cs_set_signkick cs_set_successor cs_set_topiclock cs_set_url cs_set_xop cs_xop cs_access cs_akick cs_drop cs_ban cs_clear cs_modes cs_getkey cs_invite cs_kick cs_list cs_topic cs_info cs_forbid cs_suspend cs_status cs_unban" + modules = "cs_help cs_register cs_set cs_saset cs_set_bantype cs_set_description cs_set_entrymsg cs_set_founder cs_set_keeptopic cs_set_mlock cs_set_opnotice cs_set_peace cs_set_persist cs_set_private cs_set_restricted cs_set_secure cs_set_securefounder cs_set_secureops cs_set_signkick cs_set_successor cs_set_topiclock cs_set_xop cs_xop cs_access cs_akick cs_drop cs_ban cs_clear cs_modes cs_getkey cs_invite cs_kick cs_list cs_topic cs_info cs_forbid cs_suspend cs_status cs_unban" /* * The default options for newly registered channels. Note that changing these options @@ -1553,7 +1553,6 @@ module { name = "os_ignore" } module { name = "cs_appendtopic" } module { name = "cs_enforce" } module { name = "ns_maxemail" } -module { name = "os_info" } module { name = "hs_request" } /* @@ -1577,6 +1576,42 @@ db_plain database = "anope.db" } +module { name = "cs_set_misc" } +cs_set_misc +{ + name = "OINFO" + desc = "Associate oper only information to this channel" + operonly = yes +} +cs_set_misc +{ + name = "URL" + desc = "Associate a URL with the channel" +} +cs_set_misc +{ + name = "EMail" + desc = "Associate an EMail with the channel" +} + +module { name = "ns_set_misc" } +ns_set_misc +{ + name = "OINFO" + desc = "Associate oper only information to this nick" + operonly = yes +} +ns_set_misc +{ + name = "URL" + desc = "Associate a URl with the nick" +} +ns_set_misc +{ + name = "ICQ" + desc = "Associate an ICQ number with the nick" +} + #module { name = "m_helpchan" } m_helpchan { diff --git a/docs/Changes.conf b/docs/Changes.conf index bad0cf57b..8cc990c3a 100644 --- a/docs/Changes.conf +++ b/docs/Changes.conf @@ -9,6 +9,7 @@ nickserv:modules added many new ns_set_command modules chanserv:modules added many new cs_set_command modules opertype:commands added nickserv/saset/* and chanserv/saset/* options:socketengine added to choose what socket engine to use +module:cs_set_misc and module:ns_set_misc added to replace the old set url/icq/email modules ** MODIFIED CONFIGURATION DIRECTIVES ** opertype:commands changed operserv/sgline to opserv/snline diff --git a/include/account.h b/include/account.h index 7644d9d89..82ccb3871 100644 --- a/include/account.h +++ b/include/account.h @@ -153,8 +153,6 @@ class CoreExport NickCore : public Extensible, public Flags<NickCoreFlag, NI_END std::string pass; /* Password of the nicks */ char *email; /* E-mail associated to the nick */ char *greet; /* Greet associated to the nick */ - uint32 icq; /* ICQ # associated to the nick */ - char *url; /* URL associated to the nick */ uint16 language; /* Language selected by nickname owner (LANG_*) */ std::vector<std::string> access; /* Access list, vector of strings */ MemoInfo memos; diff --git a/include/regchannel.h b/include/regchannel.h index ec04134f1..266b057d7 100644 --- a/include/regchannel.h +++ b/include/regchannel.h @@ -86,8 +86,6 @@ class CoreExport ChannelInfo : public Extensible, public Flags<ChannelInfoFlag, NickCore *founder; NickCore *successor; /* Who gets the channel if the founder nick is dropped or expires */ char *desc; - char *url; - char *email; time_t time_registered; time_t last_used; diff --git a/lang/cat.l b/lang/cat.l index 7e24faf0b..e3fa1aa71 100644 --- a/lang/cat.l +++ b/lang/cat.l @@ -459,12 +459,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Llenguatge canviat a Català. -# SET URL responses -NICK_SET_URL_CHANGED - URL canviada a %s. -NICK_SET_URL_UNSET - URL no establerta. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED Adreça E-mail canviada a %s. @@ -473,138 +467,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE No pots establir la teva adreça e-mail en aquesta xarxa. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - Numero ICQ establert a %s. -NICK_SET_ICQ_UNSET - Numero ICQ no establert. -NICK_SET_ICQ_INVALID - %s no es un numero vàlid. - -# SET GREET responses -NICK_SET_GREET_CHANGED - Missatge de benvinguda canviat a %s. -NICK_SET_GREET_UNSET - Missatge de benvinguda no establert. - -# SET PROTECT responses -NICK_SET_KILL_SYNTAX - SET KILL {ON | QUICK | OFF} -NICK_SET_KILL_IMMED_SYNTAX - SET KILL {ON | QUICK | IMMED | OFF} -NICK_SET_KILL_ON - Protecció activada. -NICK_SET_KILL_QUICK - La protecció esta activada, amb demora reduida. -NICK_SET_KILL_IMMED - La protecció esta activada, sense demora. -NICK_SET_KILL_IMMED_DISABLED - L'opció IMMED no esta disponible en aquesta xarxa. -NICK_SET_KILL_OFF - La protecció esta desactivada. - -# SET SECURE responses -NICK_SET_SECURE_SYNTAX - SET SECURE {ON | OFF} -NICK_SET_SECURE_ON - L'opció de seguretat esta activada. -NICK_SET_SECURE_OFF - L'opció de seguretat esta desactivada. - -# SET PRIVATE responses -NICK_SET_PRIVATE_SYNTAX - SET PRIVATE {ON | OFF} -NICK_SET_PRIVATE_ON - L'opció de privacitat esta activada. -NICK_SET_PRIVATE_OFF - L'opció de privacitat esta desactivada. - -# SET HIDE responses -NICK_SET_HIDE_SYNTAX - SET HIDE {EMAIL | STATUS | USERMASK | QUIT} {ON | OFF} -NICK_SET_HIDE_EMAIL_ON - La teva adreça e-mail no sera mostrada a %s INFO displays. -NICK_SET_HIDE_EMAIL_OFF - La teva adreça e-mail sera mostrada a %s INFO displays. -NICK_SET_HIDE_MASK_ON - La teva ultima mascara usuari@host no sera mostrada a %s INFO displays. -NICK_SET_HIDE_MASK_OFF - La teva ultima mascara usuari@host sera mostrada a %s INFO displays. -NICK_SET_HIDE_QUIT_ON - El teu últim missatge quit no sera mostrat a %s INFO displays. -NICK_SET_HIDE_QUIT_OFF - El teu últim missatge quit sera mostrat a %s INFO displays. - -# SET MSG responses -NICK_SET_HIDE_STATUS_ON - Your services access status will now be hidden from %s INFO displays. -NICK_SET_HIDE_STATUS_OFF - Your services access status will now be shown in %s INFO displays. - -# SET MSG responses -NICK_SET_MSG_SYNTAX - SET PRIVATE {ON | OFF} -NICK_SET_MSG_ON - Els serveis et respondran ara amb missatge. -NICK_SET_MSG_OFF - Els serveis et respondran ara amb noticies. - -# SET AUTOOP responses -NICK_SET_AUTOOP_SYNTAX - SET AUTOOP {ON | OFF} -NICK_SET_AUTOOP_ON - Services will now autoop you in channels. -NICK_SET_AUTOOP_OFF - Services will no longer autoop you in channels. - -# SASET NOEXPIRE responses -NICK_SASET_SYNTAX - SASET nickname option parameters -NICK_SASET_DISABLED - Sorry, nickname option setting is temporarily disabled. -NICK_SASET_UNKNOWN_OPTION - Unknown SASET option %s. -NICK_SASET_BAD_NICK - Nickname %s not registered. -NICK_SASET_OPTION_DISABLED - Option %s cannot be set on this network. - -# SASET DISPLAY responses -NICK_SASET_DISPLAY_INVALID - The new display for %s MUST be a nickname of the nickname group! -NICK_SASET_DISPLAY_CHANGED - The new display is now %s. - -# SASET PASSWORD responses -NICK_SASET_PASSWORD_FAILED - Sorry, couldn't change password for %s. -NICK_SASET_PASSWORD_CHANGED - Password for %s changed. -NICK_SASET_PASSWORD_CHANGED_TO - Password for %s changed to %s. - -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - URL for %s changed to %s. -NICK_SASET_URL_UNSET - URL %s unset. - -# SASET EMAIL responses -NICK_SASET_EMAIL_CHANGED - E-mail address for %s changed to %s. -NICK_SASET_EMAIL_UNSET - E-mail address for %s unset. -NICK_SASET_EMAIL_UNSET_IMPOSSIBLE - You cannot unset the e-mail on this network. - -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ number for %s set to %s. -NICK_SASET_ICQ_UNSET - ICQ number for %s unset. -NICK_SASET_ICQ_INVALID - %s is not a valid number. - # SASET GREET responses NICK_SASET_GREET_CHANGED Greet message for %s changed to %s. @@ -749,8 +611,6 @@ NICK_INFO_VHOST vhost: %s NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - ICQ #: %d NICK_INFO_GREET Missatge de benvinguda: %s NICK_INFO_OPTIONS @@ -1134,6 +994,10 @@ CHAN_SET_DISABLED Ho sento, l'establiment d'Opciós de canal esta temporalment deshAbilitat. CHAN_SET_UNKNOWN_OPTION Opció SET %s desconoceguda. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1153,12 +1017,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED La descripció de %s canviada a%s. -# SET URL responses -CHAN_URL_CHANGED - URL per a %s canviada a %s. -CHAN_URL_UNSET - URL per a %s no establerta. - # SET EMAIL responses CHAN_EMAIL_CHANGED Adreça e-mail per a %s canviada a %s. @@ -3656,12 +3514,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE Estableix el llenguatge amb el que els serveis t'enviaran missatges -NICK_HELP_CMD_SET_URL - URL Associa una URL amb el teu nickname NICK_HELP_CMD_SET_EMAIL EMAIL Associa un E-mail amb el teu nickname -NICK_HELP_CMD_SET_ICQ - ICQ Associa un numero ICQ amb el teu nickname NICK_HELP_CMD_SET_GREET GREET Associa un salutació amb el teu nickname NICK_HELP_CMD_SET_KILL @@ -3709,13 +3563,6 @@ NICK_HELP_SET_LANGUAGE soportats: -NICK_HELP_SET_URL - Sintaxis: SET URL url - - Associa l'URL donada amb el teu nickname. Aquesta URL - sera mostrada quant algu demani informació - sobre el teu nick amb la comanda INFO. - NICK_HELP_SET_EMAIL Sintaxis: SET EMAIL direccion @@ -3723,13 +3570,6 @@ NICK_HELP_SET_EMAIL sera mostrat quant algu demani informació sobre el teu nick amb la comanda INFO. -NICK_HELP_SET_ICQ - Sintaxis: SET ICQ numero - - Associa el numero ICQ donat amb el teu nickname. Aquest - numero sera mostrat quant algu soliciti - informació sobre el teu nick amb la comanda INFO. - NICK_HELP_SET_GREET Sintaxis: SET GREET missatge @@ -3806,12 +3646,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Set the display of the group in Services NICK_HELP_CMD_SASET_PASSWORD PASSWORD Set the nickname password -NICK_HELP_CMD_SASET_URL - URL Associate a URL with the nickname NICK_HELP_CMD_SASET_EMAIL EMAIL Associate an E-mail address with the nickname -NICK_HELP_CMD_SASET_ICQ - ICQ Associate an ICQ number with the nickname NICK_HELP_CMD_SASET_GREET GREET Associate a greet message with the nickname NICK_HELP_CMD_SASET_KILL @@ -3847,25 +3683,11 @@ NICK_HELP_SASET_PASSWORD Changes the password used to identify as the nick's owner. -NICK_HELP_SASET_URL - Syntax: SASET nickname URL url - - Associates the given URL with the nickname. This URL - will be displayed whenever someone requests information - on the nick with the INFO command. - NICK_HELP_SASET_EMAIL Syntax: SASET nickname EMAIL address Associates the given E-mail address with the nickname. -NICK_HELP_SASET_ICQ - Syntax: SASET nickname ICQ number - - Associates the given ICQ number with the nickname. This - number will be displayed whenever someone requests - information on the nick with the INFO command. - NICK_HELP_SASET_GREET Syntax: SASET nickname GREET message @@ -4399,10 +4221,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Estableix el successor d'un canal CHAN_HELP_CMD_SET_DESC DESC Estableix la descripció del canal -CHAN_HELP_CMD_SET_URL - URL Associa una URL amb el canal -CHAN_HELP_CMD_SET_EMAIL - EMAIL Associa un E-mail amb el canal CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Estableix un missatge a enviar als usuaris quant entrin al canal @@ -4469,23 +4287,6 @@ CHAN_HELP_SET_DESC Estableix la descripció pel canal, la que es mostrada amb les comandes LIST i INFO. -CHAN_HELP_SET_URL - Sintaxis: %s canal URL [url] - - Associa l'URL especificada amb el canal. Aquesta URL sera mostrada - quant algu sol.liciti informació sobre el canal amb - la comanda INFO. Si no s'especifica cap parametre, - esborra la URL actual pel canal. - -CHAN_HELP_SET_EMAIL - Sintaxis: %s canal EMAIL [direcció] - - Associa l'adreça e-mail especificada amb el canal. - Aquesta adreça sera mostrada quant algu sol.liciti - informació sobre el canal amb la comanda INFO. - Si cap parametre es establert, borra l'adreça e-mail - actual pel canal. - CHAN_HELP_SET_ENTRYMSG Sintaxis: %s canal ENTRYMSG [missatge] @@ -477,12 +477,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Sprache wurde geändert zu Deutsch. -# SET URL responses -NICK_SET_URL_CHANGED - URL zu %s geändert. -NICK_SET_URL_UNSET - URL entfernt. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED eMail-Adresse zu %s geändert. @@ -491,14 +485,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE Du kannst in diesem Netzwerk deine eMail-Adresse nicht entfernen. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - ICQ-Nummer auf %s gesetzt. -NICK_SET_ICQ_UNSET - ICQ-Nummer wurde entfernt. -NICK_SET_ICQ_INVALID - %s ist keine gültige ICQ-Nummer. - # SET GREET responses NICK_SET_GREET_CHANGED Begrüssungsnachricht wurde zu %s geändert. @@ -599,12 +585,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Passwort für %s wurde auf %s gesetzt. -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - URL für %s wurde auf %s gesetzt. -NICK_SASET_URL_UNSET - URL %s wurde entfernt. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED E-mail Adresse für %s wurde auf %s geändert. @@ -613,14 +593,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE Auf diesem Netzwerk ist es nicht möglich die E-Mail Adresse zu entfernen. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ Nummer für %s wurde auf %s gesetzt. -NICK_SASET_ICQ_UNSET - ICQ Nummer %s wurde entfernt. -NICK_SASET_ICQ_INVALID - %s ist keine gültige ICQ Nummer. - # SASET GREET responses NICK_SASET_GREET_CHANGED Begrüssungsnachricht %s wurde auf %s geändert. @@ -766,8 +738,6 @@ NICK_INFO_VHOST vHost: %s NICK_INFO_VHOST2 vHost: %s@%s -NICK_INFO_ICQ - ICQ #: %d NICK_INFO_GREET Grussnachricht: %s NICK_INFO_OPTIONS @@ -1155,6 +1125,10 @@ CHAN_SET_DISABLED Channel-Optionen sind derzeit deaktiviert. CHAN_SET_UNKNOWN_OPTION Unbekannte SET-Option %s. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -3633,11 +3607,6 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE Stellt die Sprache ein, in der dir die Services antworten sollen. -NICK_HELP_CMD_SET_URL - URL Verbindet eine URL mit deinem Nicknamen -NICK_HELP_CMD_SET_ICQ - ICQ Trägt deine ICQ-Nummer unter den Infos - zu deinem Nicknamen ein. NICK_HELP_CMD_SET_MSG MSG Ändert die Methode, wie die Services mit dir kommunizieren @@ -3697,13 +3666,6 @@ NICK_HELP_SET_LANGUAGE Nummer muss von der folgenden Liste der unter- stützten Sprachen ausgewählt werden: -NICK_HELP_SET_URL - Syntax: SET URL Url - - Verbindet die angegebene URL mit deinem Nicknamen. - Diese URL wird angezeigt, wenn jemand Informationen - über deinen Nicknamen mit dem INFO Befehl anfordert. - NICK_HELP_SET_EMAIL Syntax: SET EMAIL Adresse @@ -3712,13 +3674,6 @@ NICK_HELP_SET_EMAIL Informationen über deinen Nicknamen mit dem INFO Befehl anfordert. -NICK_HELP_SET_ICQ - Syntax: SET ICQ Nummer - - Verbindet die angegebene ICQ Nummer mit deinem Nicknamen. - Diese Nummer wird angezeigt, wenn jemand Informationen - über deinen Nicknamen mit dem INFO Befehl anfordert. - NICK_HELP_SET_GREET Syntax: SET GREET Nachricht @@ -3807,12 +3762,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Setzt einen Nicknamen als Ursprung der Nickgruppe NICK_HELP_CMD_SASET_PASSWORD PASSWORD Setzt das Passwort eines Nicknamens -NICK_HELP_CMD_SASET_URL - URL Fügt eine URL dem Nicknamen hinzu NICK_HELP_CMD_SASET_EMAIL EMAIL Fügt eine Emailadresse dem Nicknamen hinzu -NICK_HELP_CMD_SASET_ICQ - ICQ Fügt eine ICQ Nummer dem Nicknamen hinzu NICK_HELP_CMD_SASET_GREET GREET Fügt eine Begrüssungsnachricht dem Nicknamen hinzu NICK_HELP_CMD_SASET_KILL @@ -3858,26 +3809,12 @@ NICK_HELP_SASET_PASSWORD Ändert das Passwort um sich als Besitzer eines Nicknamens zu identifizieren. -NICK_HELP_SASET_URL - Syntax: SASET nickname URL url - - Verknüpft eine URL mit dem Nicknamen. Diese URL wird - angezeigt wenn jemand mit dem INFO Befehl nähere - Informationen zu dem Nicknamen abruft. - NICK_HELP_SASET_EMAIL Syntax: SASET nickname EMAIL address Verknüpft die angegeben Emailadresse mit dem Nicknamen. -NICK_HELP_SASET_ICQ - Syntax: SASET nickname ICQ number - - Verknüpft die angegebene ICQ Nummer mit dem Nicknamen. - Diese ICQ Nummer wird angezeigt wenn jemand mit dem - INFO Befehl nähere Informationen zu dem Nicknamen abruft. - NICK_HELP_SASET_GREET Syntax: SASET nickname GREET message @@ -4439,11 +4376,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Stellt den Vertreter des Founders ein CHAN_HELP_CMD_SET_DESC DESC Ändert die Channel-Beschreibung -CHAN_HELP_CMD_SET_URL - URL Verbindet eine URL mit dem Channel -CHAN_HELP_CMD_SET_EMAIL - EMAIL Verbindet eine eMail-Adresse mit dem - Channel CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Stellt eine Begrüssungsmeldung des Channels ein @@ -4508,24 +4440,6 @@ CHAN_HELP_SET_DESC Ändert die Beschreibung für einen Channel, die bei dem LIST und INFO Befehl angezeigt wird. -CHAN_HELP_SET_URL - Syntax: %s Channel URL [Url] - - Verbindet die angegebene URL mit dem Channel. Diese - URL wird angezeigt, wenn jemand Informationen - über den Channel mit dem INFO Befehl abfragt. - Wird kein Parameter angegeben, wird die aktuelle - URL gelöscht. - -CHAN_HELP_SET_EMAIL - Syntax: %s Channel EMAIL [eMail-Adresse] - - Verbindet die angegebene eMail-Adresse mit dem - Channel. Diese eMail-Adresse wird angezeigt, - wenn jemand Informationen über den Channel mit - dem INFO Befehl abfragt.Wird kein Parameter - angegeben, wird die aktuelle eMail-Adresse gelöscht. - CHAN_HELP_SET_ENTRYMSG Syntax: %s Channel ENTRYMSG [Nachricht] diff --git a/lang/en_us.l b/lang/en_us.l index c86043854..c6352de49 100644 --- a/lang/en_us.l +++ b/lang/en_us.l @@ -445,12 +445,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Language changed to English. -# SET URL responses -NICK_SET_URL_CHANGED - URL changed to %s. -NICK_SET_URL_UNSET - URL unset. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED E-mail address changed to %s. @@ -459,14 +453,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE You cannot unset the e-mail on this network. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - ICQ number set to %s. -NICK_SET_ICQ_UNSET - ICQ number unset. -NICK_SET_ICQ_INVALID - %s is not a valid number. - # SET GREET responses NICK_SET_GREET_CHANGED Greet message changed to %s. @@ -568,12 +554,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Password for %s changed to %s. -# SASET URL responses -NICK_SASET_URL_CHANGED - URL for %s changed to %s. -NICK_SASET_URL_UNSET - URL %s unset. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED E-mail address for %s changed to %s. @@ -582,14 +562,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE You cannot unset the e-mail on this network. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ number for %s set to %s. -NICK_SASET_ICQ_UNSET - ICQ number for %s unset. -NICK_SASET_ICQ_INVALID - %s is not a valid number. - # SASET GREET responses NICK_SASET_GREET_CHANGED Greet message for %s changed to %s. @@ -734,8 +706,6 @@ NICK_INFO_VHOST vhost: %s NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - ICQ #: %d NICK_INFO_GREET Greet message: %s NICK_INFO_OPTIONS @@ -1110,6 +1080,10 @@ CHAN_SET_DISABLED Sorry, channel option setting is temporarily disabled. CHAN_SET_UNKNOWN_OPTION Unknown SET option %s. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1129,12 +1103,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED Description of %s changed to %s. -# SET URL responses -CHAN_URL_CHANGED - URL for %s changed to %s. -CHAN_URL_UNSET - URL for %s unset. - # SET EMAIL responses CHAN_EMAIL_CHANGED E-mail address for %s changed to %s. @@ -3521,12 +3489,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE Set the language Services will use when sending messages to you -NICK_HELP_CMD_SET_URL - URL Associate a URL with your nickname NICK_HELP_CMD_SET_EMAIL EMAIL Associate an E-mail address with your nickname -NICK_HELP_CMD_SET_ICQ - ICQ Associate an ICQ number with your nickname NICK_HELP_CMD_SET_GREET GREET Associate a greet message with your nickname NICK_HELP_CMD_SET_KILL @@ -3572,13 +3536,6 @@ NICK_HELP_SET_LANGUAGE supported languages: -NICK_HELP_SET_URL - Syntax: SET URL url - - Associates the given URL with your nickname. This URL - will be displayed whenever someone requests information - on your nick with the INFO command. - NICK_HELP_SET_EMAIL Syntax: SET EMAIL address @@ -3586,13 +3543,6 @@ NICK_HELP_SET_EMAIL This address will be displayed whenever someone requests information on the nickname with the INFO command. -NICK_HELP_SET_ICQ - Syntax: SET ICQ number - - Associates the given ICQ number with your nickname. This - number will be displayed whenever someone requests - information on your nick with the INFO command. - NICK_HELP_SET_GREET Syntax: SET GREET message @@ -3670,12 +3620,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Set the display of the group in Services NICK_HELP_CMD_SASET_PASSWORD PASSWORD Set the nickname password -NICK_HELP_CMD_SASET_URL - URL Associate a URL with the nickname NICK_HELP_CMD_SASET_EMAIL EMAIL Associate an E-mail address with the nickname -NICK_HELP_CMD_SASET_ICQ - ICQ Associate an ICQ number with the nickname NICK_HELP_CMD_SASET_GREET GREET Associate a greet message with the nickname NICK_HELP_CMD_SASET_KILL @@ -3713,25 +3659,11 @@ NICK_HELP_SASET_PASSWORD Changes the password used to identify as the nick's owner. -NICK_HELP_SASET_URL - Syntax: SASET nickname URL url - - Associates the given URL with the nickname. This URL - will be displayed whenever someone requests information - on the nick with the INFO command. - NICK_HELP_SASET_EMAIL Syntax: SASET nickname EMAIL address Associates the given E-mail address with the nickname. -NICK_HELP_SASET_ICQ - Syntax: SASET nickname ICQ number - - Associates the given ICQ number with the nickname. This - number will be displayed whenever someone requests - information on the nick with the INFO command. - NICK_HELP_SASET_GREET Syntax: SASET nickname GREET message @@ -4245,10 +4177,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Set the successor for a channel CHAN_HELP_CMD_SET_DESC DESC Set the channel description -CHAN_HELP_CMD_SET_URL - URL Associate a URL with the channel -CHAN_HELP_CMD_SET_EMAIL - EMAIL Associate an E-mail address with the channel CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Set a message to be sent to users when they enter the channel @@ -4310,23 +4238,6 @@ CHAN_HELP_SET_DESC Sets the description for the channel, which shows up with the LIST and INFO commands. -CHAN_HELP_SET_URL - Syntax: %s channel URL [url] - - Associates the given URL with the channel. This URL will - be displayed whenever someone requests information on the - channel with the INFO command. If no parameter is given, - deletes any current URL for the channel. - -CHAN_HELP_SET_EMAIL - Syntax: %s channel EMAIL [address] - - Associates the given E-mail address with the channel. - This address will be displayed whenever someone requests - information on the channel with the INFO command. If no - parameter is given, deletes any current E-mail address for - the channel. - CHAN_HELP_SET_ENTRYMSG Syntax: %s channel ENTRYMSG [message] @@ -461,12 +461,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Lenguage cambiado a Español. -# SET URL responses -NICK_SET_URL_CHANGED - URL cambiada a %s. -NICK_SET_URL_UNSET - URL no seteada. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED Direccion E-mail cambiada a %s. @@ -475,14 +469,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE No puedes no setear tu direccion e-mail en esta red. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - Numero ICQ seteado a %s. -NICK_SET_ICQ_UNSET - Numero ICQ no seteado. -NICK_SET_ICQ_INVALID - %s no es un numero valido. - # SET GREET responses NICK_SET_GREET_CHANGED Mensaje de bienvenida cambiado a %s. @@ -585,12 +571,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Password for %s changed to %s. -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - URL for %s changed to %s. -NICK_SASET_URL_UNSET - URL %s unset. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED E-mail address for %s changed to %s. @@ -599,14 +579,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE You cannot unset the e-mail on this network. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ number for %s set to %s. -NICK_SASET_ICQ_UNSET - ICQ number for %s unset. -NICK_SASET_ICQ_INVALID - %s is not a valid number. - # SASET GREET responses NICK_SASET_GREET_CHANGED Greet message for %s changed to %s. @@ -751,8 +723,6 @@ NICK_INFO_VHOST vhost: %s NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - ICQ #: %d NICK_INFO_GREET Mensaje de bienvenida: %s NICK_INFO_OPTIONS @@ -1132,6 +1102,10 @@ CHAN_SET_DISABLED Lo siento, el seteo de opciones de canales esta temporalmente deshabilitado. CHAN_SET_UNKNOWN_OPTION Opcion SET %s desconocida. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1151,12 +1125,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED La descripcion de %s cambiada a%s. -# SET URL responses -CHAN_URL_CHANGED - URL para %s cambiada a %s. -CHAN_URL_UNSET - URL para %s no seteada. - # SET EMAIL responses CHAN_EMAIL_CHANGED Direccion e-mail para %s cambiada a %s. @@ -3628,12 +3596,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE Setea el lenguaje con el que Servicios te enviara mensajes -NICK_HELP_CMD_SET_URL - URL Asocia una URL con tu nickname NICK_HELP_CMD_SET_EMAIL EMAIL Asocia un E-mail con tu nickname -NICK_HELP_CMD_SET_ICQ - ICQ Asocia un numero ICQ con tu nickname NICK_HELP_CMD_SET_GREET GREET Asocia un saludo con tu nickname NICK_HELP_CMD_SET_KILL @@ -3681,13 +3645,6 @@ NICK_HELP_SET_LANGUAGE soportados: -NICK_HELP_SET_URL - Sintaxis: SET URL url - - Asocia la URL dada con tu nickname. Esta URL - sera mostrada cuando alguien requiera informacion - sobre tu nick con el comando INFO. - NICK_HELP_SET_EMAIL Sintaxis: SET EMAIL direccion @@ -3695,13 +3652,6 @@ NICK_HELP_SET_EMAIL sera mostrada cuando alguien requiera informacion sobre el canal con el comando INFO. -NICK_HELP_SET_ICQ - Sintaxis: SET ICQ numero - - Asocia el numero ICQ dado con tu nickname. Este - numero sera mostrado cuando alguien solicite - informacion acerca de tu nick con el comando INFO. - NICK_HELP_SET_GREET Sintaxis: SET GREET mensaje @@ -3778,12 +3728,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Set the display of the group in Services NICK_HELP_CMD_SASET_PASSWORD PASSWORD Set the nickname password -NICK_HELP_CMD_SASET_URL - URL Associate a URL with the nickname NICK_HELP_CMD_SASET_EMAIL EMAIL Associate an E-mail address with the nickname -NICK_HELP_CMD_SASET_ICQ - ICQ Associate an ICQ number with the nickname NICK_HELP_CMD_SASET_GREET GREET Associate a greet message with the nickname NICK_HELP_CMD_SASET_KILL @@ -3819,25 +3765,11 @@ NICK_HELP_SASET_PASSWORD Changes the password used to identify as the nick's owner. -NICK_HELP_SASET_URL - Syntax: SASET nickname URL url - - Associates the given URL with the nickname. This URL - will be displayed whenever someone requests information - on the nick with the INFO command. - NICK_HELP_SASET_EMAIL Syntax: SASET nickname EMAIL address Associates the given E-mail address with the nickname. -NICK_HELP_SASET_ICQ - Syntax: SASET nickname ICQ number - - Associates the given ICQ number with the nickname. This - number will be displayed whenever someone requests - information on the nick with the INFO command. - NICK_HELP_SASET_GREET Syntax: SASET nickname GREET message @@ -4373,10 +4305,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Setea el sucesor de un canal CHAN_HELP_CMD_SET_DESC DESC Setea la descripcion del canal -CHAN_HELP_CMD_SET_URL - URL Asocia una URL con el canal -CHAN_HELP_CMD_SET_EMAIL - EMAIL Asocia un E-mail con el canal CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Setea un mensaje a enviar a los usuarios cuando entren al canal @@ -4444,23 +4372,6 @@ CHAN_HELP_SET_DESC Setea la descripcion para el canal, la que es mostrada con los comandos LIST y INFO. -CHAN_HELP_SET_URL - Sintaxis: %s canal URL [url] - - Asocia la URL dada con el canal. Esta URL sera mostrada - cuando alguien solicite informacion sobre el canal con - el comando INFO. Si ningun parametro es dado, - borra la URL actual para el canal. - -CHAN_HELP_SET_EMAIL - Sintaxis: %s canal EMAIL [direccion] - - Asocia la direccion E-mail dada con el canal. - Esta direccion sera mostrada cuando alguien solicite - informacion sobre el canal con el comando INFO. - Si ningun parametro es dado, borra la direccion E-mail - actual para el canal. - CHAN_HELP_SET_ENTRYMSG Sintaxis: %s canal ENTRYMSG [mensaje] @@ -464,12 +464,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Votre langue est maintenant le Français. -# SET URL responses -NICK_SET_URL_CHANGED - L'adresse de votre site est maintenant %s. -NICK_SET_URL_UNSET - L'adresse de votre site a été effacée. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED Votre adresse e-mail est maintenant %s. @@ -478,14 +472,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE Vous ne pouvez pas effacer votre e-mail sur ce réseau. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - Votre numéro ICQ est maintenant %s. -NICK_SET_ICQ_UNSET - Votre numéro ICQ a été effacé. -NICK_SET_ICQ_INVALID - %s n'est pas un nombre valide. - # SET GREET responses NICK_SET_GREET_CHANGED Votre message d'accueil est maintenant %s. @@ -590,12 +576,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Le mot de passe pour %s a été changé en %s. -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - L'URL pour %s a été changé en %s. -NICK_SASET_URL_UNSET - L'URL %s a été effacé. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED L'adresse E-mail pour %s a été changée en %s. @@ -604,14 +584,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE Vous ne pouvez pas configurer d'E-mail sur ce réseau. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - Le numéro ICQ pour %s a été changé en %s. -NICK_SASET_ICQ_UNSET - Le numéro ICQ pour %s a été effacé. -NICK_SASET_ICQ_INVALID - %s n'est pas un numéro ICQ valide. - # SASET GREET responses NICK_SASET_GREET_CHANGED Le message d'accueil pour %s a été changé en %s @@ -750,16 +722,12 @@ NICK_INFO_LAST_SEEN Dernière connexion: %s NICK_INFO_LAST_QUIT Dernier déconnexion: %s -NICK_INFO_URL - Adresse de son site: %s NICK_INFO_EMAIL Adresse e-mail: %s NICK_INFO_VHOST vhost: %s NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - Numéro ICQ: %d NICK_INFO_GREET Message d'accueil: %s NICK_INFO_OPTIONS @@ -1144,6 +1112,10 @@ CHAN_SET_DISABLED Désolé, la configuration des options du canal est temporairement désactivée. CHAN_SET_UNKNOWN_OPTION Option SET %s inconnue. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1163,12 +1135,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED La description de %s est maintenant %s. -# SET URL responses -CHAN_URL_CHANGED - L'adresse du site de %s est maintenant %s. -CHAN_URL_UNSET - L'adresse du site de %s a été effacée. - # SET EMAIL responses CHAN_EMAIL_CHANGED L'e-mail de %s est maintenant %s. @@ -3683,12 +3649,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE Change la langue dans laquelle les Services vous envoient leurs messages -NICK_HELP_CMD_SET_URL - URL Associe une adresse de site à votre pseudo NICK_HELP_CMD_SET_EMAIL EMAIL Associe une e-mail à votre pseudo -NICK_HELP_CMD_SET_ICQ - ICQ Associe un numéro ICQ à votre pseudo NICK_HELP_CMD_SET_GREET GREET Associe un message d'accueil à votre pseudo NICK_HELP_CMD_SET_KILL @@ -3734,13 +3696,6 @@ NICK_HELP_SET_LANGUAGE commande que vous avez envoyé). nombre doit être choisi dans la liste suivante des langues supportées: -NICK_HELP_SET_URL - Syntaxe: SET URL adresse - - Associe l'adresse de votre site web à votre pseudo. Cette adresse - sera affichée lorsque quelqu'un demandera des informations sur - votre pseudo avec la commande INFO. - NICK_HELP_SET_EMAIL Syntaxe: SET EMAIL adresse @@ -3748,13 +3703,6 @@ NICK_HELP_SET_EMAIL sera affichée lorsque quelqu'un demandera des informations sur votre pseudo avec la commande INFO. -NICK_HELP_SET_ICQ - Syntaxe: SET ICQ numéro - - Associe le numéro ICQ donné à votre pseudo. Ce numéro - sera affiché lorsque quelqu'un demandera des informations sur - votre pseudo avec la commande INFO. - NICK_HELP_SET_GREET Syntaxe: SET GREET message @@ -3832,12 +3780,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Affiche les pseudos du groupe du pseudo donné NICK_HELP_CMD_SASET_PASSWORD PASSWORD Change le mot de passe du pseudo donné -NICK_HELP_CMD_SASET_URL - URL Associe une url au pseudo donné NICK_HELP_CMD_SASET_EMAIL EMAIL Associe une email au pseudo donné -NICK_HELP_CMD_SASET_ICQ - ICQ Associe un compte ICQ au pseudo donné NICK_HELP_CMD_SASET_GREET GREET Associe un message d'accueil au pseudo donné NICK_HELP_CMD_SASET_KILL @@ -3875,25 +3819,11 @@ NICK_HELP_SASET_PASSWORD Change le mot de passe utilisé pour s'identifier comme propiétaire du pseudo. -NICK_HELP_SASET_URL - Syntaxe: SASET pseudo URL url - - Associe l'URL donnée au pseudo. Cette URL sera fournie - à toutes les personnes demandant des informations sur - le pseudo via la commande INFO. - NICK_HELP_SASET_EMAIL Syntaxe: SASET pseudo EMAIL adresse-email Associe l'E-mail donnée au pseudo. -NICK_HELP_SASET_ICQ - Syntaxe: SASET pseudo ICQ numéro - - Associe le numéro ICQ donné au pseudo. Ce numéro ICQ sera fourni - à toutes les personnes demandant des informations sur le pseudo - via la commande INFO. - NICK_HELP_SASET_GREET Syntaxe: SASET pseudo GREET message @@ -4435,10 +4365,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Définit le successeur d'un canal CHAN_HELP_CMD_SET_DESC DESC Définit la description du canal -CHAN_HELP_CMD_SET_URL - URL Associe un site avec un canal -CHAN_HELP_CMD_SET_EMAIL - EMAIL Associe un E-mail avec le canal CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Définit un message envoyé aux utilisateurs qui entrent sur le canal @@ -4504,22 +4430,6 @@ CHAN_HELP_SET_DESC Définit la description du canal, qui apparait dans les commandes LIST et INFO. -CHAN_HELP_SET_URL - Syntaxe: %s canal URL [adresse] - - Associe l'adresse de site web donnée avec le canal. Cette adresse - sera affichée à chaque fois que quelqu'un demande des informations - sur le canal avec la commande INFO. Si aucun paramètre - n'est donné, supprime l'adresse de site du canal. - -CHAN_HELP_SET_EMAIL - Syntaxe: %s canal EMAIL [adresse] - - Associe l'E-mail donné avec le canal. Cette - E-mail sera affiché lorsque quelqu'un demande des informations - sur le canal avec la commande INFO. Si aucun paramètre - n'est donné, supprime l'E-mail actuel du canal. - CHAN_HELP_SET_ENTRYMSG Syntaxe: %s canal ENTRYMSG [message] @@ -457,12 +457,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Ç ãëþóóá Üëëáîå óå ÅëëçíéêÜ. -# SET URL responses -NICK_SET_URL_CHANGED - URL Üëëáîå óå %s. -NICK_SET_URL_UNSET - URL äåí õðÜñ÷åé. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED Ç äéåýèõíóç ôïõ e-mail Üëëáîå óå %s. @@ -471,14 +465,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE Äåí ìðïñåßò íá áðåíåñãïðïéÞóåéò ôçí äéåýèõíóç ôïõ e-mail óå áõôü ôï äßêôõï. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - Ôï íïýìåñï ôïõ ICQ Üëëáîå óå %s. -NICK_SET_ICQ_UNSET - Ôï íïýìåñï ôïõ ICQ áðåíåñãïðïéÞèçêå. -NICK_SET_ICQ_INVALID - %s äåí åßíáé óùóôüò áñéèìüò. - # SET GREET responses NICK_SET_GREET_CHANGED Ôï ìÞíõìá ÷áéñåôéóìïý Üëëáîå óå %s. @@ -581,12 +567,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Password for %s changed to %s. -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - URL for %s changed to %s. -NICK_SASET_URL_UNSET - URL %s unset. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED E-mail address for %s changed to %s. @@ -595,14 +575,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE You cannot unset the e-mail on this network. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ number for %s set to %s. -NICK_SASET_ICQ_UNSET - ICQ number for %s unset. -NICK_SASET_ICQ_INVALID - %s is not a valid number. - # SASET GREET responses NICK_SASET_GREET_CHANGED Greet message for %s changed to %s. @@ -747,8 +719,6 @@ NICK_INFO_VHOST vhost: %s NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - ICQ #: %d NICK_INFO_GREET ÌÞíõìá ÷áéñåôéóìïý: %s NICK_INFO_OPTIONS @@ -1132,6 +1102,10 @@ CHAN_SET_DISABLED Óõãíþìç, ïé åðéëïãÝò ãéá ôçí ñýèìéóç ôùí êáíáëéþí åßíáé áðåíåñãïðïéçìÝíåò. CHAN_SET_UNKNOWN_OPTION ¢ãíùóôç SET åðéëïãÞ %s. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1151,12 +1125,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED ÐåñéãñáöÞ ôïõ %s Üëëáîå óå %s. -# SET URL responses -CHAN_URL_CHANGED - URL ôïõ %s Üëëáîå óå %s. -CHAN_URL_UNSET - URL ôïõ %s äåí Ý÷åé ïñéóôåß. - # SET EMAIL responses CHAN_EMAIL_CHANGED E-mail äéåýèõíóç ôïõ %s Üëëáîå óå %s. @@ -3655,12 +3623,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE ÁëëÜæåé ôç ãëþóóá ðïõ ÷ñçóéìïðïéïýí ïé õðçñåóßåò üôáí ôéò ÷ñçóéìïðïéåßôå -NICK_HELP_CMD_SET_URL - URL Óõó÷åôßæåé Ýíá URL ìå ôï øåõäþíõìü óáò NICK_HELP_CMD_SET_EMAIL EMAIL Óõó÷åôßæåé ìßá äéåýèõíóç e-mail ìå ôï øåõäþíõìü óáò -NICK_HELP_CMD_SET_ICQ - ICQ Óõó÷åôßæåé Ýíá íïýìåñï ICQ ìå ôï øåõäþíõìü óáò NICK_HELP_CMD_SET_GREET GREET Óõó÷åôßæåé Ýíá ìÞíõìá ÷áéñåôéóìïý ìå ôï øåõäþíõìü óáò NICK_HELP_CMD_SET_KILL @@ -3706,13 +3670,6 @@ NICK_HELP_SET_LANGUAGE õðïóôçñéæüìåíùí ãëùóóþí: -NICK_HELP_SET_URL - Óýíôáîç: SET URL url - - ÐñïóèÝôåé óôéò ðëçñïöïñßåò ôïõ øåõäþíõìïý óïõ ôï URL ðïõ ôïõ äßíåéò. Áõôü - ôï URL èá åìöáíßæåôáé êÜèå öïñÜ ðïõ êÜðïéïò èá èÝëåé íá äåé êÜðïéåó ðëçñïöïñßåò - ãéá ôï øåõäþíõìï óïõ ÷ñçóéìïðïéþíôáò ôçí åíôïëÞ INFO. - NICK_HELP_SET_EMAIL Óýíôáîç: SET EMAIL äéåýèõíóç @@ -3720,13 +3677,6 @@ NICK_HELP_SET_EMAIL ÁõôÞ ç äéåýèõíóç èá åìöáíßæåôáé êÜèå öïñÜ ðïõ êÜðïéïò èá êïéôÜæåé ðëçñïöïñßåò óôï êáíÜëé ìå ôçí åíôïëÞ INFO. -NICK_HELP_SET_ICQ - Óýíôáîç: SET ICQ number - - ÐñïóèÝôåé óôéò ðëçñïöïñßåò ôïõ øåõäþíõìïý óïõ ôï íïýìåñï ôïõ ICQ. Áõôü - ôï íïýìåñï èá åìöáíßæåôáé êÜèå öïñÜ ðïõ êÜðïéïò èá èÝëåé íá äåé êÜðïéåó ðëçñïöïñßåò - ãéá ôï øåõäþíõìï óïõ ÷ñçóéìïðïéþíôáò ôçí åíôïëÞ INFO. - NICK_HELP_SET_GREET Óýíôáîç: SET GREET message @@ -3809,12 +3759,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Set the display of the group in Services NICK_HELP_CMD_SASET_PASSWORD PASSWORD Set the nickname password -NICK_HELP_CMD_SASET_URL - URL Associate a URL with the nickname NICK_HELP_CMD_SASET_EMAIL EMAIL Associate an E-mail address with the nickname -NICK_HELP_CMD_SASET_ICQ - ICQ Associate an ICQ number with the nickname NICK_HELP_CMD_SASET_GREET GREET Associate a greet message with the nickname NICK_HELP_CMD_SASET_KILL @@ -3850,25 +3796,11 @@ NICK_HELP_SASET_PASSWORD Changes the password used to identify as the nick's owner. -NICK_HELP_SASET_URL - Syntax: SASET nickname URL url - - Associates the given URL with the nickname. This URL - will be displayed whenever someone requests information - on the nick with the INFO command. - NICK_HELP_SASET_EMAIL Syntax: SASET nickname EMAIL address Associates the given E-mail address with the nickname. -NICK_HELP_SASET_ICQ - Syntax: SASET nickname ICQ number - - Associates the given ICQ number with the nickname. This - number will be displayed whenever someone requests - information on the nick with the INFO command. - NICK_HELP_SASET_GREET Syntax: SASET nickname GREET message @@ -4391,10 +4323,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR ÁëëÜæåé ôïí successor ôïõ êáíáëéïý CHAN_HELP_CMD_SET_DESC DESC ÁëëÜæåé ôçí ðåñéãñáöÞ ôïõ êáíáëéïý -CHAN_HELP_CMD_SET_URL - URL Óõó÷åôßæåé Ýíá URL ìå ôï êáíÜëé -CHAN_HELP_CMD_SET_EMAIL - EMAIL Óõó÷åôßæåé Ýíá E-mail ìå ôï êáíÜëé CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG ÁëëÜæåé ôï ìÞíõìá åéóáãùãÞò ðïõ óôÝëíåôå óå üëïõò ôïõò ÷ñÞóôåò ðïõ ìðÝíïõí óôï êáíÜëé @@ -4456,23 +4384,6 @@ CHAN_HELP_SET_DESC ÁëëÜæåôå ôçí ðåñéãñáöÞ ôïõ êáíáëéïý, ç ïðïßá öÝíåôáé ìå ôçí åíôïëÞ LIST êáé INFO. -CHAN_HELP_SET_URL - Óýíôáîç: %s êáíÜëé URL [url] - - Óõó÷åôßæåé Ýíá URL ìå ôï êáíÜëé. Áõôü ôï URL èá - åìöáíßæåôáé üôáí êÜðïéïò èá êïéôÜæåéò ôéò ðëçñïöïñßåò ôïõ êáíáëéïý - ìå ôçí åíôïëÞ INFO. Áí äåí äùèåß êáìßá ðáñÜìåôñïò, - èá óâçóôåß ïðïéïäÞðïôå URL åß÷å äùèåß ðáëáéüôåñá óôï êáíÜëé. - -CHAN_HELP_SET_EMAIL - Óýíôáîç: %s êáíÜëé EMAIL [äéåýèõíóç] - - Óõó÷åôßæåé ìéá äéåýèõíóç E-mail ìå ôï êáíÜëé. - ÁõôÞ ç äéåýèõíóç åìöáíßæåôáé üôáí êÜðïéïò èÝëåé íá äåé - äéÜöïñåò ðëçñïöïñßåò ó÷åôéêÜ ìå ôï êáíÜëé, ìå ôçí åíôïëÞ INFO. - Áí äåí äùèåß êáìßá ðáñÜìåôñïò, äéáãñÜöåé ïðïéáäÞðïôå äéåýèõíóç E-mail - åß÷å äùèåß óôï êáíÜëé. - CHAN_HELP_SET_ENTRYMSG Óýíôáîç: %s êáíÜëé ENTRYMSG [ìÞíõìá] diff --git a/lang/hun.l b/lang/hun.l index d2b4286ca..59a0428c2 100644 --- a/lang/hun.l +++ b/lang/hun.l @@ -456,12 +456,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Új nyelvezet: Magyar. -# SET URL válaszok -NICK_SET_URL_CHANGED - URL megváltoztatva: %s. -NICK_SET_URL_UNSET - URL törölve. - # SET EMAIL válaszok NICK_SET_EMAIL_CHANGED E-mail cím megváltoztatva: %s. @@ -470,14 +464,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE Nem törölheted ezen a hálózaton az e-mail címed. -# SET ICQ válaszok -NICK_SET_ICQ_CHANGED - ICQ számod megváltoztatva: %s. -NICK_SET_ICQ_UNSET - ICQ szám törölve. -NICK_SET_ICQ_INVALID - %s nem érvényes szám. - # SET GREET válaszok NICK_SET_GREET_CHANGED Köszöntõ üzenet megváltoztatva: %s. @@ -578,12 +564,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Password for %s changed to %s. -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - URL for %s changed to %s. -NICK_SASET_URL_UNSET - URL %s unset. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED E-mail address for %s changed to %s. @@ -592,14 +572,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE You cannot unset the e-mail on this network. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ number for %s set to %s. -NICK_SASET_ICQ_UNSET - ICQ number for %s unset. -NICK_SASET_ICQ_INVALID - %s is not a valid number. - # SASET GREET responses NICK_SASET_GREET_CHANGED Greet message for %s changed to %s. @@ -744,8 +716,6 @@ NICK_INFO_VHOST vhost: %s NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - ICQ #: %d NICK_INFO_GREET Köszöntõ üzenet: %s NICK_INFO_OPTIONS @@ -1123,6 +1093,10 @@ CHAN_SET_DISABLED A csatornák opcióinak beállitása jelenleg szünetel. CHAN_SET_UNKNOWN_OPTION Ismeretlen SET opció %s. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER válaszok CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1142,12 +1116,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED %s csatorna leírás megváltoztatva: %s. -# SET URL válaszok -CHAN_URL_CHANGED - A megadott csatorna (%s) új URL címe: %s. -CHAN_URL_UNSET - A megadott csatorna %s URL címe törölve. - # SET EMAIL válaszok CHAN_EMAIL_CHANGED A megadott csatorna (%s) új E-mail címe: %s. @@ -3579,12 +3547,8 @@ NICK_HELP_CMD_SET_PASSWORD PASSWORD Set your nickname password NICK_HELP_CMD_SET_LANGUAGE LANGUAGE A szervíz nyelvezetének megválasztása -NICK_HELP_CMD_SET_URL - URL Egy URL társítása a nicknevedhez NICK_HELP_CMD_SET_EMAIL EMAIL Egy E-mail cím társítása a nicknevedhez -NICK_HELP_CMD_SET_ICQ - ICQ ICQ szám társítása a nicknevedhez NICK_HELP_CMD_SET_GREET GREET Köszöntõ üzenet társítása a nicknevedhez NICK_HELP_CMD_SET_KILL @@ -3627,12 +3591,6 @@ NICK_HELP_SET_LANGUAGE írja.(Például: amikor válaszol egy parancsra, amit te adtál ki). A sorszám alapján válaszd ki a nyelvezetet: -NICK_HELP_SET_URL - Syntax: SET URL url - - Egy URL társítása a nicknevedhez. Ez az URL szerepelni fog - az INFO-idban, amit bárki lekérhet az INFO paranccsal. - NICK_HELP_SET_EMAIL Syntax: SET EMAIL cím @@ -3640,13 +3598,6 @@ NICK_HELP_SET_EMAIL Ez az E-mail cím szerepelni fog az INFO-id között, amit bárki lekérhet az INFO paranccsal. -NICK_HELP_SET_ICQ - Syntax: SET ICQ szám - - Az ICQ számod társítása a nicknevedhez. - Ez a szám szerepelni fog az INFO-id között, - amit bárki lekérhet az INFO paranccsal. - NICK_HELP_SET_GREET Syntax: SET GREET üzenet @@ -3727,12 +3678,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Set the display of the group in Services NICK_HELP_CMD_SASET_PASSWORD PASSWORD Set the nickname password -NICK_HELP_CMD_SASET_URL - URL Associate a URL with the nickname NICK_HELP_CMD_SASET_EMAIL EMAIL Associate an E-mail address with the nickname -NICK_HELP_CMD_SASET_ICQ - ICQ Associate an ICQ number with the nickname NICK_HELP_CMD_SASET_GREET GREET Associate a greet message with the nickname NICK_HELP_CMD_SASET_KILL @@ -3768,25 +3715,11 @@ NICK_HELP_SASET_PASSWORD Changes the password used to identify as the nick's owner. -NICK_HELP_SASET_URL - Syntax: SASET nickname URL url - - Associates the given URL with the nickname. This URL - will be displayed whenever someone requests information - on the nick with the INFO command. - NICK_HELP_SASET_EMAIL Syntax: SASET nickname EMAIL address Associates the given E-mail address with the nickname. -NICK_HELP_SASET_ICQ - Syntax: SASET nickname ICQ number - - Associates the given ICQ number with the nickname. This - number will be displayed whenever someone requests - information on the nick with the INFO command. - NICK_HELP_SASET_GREET Syntax: SASET nickname GREET message @@ -4314,10 +4247,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR A successor megadása CHAN_HELP_CMD_SET_DESC DESC A szobameghatározás állítás -CHAN_HELP_CMD_SET_URL - URL Egy URL társítása a szobához -CHAN_HELP_CMD_SET_EMAIL - EMAIL Egy E-mail cím társítása a szobához CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG A szoba belépo üzenetének állítása @@ -4377,21 +4306,6 @@ CHAN_HELP_SET_DESC Beállítható a szoba általános meghatározása, ami látszódni fog a LIST és INFO parancs használata esetén. -CHAN_HELP_SET_URL - Syntax: %s #szoba URL [url] - - Egy URL társítása a szobához. Ha van honlapja a szobának, - akkor bárki megtudhatja, ha lekérte a szobáról az INFO-t. - Ha nincs megadva paraméter, akkor törli a meglévõ URL-t. - -CHAN_HELP_SET_EMAIL - Syntax: %s #szoba EMAIL [emailcím] - - Egy E-mail cím társítása a szobához. Ha van E-mail címe - a szobának; akkor azt bárki megtudhatja, ha lekérte - a szobáról az INFO-t. Ha nincs megadva paraméter akkor - törli a meglévõ e-mail címet. - CHAN_HELP_SET_ENTRYMSG Syntax: %s #szoba ENTRYMSG [üzenet] @@ -448,12 +448,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Lingua cambiata a Italiano. -# SET URL responses -NICK_SET_URL_CHANGED - URL cambiato a %s. -NICK_SET_URL_UNSET - Impostazione dell'URL annullata. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED Indirizzo e-mail cambiato a %s. @@ -462,14 +456,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE Non puoi annullare l'impostazione dell'e-mail. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - Numero ICQ impostato a %s. -NICK_SET_ICQ_UNSET - Impostazione del numero ICQ annullata. -NICK_SET_ICQ_INVALID - %s non è un numero valido. - # SET GREET responses NICK_SET_GREET_CHANGED Messaggio di benvenuto impostato a %s. @@ -570,12 +556,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Password per %s cambiata in %s. -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - URL per %s cambiato in %s. -NICK_SASET_URL_UNSET - URL %s rimosso. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED Indirizzo e-mail per %s cambiato in %s. @@ -584,14 +564,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE Non puoi rimuovere l'indirizzo e-mail su questo network. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - Numero ICQ per %s impostato a %s. -NICK_SASET_ICQ_UNSET - Numero ICQ per %s rimosso. -NICK_SASET_ICQ_INVALID - %s non è un numero valido. - # SASET GREET responses NICK_SASET_GREET_CHANGED Messaggio di saluto per %s cambiato in %s. @@ -736,8 +708,6 @@ NICK_INFO_VHOST vhost: %s NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - Numero ICQ: %d NICK_INFO_GREET Messaggio di saluto (greet): %s NICK_INFO_OPTIONS @@ -1115,6 +1085,10 @@ CHAN_SET_DISABLED Spiacente, l'impostazione delle opzioni dei canali è temporaneamente disabilitata. CHAN_SET_UNKNOWN_OPTION Opzione SET %s sconosciuta. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1134,12 +1108,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED La descrizione di %s è stata impostata a %s. -# SET URL responses -CHAN_URL_CHANGED - L'URL di %s è stato impostato a %s. -CHAN_URL_UNSET - L'URL di %s è stato annullato. - # SET EMAIL responses CHAN_EMAIL_CHANGED L'indirizzo e-mail di %s è stato impostato a %s. @@ -3538,8 +3506,6 @@ NICK_HELP_CMD_SET_GREET GREET Associa un messaggio di saluto al tuo nick NICK_HELP_CMD_SET_HIDE HIDE Nasconde alcune informazioni sul tuo nick -NICK_HELP_CMD_SET_ICQ - ICQ Associa un numero ICQ al tuo nick NICK_HELP_CMD_SET_KILL KILL Attiva o disattiva la protezione NICK_HELP_CMD_SET_LANGUAGE @@ -3552,8 +3518,6 @@ NICK_HELP_CMD_SET_PRIVATE PRIVATE Nasconde il nick dalla lista (%R%S LIST) NICK_HELP_CMD_SET_SECURE SECURE Attiva o disattiva la sicurezza -NICK_HELP_CMD_SET_URL - URL Associa un URL al tuo nick NICK_HELP_CMD_SET_AUTOOP AUTOOP Should services op you automatically. NICK_HELP_SET_TAIL @@ -3587,13 +3551,6 @@ NICK_HELP_SET_LANGUAGE elenca le lingue supportate: -NICK_HELP_SET_URL - Sintassi: SET URL url - - Associa l'URL indicato al proprio nick. Questo URL - sarà mostrato quando qualcuno richiede informazioni - sul proprio nick con il comando INFO. - NICK_HELP_SET_EMAIL Sintassi: SET EMAIL indirizzo @@ -3601,13 +3558,6 @@ NICK_HELP_SET_EMAIL Questo indirizzo sarà mostrato quando qualcuno richiede informazioni sul proprio nick con il comando INFO. -NICK_HELP_SET_ICQ - Sintassi: SET ICQ numero - - Associa il numero ICQ specificato al proprio nick. - Questo indirizzo sarà mostrato quando qualcuno richiede - informazioni sul proprio nick con il comando INFO. - NICK_HELP_SET_GREET Sintassi: SET GREET messaggio @@ -3683,12 +3633,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Imposta il nome del gruppo NICK_HELP_CMD_SASET_PASSWORD PASSWORD Imposta la password del nick -NICK_HELP_CMD_SASET_URL - URL Associa un URL al nickname NICK_HELP_CMD_SASET_EMAIL EMAIL Associa un indirizzo e-mail al nickname -NICK_HELP_CMD_SASET_ICQ - ICQ Associa un numero ICQ al nickname NICK_HELP_CMD_SASET_GREET GREET Associa un messaggio di saluto al nickname NICK_HELP_CMD_SASET_KILL @@ -3724,25 +3670,11 @@ NICK_HELP_SASET_PASSWORD Cambia la password utilizzata per identificarsi come proprietario del nick. -NICK_HELP_SASET_URL - Sintassi: SASET nickname URL url - - Associa l'URL indicato al nick. Questo URL - sarà mostrato quando qualcuno richiede informazioni - sul nick con il comando INFO. - NICK_HELP_SASET_EMAIL Sintassi: SASET nickname EMAIL indirizzo Associa l'indirizzo e-mail specificato al nickname. -NICK_HELP_SASET_ICQ - Sintassi: SASET nickname ICQ numero - - Associa il numero ICQ specificato al nick. - Questo indirizzo sarà mostrato quando qualcuno richiede - informazioni sul nick con il comando INFO. - NICK_HELP_SASET_GREET Sintassi: SASET nickname GREET messaggio @@ -4266,10 +4198,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Imposta il successore del fondatore del canale CHAN_HELP_CMD_SET_DESC DESC Imposta la descrizione del canale -CHAN_HELP_CMD_SET_URL - URL Associa un URL al canale -CHAN_HELP_CMD_SET_EMAIL - EMAIL Associa un indirizzo e-mail al canale CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Imposta un messaggio che sarà inviato agli utenti che entrano nel canale @@ -4336,23 +4264,6 @@ CHAN_HELP_SET_DESC Imposta la descrizione del canale, che viene mostrata con i comandi LIST e INFO. -CHAN_HELP_SET_URL - Sintassi: %s canale URL [url] - - Associa l'URL specificato al canale. Questo URL sarà - mostrato quando qualcuno richiede informazioni relative - al canale con il comando INFO. Se non viene specificato - nessun URL, l'URL attuale del canale viene eliminato. - -CHAN_HELP_SET_EMAIL - Sintassi: %s canale EMAIL [indirizzo] - - Associa l'indirizzo e-mail specificato al canale. Questo - indirizzo sarà mostrato quando qualcuno richiede - informazioni relative al canale con il comando INFO. Se - non viene specificato nessun indirizzo, l'indirizzo attuale - del canale viene eliminato. - CHAN_HELP_SET_ENTRYMSG Sintassi: %s canale ENTRYMSG [messaggio] @@ -460,12 +460,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Taal veranderd in Nederlands. -# SET URL responses -NICK_SET_URL_CHANGED - URL veranderd in %s. -NICK_SET_URL_UNSET - URL verwijderd. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED E-mail adres veranderd in %s. @@ -474,14 +468,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE Je kan je e-mail adres niet verwijderen op dit netwerk. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - ICQ nummer veranderd in %s. -NICK_SET_ICQ_UNSET - ICQ nummer verwijderd. -NICK_SET_ICQ_INVALID - %s is geen geldig nummer. - # SET GREET responses NICK_SET_GREET_CHANGED Groet veranderd in %s. @@ -585,12 +571,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Password for %s changed to %s. -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - URL for %s changed to %s. -NICK_SASET_URL_UNSET - URL %s unset. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED E-mail address for %s changed to %s. @@ -599,14 +579,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE You cannot unset the e-mail on this network. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ number for %s set to %s. -NICK_SASET_ICQ_UNSET - ICQ number for %s unset. -NICK_SASET_ICQ_INVALID - %s is not a valid number. - # SASET GREET responses NICK_SASET_GREET_CHANGED Greet message for %s changed to %s. @@ -751,8 +723,6 @@ NICK_INFO_VHOST vhost: %s NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - ICQ #: %d NICK_INFO_GREET Groet-bericht: %s NICK_INFO_OPTIONS @@ -1130,6 +1100,10 @@ CHAN_SET_DISABLED Sorry, kanaal opties instellen is tijdelijk uitgeschakeld. CHAN_SET_UNKNOWN_OPTION Onbekende SET optie %s. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1149,12 +1123,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED Beschrijving van %s veranderd in %s. -# SET URL responses -CHAN_URL_CHANGED - URL voor %s veranderd in %s. -CHAN_URL_UNSET - URL voor %s verwijderd. - # SET EMAIL responses CHAN_EMAIL_CHANGED E-mail adres voor %s veranderd in %s. @@ -3607,12 +3575,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE Selecteer de taal die Services zal gebruiken voor het versturen van berichten naar jou -NICK_HELP_CMD_SET_URL - URL Associeer een URL met je nick NICK_HELP_CMD_SET_EMAIL EMAIL Associeer een E-mail adres met je nick -NICK_HELP_CMD_SET_ICQ - ICQ Associeer een ICQ nummer met je nick NICK_HELP_CMD_SET_GREET GREET Associeer een begroeting met je nick NICK_HELP_CMD_SET_KILL @@ -3657,13 +3621,6 @@ NICK_HELP_SET_LANGUAGE op een commando dat je hebt verzonden). nummer moet gekozen worden uit de volgende lijst van ondersteunde talen: -NICK_HELP_SET_URL - Gebruik: SET URL url - - Associeert de gegeven URL met je nick. Deze URL zal worden - weergegeven wanneer iemand informatie over jouw nick - opvraagt met het INFO commando. - NICK_HELP_SET_EMAIL Gebruik: SET EMAIL adres @@ -3671,13 +3628,6 @@ NICK_HELP_SET_EMAIL zal worden weergegeven wanneer iemand informatie over je nick opvraagt met het INFO commando. -NICK_HELP_SET_ICQ - Gebruik: SET ICQ nummer - - Associeert het gegeven ICQ nummer met je nick. Dit nummer - zal worden weergegeven wanneer iemand informatie opvraagt - over je nick met het INFO commando. - NICK_HELP_SET_GREET Gebruik: SET GREET bericht @@ -3754,12 +3704,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Set the display of the group in Services NICK_HELP_CMD_SASET_PASSWORD PASSWORD Set the nickname password -NICK_HELP_CMD_SASET_URL - URL Associate a URL with the nickname NICK_HELP_CMD_SASET_EMAIL EMAIL Associate an E-mail address with the nickname -NICK_HELP_CMD_SASET_ICQ - ICQ Associate an ICQ number with the nickname NICK_HELP_CMD_SASET_GREET GREET Associate a greet message with the nickname NICK_HELP_CMD_SASET_KILL @@ -3795,25 +3741,11 @@ NICK_HELP_SASET_PASSWORD Changes the password used to identify as the nick's owner. -NICK_HELP_SASET_URL - Syntax: SASET nickname URL url - - Associates the given URL with the nickname. This URL - will be displayed whenever someone requests information - on the nick with the INFO command. - NICK_HELP_SASET_EMAIL Syntax: SASET nickname EMAIL address Associates the given E-mail address with the nickname. -NICK_HELP_SASET_ICQ - Syntax: SASET nickname ICQ number - - Associates the given ICQ number with the nickname. This - number will be displayed whenever someone requests - information on the nick with the INFO command. - NICK_HELP_SASET_GREET Syntax: SASET nickname GREET message @@ -4350,10 +4282,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Stelt de opvolger van het kanaal in CHAN_HELP_CMD_SET_DESC DESC Stelt de kanaalbeschrijving in -CHAN_HELP_CMD_SET_URL - URL Associeer een URL met het kanaal -CHAN_HELP_CMD_SET_EMAIL - EMAIL Associate een E-mail adres met het kanaal CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Stel een bericht in dat naar de gebruikers wordt gestuurd zodra ze het kanaal binnekomen @@ -4419,23 +4347,6 @@ CHAN_HELP_SET_DESC Stelt de beschrijving van een kanaal in, die weergegeven wordt door de LIST en INFO commando's. -CHAN_HELP_SET_URL - Gebruik: %s kanaal URL [url] - - Associeer de gegeven URL met het kanaal. Deze URL zal worden - weergegeven wanneer iemand informatie over het kanaal op- - vraagt met het INFO commando. Als er geen paramenter wordt - wordt de URL voor het kanaal verwijderd. - -CHAN_HELP_SET_EMAIL - Gebruik: %s kanaal EMAIL [adres] - - Associeer het gegeven e-mail adres met het kanaal. Dit adres - zal worden weergegeven wanneer iemand informatie over het - kanaal opvraagt met het INFO commando. Als er geen para- - menter wordt gegeven wordt het e-mail adres voor het kanaal - verwijderd. - CHAN_HELP_SET_ENTRYMSG Gebruik: %s kanaal ENTRYMSG [bericht] @@ -557,13 +557,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Jêzyk zosta³ zmieniony na Polski. -# SET URL responses -NICK_SET_URL_CHANGED - Adres www zosta³ zmieniony na %s. - -NICK_SET_URL_UNSET - Adres www zosta³ usuniêty. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED Adres e-mail zosta³ zmieniony na %s. @@ -575,17 +568,6 @@ NICK_SET_EMAIL_UNSET_IMPOSSIBLE Nie mo¿esz usuwaæ adresu e-mail w tej sieci. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - Numer ICQ zosta³ zmieniony na %s. - -NICK_SET_ICQ_UNSET - Numer ICQ zosta³ usuniêty. - -NICK_SET_ICQ_INVALID - %s nie jest prawid³owym numerem. - - # SET GREET responses NICK_SET_GREET_CHANGED Wiadomo¶æ powitalna zosta³a zmieniona na: @@ -718,13 +700,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Has³o dla %s zosta³o zmienione na %s. -# SASET URL responses -NICK_SASET_URL_CHANGED - Adres www osoby %s zosta³ zmieniony na %s. - -NICK_SASET_URL_UNSET - Adres www osoby %s zosta³ usuniêty. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED Adres e-mail osoby %s zosta³ zmieniony na %s. @@ -736,17 +711,6 @@ NICK_SASET_EMAIL_UNSET_IMPOSSIBLE Nie mo¿esz usuwaæ adresu e-mail w tej sieci. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - Numer ICQ osoby %s zosta³ zmieniony na %s. - -NICK_SASET_ICQ_UNSET - Numer ICQ osoby %s zosta³ usuniêty. - -NICK_SASET_ICQ_INVALID - %s nie jest prawid³owym numerem. - - # SASET GREET responses NICK_SASET_GREET_CHANGED Wiadomo¶æ powitalna osoby %s zosta³a zmieniona na %s. @@ -941,9 +905,6 @@ NICK_INFO_VHOST NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - Numer ICQ: %d - NICK_INFO_GREET Powitanie: %s @@ -1434,6 +1395,12 @@ CHAN_SET_DISABLED CHAN_SET_UNKNOWN_OPTION Nieznana opcja komendy SET: %s. +CHAN_SETTING_CHANGED + %s for %s set to %s. + +CHAN_SETTING_UNSET + %s for %s unset. + # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS %s posiada za du¿o zarejestrowanych kana³ów. @@ -1455,13 +1422,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED Opis kana³u %s zosta³ zmieniony na %s. -# SET URL responses -CHAN_URL_CHANGED - Adres www dla kana³u %s zosta³ zmieniony na %s. - -CHAN_URL_UNSET - Adres www dla kana³u %s zosta³ usuniêty. - # SET EMAIL responses CHAN_EMAIL_CHANGED Adres e-mail kana³u %s zosta³ zmieniony na %s. @@ -4588,12 +4548,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE Ustawia jêzyk w którym serwisy bêd± wysy³a³y komunikaty -NICK_HELP_CMD_SET_URL - URL Przypisuje adres www do nicka NICK_HELP_CMD_SET_EMAIL EMAIL Przypisuje adres e-mail do nicka -NICK_HELP_CMD_SET_ICQ - ICQ Przypisuje numer ICQ do nicka NICK_HELP_CMD_SET_GREET GREET Przypisuje komunikat powitalny do nicka NICK_HELP_CMD_SET_KILL @@ -4638,13 +4594,6 @@ NICK_HELP_SET_LANGUAGE wys³an± przez Ciebie komendê). Numer mo¿e byæ wybrany z poni¿szej listy obs³ugiwanych jêzyków: -NICK_HELP_SET_URL - Sk³adnia: SET URL adres - - Przypisuje podany adres strony www nickowi. - Ten adres bêdzie siê pokazywa³ w opisie Twojego - nicka dostêpnym po u¿yciu polecenia INFO. - NICK_HELP_SET_EMAIL Sk³adnia: SET EMAIL adres @@ -4652,14 +4601,6 @@ NICK_HELP_SET_EMAIL bêdzie wy¶wietlany przy opisie Twojego nicka dostêpnym przy u¿yciu komendy INFO. -NICK_HELP_SET_ICQ - Sk³adnia: SET ICQ numer - - Przypisuje numer ICQ Twojemu nickowi, który - bêdzie wy¶wietlany przy opisie Twojego nicka - dostêpnym przy u¿yciu komendy INFO. - - NICK_HELP_SET_GREET Sk³adnia: SET GREET wiadomo¶æ @@ -4743,12 +4684,8 @@ NICK_HELP_CMD_SASET_PASSWORD NICK_HELP_CMD_SASET_LANGUAGE LANGUAGE Ustawia jêzyk w którym serwisy bêd± wysy³a³y komunikaty -NICK_HELP_CMD_SASET_URL - URL Przypisuje adres www do nicka NICK_HELP_CMD_SASET_EMAIL EMAIL Przypisuje adres e-mail do nicka -NICK_HELP_CMD_SASET_ICQ - ICQ Przypisuje numer ICQ do nicka NICK_HELP_CMD_SASET_GREET GREET Przypisuje komunikat powitalny do nicka NICK_HELP_CMD_SASET_KILL @@ -4783,24 +4720,11 @@ NICK_HELP_SASET_PASSWORD Zmienia has³o wskazanemu u¿ytkownikowi. -NICK_HELP_SASET_URL - Sk³adnia: SASET nick URL url - - Przypisuje podany adres www wskazanemu u¿ytkownikowi. - Ten adres bêdzie siê pokazywa³ w opisie jego nicka - dostêpnym po u¿yciu polecenia INFO. - NICK_HELP_SASET_EMAIL Sk³adnia: SASET nick EMAIL adres Przypisuje wskazanemu u¿ytkownikowi adres e-mail. -NICK_HELP_SASET_ICQ - Sk³adnia: SASET nick ICQ numer - - Przypisuje numer ICQ wskazanemu nickowi, który - bêdzie wy¶wietlany przy opisie nicka dostêpnym - przy u¿yciu komendy INFO. NICK_HELP_SASET_GREET Sk³adnia: SASET nick GREET wiadomo¶æ @@ -5354,10 +5278,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Ustawia nick spadkobiercy kana³u CHAN_HELP_CMD_SET_DESC DESC Ustawia opis kana³u -CHAN_HELP_CMD_SET_URL - URL Przypisuje adres www do kana³u -CHAN_HELP_CMD_SET_EMAIL - EMAIL Przypisuje adres e-mail do kana³u CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Ustawia wiadomo¶æ, która bêdzie wysy³ana do u¿ytkowników wchodz±cych na kana³ @@ -5419,20 +5339,6 @@ CHAN_HELP_SET_DESC Ustawia opis kana³u widoczny po wydaniu polecenia LIST oraz INFO. -CHAN_HELP_SET_URL - Sk³adnia: %s kana³ URL [url] - - Przypisuje adres strony www do kana³u. Adres bêdzie - widoczny po u¿yciu polecenia INFO. Komenda wywo³ana - bez parametru usuwa wcze¶niej ustawiony adres. - -CHAN_HELP_SET_EMAIL - Sk³adnia: %s kana³ EMAIL [adres] - - Przypisuje adres e-mail do kana³u. Adres bêdzie - widoczny po u¿yciu polecenia INFO. Komenda wywo³ana - bez parametru usuwa wcze¶niej ustawiony adres. - CHAN_HELP_SET_ENTRYMSG Sk³adnia: %s kana³ ENTRYMSG [tre¶æ] @@ -465,12 +465,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Linguagem alterada para Português. -# SET URL responses -NICK_SET_URL_CHANGED - URL alterada para %s. -NICK_SET_URL_UNSET - URL removida. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED E-mail alterado para %s. @@ -479,14 +473,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE Você não pode remover o e-mail nesta Rede. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - Número de ICQ alterado para %s. -NICK_SET_ICQ_UNSET - Número de ICQ removido. -NICK_SET_ICQ_INVALID - %s não é um número válido. - # SET GREET responses NICK_SET_GREET_CHANGED Mensagem de entrada alterada para %s. @@ -587,12 +573,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Password for %s changed to %s. -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - URL for %s changed to %s. -NICK_SASET_URL_UNSET - URL %s unset. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED E-mail address for %s changed to %s. @@ -601,14 +581,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE You cannot unset the e-mail on this network. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ number for %s set to %s. -NICK_SASET_ICQ_UNSET - ICQ number for %s unset. -NICK_SASET_ICQ_INVALID - %s is not a valid number. - # SASET GREET responses NICK_SASET_GREET_CHANGED Greet message for %s changed to %s. @@ -753,8 +725,6 @@ NICK_INFO_VHOST vHost: %s NICK_INFO_VHOST2 vHost: %s@%s -NICK_INFO_ICQ - ICQ: %d NICK_INFO_GREET Mensagem de entrada: %s NICK_INFO_OPTIONS @@ -1132,6 +1102,10 @@ CHAN_SET_DISABLED Desculpe, o comando SET está temporariamente desativado. CHAN_SET_UNKNOWN_OPTION Comando SET %s desconhecido. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1151,12 +1125,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED Descrição do canal %s alterada para %s. -# SET URL responses -CHAN_URL_CHANGED - URL do canal %s alterada para %s. -CHAN_URL_UNSET - URL do canal %s removida. - # SET EMAIL responses CHAN_EMAIL_CHANGED E-mail do canal %s alterado para %s. @@ -3554,12 +3522,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE Ajusta a linguagem dos Services quando mensagens são enviadas à você -NICK_HELP_CMD_SET_URL - URL Associa um endereço URL com seu nick NICK_HELP_CMD_SET_EMAIL EMAIL Associa um endereço de e-mail ao seu nick -NICK_HELP_CMD_SET_ICQ - ICQ Associa um número de ICQ ao seu nick NICK_HELP_CMD_SET_GREET GREET Associa uma mensgem de entrada ao seu nick NICK_HELP_CMD_SET_KILL @@ -3605,13 +3569,6 @@ NICK_HELP_SET_LANGUAGE O número deve ser escolhido da seguinte lista de línguas: -NICK_HELP_SET_URL - Sintaxe: SET URL url - - Associa uma dada URL ao seu nick. Esta URL será mostrada - sempre que alguem solicitar informação sobre seu nick - através do comando INFO. - NICK_HELP_SET_EMAIL Sintaxe: SET EMAIL endereço @@ -3623,13 +3580,6 @@ NICK_HELP_SET_EMAIL nick ou o mesmo seje inválido, não será possível recuperar a senha perdida. -NICK_HELP_SET_ICQ - Sintaxe: SET ICQ número - - Associa um número de ICQ ao seu nick. Este número - será sempre mostrado quando alguém solicitar - informação sobre seu nick através do comando INFO. - NICK_HELP_SET_GREET Sintaxe: SET GREET mensagem @@ -3706,12 +3656,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Set the display of the group in Services NICK_HELP_CMD_SASET_PASSWORD PASSWORD Set the nickname password -NICK_HELP_CMD_SASET_URL - URL Associate a URL with the nickname NICK_HELP_CMD_SASET_EMAIL EMAIL Associate an E-mail address with the nickname -NICK_HELP_CMD_SASET_ICQ - ICQ Associate an ICQ number with the nickname NICK_HELP_CMD_SASET_GREET GREET Associate a greet message with the nickname NICK_HELP_CMD_SASET_KILL @@ -3747,25 +3693,11 @@ NICK_HELP_SASET_PASSWORD Changes the password used to identify as the nick's owner. -NICK_HELP_SASET_URL - Syntax: SASET nickname URL url - - Associates the given URL with the nickname. This URL - will be displayed whenever someone requests information - on the nick with the INFO command. - NICK_HELP_SASET_EMAIL Syntax: SASET nickname EMAIL address Associates the given E-mail address with the nickname. -NICK_HELP_SASET_ICQ - Syntax: SASET nickname ICQ number - - Associates the given ICQ number with the nickname. This - number will be displayed whenever someone requests - information on the nick with the INFO command. - NICK_HELP_SASET_GREET Syntax: SASET nickname GREET message @@ -4270,10 +4202,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Ajusta o sucessor do canal CHAN_HELP_CMD_SET_DESC DESC Ajusta a descrição do canal -CHAN_HELP_CMD_SET_URL - URL Associa uma URL a um canal -CHAN_HELP_CMD_SET_EMAIL - EMAIL Associa um E-mail a um canal CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Ajusta a mensagem que deve ser mandada aos usuários quando eles entram no canal @@ -4334,23 +4262,6 @@ CHAN_HELP_SET_DESC Ajusta a descrição para o canal, que são mostradas com os comandos LIST e INFO. -CHAN_HELP_SET_URL - Sintaxe: %s canal URL [url] - - Associa uma URL ao canal. Esta URL será mostrada - sempre que alguem solicitar informação sobre o canal - com o comando INFO. Se nenhum parâmetro for fornecido, - apaga qualquer URL atualmente designada para o canal. - -CHAN_HELP_SET_EMAIL - Sintaxe: %s canal EMAIL [endereço] - - Associa um endereço de e-mail fornecido ao canal. - Este endereço será mostrado sempre que alguem solicitar - informação sobre o canal com o comando INFO. Se nenhum - parâmetro for fornecido, apaga qualquer endereço de e-mail - do canal. - CHAN_HELP_SET_ENTRYMSG Sintaxe: %s canal ENTRYMSG [mensagem] @@ -449,12 +449,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED ßçûê ñåðâèñîâ èçìåíåí íà Ðóññêèé. -# SET URL responses -NICK_SET_URL_CHANGED - URL-àäðåñ äëÿ âàøåãî íèêà èçìåíåí íà: %s. -NICK_SET_URL_UNSET - URL-àäðåñ äëÿ âàøåãî íèêà óäàëåí. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED Email-àäðåñ äëÿ âàøåãî íèêà èçìåíåí íà: %s. @@ -463,14 +457,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE Âîçìîæíîñòü óäàëåíèÿ email-àäðåñà â âàøåé IRC-ñåòè íåäîñòóïíà. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - ICQ-íîìåð äëÿ âàøåãî íèêà èçìåíåí íà: %s -NICK_SET_ICQ_UNSET - ICQ-íîìåð äëÿ âàøåãî íèêà óäàëåí. -NICK_SET_ICQ_INVALID - Çíà÷åíèå âèäà %s íå ÿâëÿåòñÿ ïðàâèëüíûì ICQ-íîìåðîì. - # SET GREET responses NICK_SET_GREET_CHANGED Ïðèâåòñòâåííîå ñîîáùåíèå äëÿ âàøåãî íèêà èçìåíåíî íà: %s. @@ -571,12 +557,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Ïàðîëü äëÿ %s èçìåíåí íà %s. -# SASET URL responses -NICK_SASET_URL_CHANGED - URL-àäðåñ äëÿ %s èçìåíåí íà %s. -NICK_SASET_URL_UNSET - URL-àäðåñ äëÿ %s óäàëåí. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED Email-àäðåñ äëÿ %s èçìåíåí íà %s. @@ -585,14 +565,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE Âîçìîæíîñòü óäàëåíèÿ email-àäðåñà â âàøåé IRC-ñåòè íåäîñòóïíà. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ-íîìåð äëÿ %s óñòàíîâëåí íà %s. -NICK_SASET_ICQ_UNSET - ICQ-íîìåð äëÿ %s óäàëåí. -NICK_SASET_ICQ_INVALID - Çíà÷åíèå %s íå ÿâëÿåòñÿ ïðàâèëüíûì ICQ-íîìåðîì. - # SASET GREET responses NICK_SASET_GREET_CHANGED Ïðèâåòñòâèå äëÿ %s èçìåíåíî íà %s. @@ -736,8 +708,6 @@ NICK_INFO_VHOST Âèðòóàëüíûé õîñò........: %s NICK_INFO_VHOST2 Âèðòóàëüíûé õîñò........: %s@%s -NICK_INFO_ICQ - ICQ-íîìåð...............: %d NICK_INFO_GREET Òåêñò ïðèâåòñòâèÿ.......: %s NICK_INFO_OPTIONS @@ -1111,6 +1081,10 @@ CHAN_SET_DISABLED Èçâèíèòå, âîçìîæíîñòü óñòàíîâêè îïöèé êàíàëîâ âðåìåííî íåäîñòóïíà. CHAN_SET_UNKNOWN_OPTION Íåèçâåñòíàÿ SET-îïöèÿ %s. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1130,12 +1104,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED Îïèñàíèå êàíàëà %s èçìåíåíî íà %s. -# SET URL responses -CHAN_URL_CHANGED - URL-àäðåñ êàíàëà %s èçìåíåí íà %s. -CHAN_URL_UNSET - URL-àäðåñ êàíàëà %s óäàëåí. - # SET EMAIL responses CHAN_EMAIL_CHANGED Email-àäðåñ äëÿ êàíàëà %s èçìåíåí íà %s. @@ -3550,12 +3518,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE âûáîð ÿçûêà, ïîñðåäñòâîì êîòîðîãî ñåðâèñû áóäóò ñ âàìè îáùàòüñÿ -NICK_HELP_CMD_SET_URL - URL óñòàíîâêà URL-àäðåñà íà íèê NICK_HELP_CMD_SET_EMAIL EMAIL óñòàíîâêà email-àäðåñà íà íèê -NICK_HELP_CMD_SET_ICQ - ICQ óñòàíîâêà ICQ-íîìåðà íà íèê NICK_HELP_CMD_SET_GREET GREET óñòàíîâêà ïðèâåòñòâåííîãî ñîîáùåíèÿ NICK_HELP_CMD_SET_KILL @@ -3600,26 +3564,13 @@ NICK_HELP_SET_LANGUAGE ñåé÷àñ è ÷èòàåòå.  êà÷åñòâå íîìåðà, âû äîëæíû óêàçàòü êîíêðåòíûé íîìåð ÿçûêà èç ñïèñêà ïîääåðæèâàåìûõ ÿçûêîâ: - -NICK_HELP_SET_URL - Ñèíòàêñèñ: SET URL url-àäðåñ - - Àññîöèèðóåò URL-àäðåñ ñ âàøèì íèêîì. Äàííûé URL áóäåò ïîêàçàí â - èíôîðìàöèè î âàøåì íèêå, ïðåäîñòàâëÿåìîé ïî êîìàíäå INFO. - NICK_HELP_SET_EMAIL Ñèíòàêñèñ: SET EMAIL àäðåñ@email Àññîöèèðóåò email-àäðåñ ñ âàøèì íèêîì. Äàííûé email áóäåò ïîêàçàí â èíôîðìàöèè î âàøåì íèêå, ïðåäîñòàâëÿåìîé ïî êîìàíäå INFO. -NICK_HELP_SET_ICQ - Ñèíòàêñèñ: SET ICQ ICQ-íîìåð - - Àññîöèèðóåò ICQ-íîìåð ñ âàøèì íèêîì. Äàííûé ICQ-íîìåð áóäåò ïîêàçàí - â èíôîðìàöèè î âàøåì íèêå, ïðåäîñòàâëÿåìîé ïî êîìàíäå INFO. - NICK_HELP_SET_GREET Ñèíòàêñèñ: SET GREET ñîîáùåíèå @@ -3715,12 +3666,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY óñòàíîâêà ãëàâíîãî íèêà ãðóïïû NICK_HELP_CMD_SASET_PASSWORD PASSWORD èçìåíåíèå òåêóùåãî ïàðîëÿ íà íèê -NICK_HELP_CMD_SASET_URL - URL óñòàíîâêà URL-àäðåñà íà íèê NICK_HELP_CMD_SASET_EMAIL EMAIL óñòàíîâêà email-àäðåñà íà íèê -NICK_HELP_CMD_SASET_ICQ - ICQ óñòàíîâêà ICQ-íîìåðà íà íèê NICK_HELP_CMD_SASET_GREET GREET óñòàíîâêà ïðèâåòñòâåííîãî ñîîáùåíèÿ NICK_HELP_CMD_SASET_KILL @@ -3760,24 +3707,12 @@ NICK_HELP_SASET_PASSWORD Ïîçâîëÿåò èçìåíèòü ïàðîëü íèêà, èñïîëüçóåìûé äëÿ èäåíòèôèêàöèè â êà÷åñòâå âëàäåëüöà íèêà. -NICK_HELP_SASET_URL - Ñèíòàêñèñ: SASET íèê URL url-àäðåñ - - Àññîöèèðóåò URL-àäðåñ ñ óêàçàííûì íèêîì. Äàííûé URL áóäåò ïîêàçàí - â èíôîðìàöèè îá óêàçàííîì íèêå, ïðåäîñòàâëÿåìîé ïî êîìàíäå INFO. - NICK_HELP_SASET_EMAIL Ñèíòàêñèñ: SASET íèê EMAIL àäðåñ@email Àññîöèèðóåò email-àäðåñ ñ óêàçàííûì íèêîì. Äàííûé email áóäåò ïîêàçàí â èíôîðìàöèè îá óêàçàííîì íèêå, ïðåäîñòàâëÿåìîé ïî êîìàíäå INFO. -NICK_HELP_SASET_ICQ - Ñèíòàêñèñ: SASET íèê ICQ ICQ-íîìåð - - Àññîöèèðóåò ICQ-íîìåð ñ óêàçàííûì íèêîì. Äàííûé íîìåð áóäåò ïîêàçàí - â èíôîðìàöèè îá óêàçàííîì íèêå, ïðåäîñòàâëÿåìîé ïî êîìàíäå INFO. - NICK_HELP_SASET_GREET Ñèíòàêñèñ: SASET íèê GREET òåêñò @@ -4330,10 +4265,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR óñòàíîâêà íàñëåäíèêà êàíàëà CHAN_HELP_CMD_SET_DESC DESC èçìåíåíèå îïèñàíèÿ êàíàëà -CHAN_HELP_CMD_SET_URL - URL óñòàíîâêà URL-àäðåñà êàíàëà -CHAN_HELP_CMD_SET_EMAIL - EMAIL óñòàíîâêà Email-àäðåñà êàíàëà CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG óñòàíîâêà àâòîñîîáùåíèÿ ïðè âõîäå íà êàíàë CHAN_HELP_CMD_SET_BANTYPE @@ -4395,22 +4326,6 @@ CHAN_HELP_SET_DESC Ïîçâîëÿåò óñòàíîâèòü îïèñàíèå êàíàëà, êîòîðîå áóäåò ïîêàçàíî ïðè èñïîëüçîâàíèè êîìàíä LIST è INFO. -CHAN_HELP_SET_URL - Ñèíòàêñèñ: %s #êàíàë URL [àäðåñ] - - Ïîçâîëÿåò óñòàíîâèòü URL-àäðåñ êàíàëà. Äàííûé URL áóäåò ïîêàçàí - òîãäà, êîãäà êòî-ëèáî çàïðîñèò èíôîðìàöèþ î êàíàëå ñ ïîìîùüþ - êîìàíäû INFO. ×òîáû óäàëèòü óñòàíîâëåííûé URL-àäðåñ, èñïîëüçóéòå - äàííóþ êîìàíäó áåç ïàðàìåòðà. - -CHAN_HELP_SET_EMAIL - Ñèíòàêñèñ: %s #êàíàë EMAIL [àäðåñ@ïî÷òû] - - Ïîçâîëÿåò óñòàíîâèòü àäðåñ ýëåêòðîííîé ïî÷òû êàíàëà. Ýòîò àäðåñ - áóäåò ïîêàçàí òîãäà, êîãäà êòî-ëèáî çàïðîñèò èíôîðìàöèþ î êàíàëå - ñ ïîìîùüþ êîìàíäû INFO. ×òîáû óäàëèòü óñòàíîâëåííûé email-àäðåñ, - èñïîëüçóéòå äàííóþ êîìàíäó áåç ïàðàìåòðà. - CHAN_HELP_SET_ENTRYMSG Ñèíòàêñèñ: %s #êàíàë ENTRYMSG [òåêñò] @@ -463,12 +463,6 @@ NICK_SET_LANGUAGE_UNKNOWN NICK_SET_LANGUAGE_CHANGED Dil Türkçe olarak deðiþtirildi. -# SET URL responses -NICK_SET_URL_CHANGED - URL adresi %s olarak deðiþtirildi. -NICK_SET_URL_UNSET - URL adresi silindi. - # SET EMAIL responses NICK_SET_EMAIL_CHANGED E-mail adresi %s olarak deðiþtirildi. @@ -477,14 +471,6 @@ NICK_SET_EMAIL_UNSET NICK_SET_EMAIL_UNSET_IMPOSSIBLE E-mail adresini bu networkte silemezsiniz. -# SET ICQ responses -NICK_SET_ICQ_CHANGED - ICQ numarasý %s olarak deðiþtirildi. -NICK_SET_ICQ_UNSET - ICQ numarasý silindi. -NICK_SET_ICQ_INVALID - %s geçerli bir numara deðil. - # SET GREET responses NICK_SET_GREET_CHANGED Karþýlama mesajý %s olarak deðiþtirildi. @@ -588,12 +574,6 @@ NICK_SASET_PASSWORD_CHANGED NICK_SASET_PASSWORD_CHANGED_TO Password for %s changed to %s. -# SASET LANGUAGE responses -NICK_SASET_URL_CHANGED - URL for %s changed to %s. -NICK_SASET_URL_UNSET - URL %s unset. - # SASET EMAIL responses NICK_SASET_EMAIL_CHANGED E-mail address for %s changed to %s. @@ -602,14 +582,6 @@ NICK_SASET_EMAIL_UNSET NICK_SASET_EMAIL_UNSET_IMPOSSIBLE You cannot unset the e-mail on this network. -# SASET ICQ responses -NICK_SASET_ICQ_CHANGED - ICQ number for %s set to %s. -NICK_SASET_ICQ_UNSET - ICQ number for %s unset. -NICK_SASET_ICQ_INVALID - %s is not a valid number. - # SASET GREET responses NICK_SASET_GREET_CHANGED Greet message for %s changed to %s. @@ -754,8 +726,6 @@ NICK_INFO_VHOST vhost: %s NICK_INFO_VHOST2 vhost: %s@%s -NICK_INFO_ICQ - ICQ #: %d NICK_INFO_GREET Karþýlama mesajý: %s NICK_INFO_OPTIONS @@ -1138,6 +1108,10 @@ CHAN_SET_DISABLED Chanserv'ün SET komutu geçici olarak devre dýþýdýr. CHAN_SET_UNKNOWN_OPTION Varolmayan SET özelliði: %s. +CHAN_SETTING_CHANGED + %s for %s set to %s. +CHAN_SETTING_UNSET + %s for %s unset. # SET FOUNDER responses CHAN_SET_FOUNDER_TOO_MANY_CHANS @@ -1157,12 +1131,6 @@ CHAN_SUCCESSOR_IS_FOUNDER CHAN_DESC_CHANGED %s kanalýnýn açýklamasý %s olarak deðiþtirildi. -# SET URL responses -CHAN_URL_CHANGED - %s kanalýnýn URL adresi %s olarak deðiþtirildi. -CHAN_URL_UNSET - %s kanalýnýn URL adresi kaldýrýldý. - # SET EMAIL responses CHAN_EMAIL_CHANGED %s kanalýnýn e-mail adresi %s olarak deðiþtirildi. @@ -3653,12 +3621,8 @@ NICK_HELP_CMD_SET_PASSWORD NICK_HELP_CMD_SET_LANGUAGE LANGUAGE Servislerin size hitap edeceði dili belirler -NICK_HELP_CMD_SET_URL - URL Nickinizle bir URL yi iliþkilendirir NICK_HELP_CMD_SET_EMAIL EMAIL Nickinizle bir email adresini iliþkilendirir -NICK_HELP_CMD_SET_ICQ - ICQ Nickinizle bir ICQ numarasýný iliþikilendirir NICK_HELP_CMD_SET_GREET GREET Nickiniz için bir karþýlama mesajý belirler NICK_HELP_CMD_SET_KILL @@ -3702,13 +3666,6 @@ NICK_HELP_SET_LANGUAGE numara aþaðýdaki listede desteklenen dillerden biri olarak belirlenir: -NICK_HELP_SET_URL - Kullanýmý: SET URL url - - Nickiniz için bir URL adresi belirtir. Bu URL adresi birisi - sizin hakkýnýzda bilgi almak için INFO komutunu - kullandýðýnda görünür. - NICK_HELP_SET_EMAIL Kullanýmý: SET EMAIL email adresiniz @@ -3716,13 +3673,6 @@ NICK_HELP_SET_EMAIL birisi sizin hakkýnýzda bilgi almak için INFO komutunu kullandýðýnda görünür. -NICK_HELP_SET_ICQ - Kullanýmý: SET ICQ icqnumaranýz - - Nickiniz için bir ICQ numarasý belirtir. Bu ICQ numarasý - birisi sizin hakkýnýzda bilgi almak için INFO komutunu - kullandýðýnda görünür. - NICK_HELP_SET_GREET Kullanýmý: SET GREET mesaj @@ -3798,12 +3748,8 @@ NICK_HELP_CMD_SASET_DISPLAY DISPLAY Set the display of the group in Services NICK_HELP_CMD_SASET_PASSWORD PASSWORD Set the nickname password -NICK_HELP_CMD_SASET_URL - URL Associate a URL with the nickname NICK_HELP_CMD_SASET_EMAIL EMAIL Associate an E-mail address with the nickname -NICK_HELP_CMD_SASET_ICQ - ICQ Associate an ICQ number with the nickname NICK_HELP_CMD_SASET_GREET GREET Associate a greet message with the nickname NICK_HELP_CMD_SASET_KILL @@ -3839,25 +3785,11 @@ NICK_HELP_SASET_PASSWORD Changes the password used to identify as the nick's owner. -NICK_HELP_SASET_URL - Syntax: SASET nickname URL url - - Associates the given URL with the nickname. This URL - will be displayed whenever someone requests information - on the nick with the INFO command. - NICK_HELP_SASET_EMAIL Syntax: SASET nickname EMAIL address Associates the given E-mail address with the nickname. -NICK_HELP_SASET_ICQ - Syntax: SASET nickname ICQ number - - Associates the given ICQ number with the nickname. This - number will be displayed whenever someone requests - information on the nick with the INFO command. - NICK_HELP_SASET_GREET Syntax: SASET nickname GREET message @@ -4378,10 +4310,6 @@ CHAN_HELP_CMD_SET_SUCCESSOR SUCCESSOR Kanal successorýný belirler CHAN_HELP_CMD_SET_DESC DESC Kanal açýklamasýný belirler -CHAN_HELP_CMD_SET_URL - URL Kanala bir URL adresini iliþkilendirir -CHAN_HELP_CMD_SET_EMAIL - EMAIL Kanala bir E-mail adresini iliþkilendirir CHAN_HELP_CMD_SET_ENTRYMSG ENTRYMSG Kanala giren kullanýcýlara gönderilecek mesajý belirler @@ -4444,24 +4372,6 @@ CHAN_HELP_SET_DESC LIST ve INFO komutlarý kullanýldýðýnda gözükecek kanal açýklamasýný belirler. -CHAN_HELP_SET_URL - Kullanýmý: %s kanaladý URL [urladresi] - - Belirtilen URL adresini kanal ile iliþkilendirir. Bu URL - adresi birisi kanal hakkýnda bilgi almak için INFO - komutunu kullandýðýnda gözükür. Eðer urladresi parametresi - belirtilmezse kanal için önceden belirtilen URL adresi - silinir. - -CHAN_HELP_SET_EMAIL - Kullanýmý: %s kanaladý EMAIL [emailadresi] - - Belirtilen E-mail adresini kanal ile iliþkilendirir.Bu E-mail - adresi birisi kanal hakkýnda bilgi almak için INFO komutunu - kullandýðýnda gözükür. Eðer emailadresi parametresi - belirtilmezse kanal için önceden belirtilen E-mail adresi - silinir. - CHAN_HELP_SET_ENTRYMSG Kullanýmý: %s kanaladý ENTRYMSG [mesaj] diff --git a/src/chanserv.cpp b/src/chanserv.cpp index 3ca9694b3..27cb159ce 100644 --- a/src/chanserv.cpp +++ b/src/chanserv.cpp @@ -202,10 +202,6 @@ void get_chanserv_stats(long *nrec, long *memuse) mem += sizeof(*ci); if (ci->desc) mem += strlen(ci->desc) + 1; - if (ci->url) - mem += strlen(ci->url) + 1; - if (ci->email) - mem += strlen(ci->email) + 1; mem += ci->GetAccessCount() * sizeof(ChanAccess); mem += ci->GetAkickCount() * sizeof(AutoKick); diff --git a/src/core/cs_info.cpp b/src/core/cs_info.cpp index 924df4ed5..9b70735dd 100644 --- a/src/core/cs_info.cpp +++ b/src/core/cs_info.cpp @@ -82,10 +82,6 @@ class CommandCSInfo : public Command if (ci->entry_message && show_all) notice_lang(Config.s_ChanServ, u, CHAN_INFO_ENTRYMSG, ci->entry_message); - if (ci->url) - notice_lang(Config.s_ChanServ, u, CHAN_INFO_URL, ci->url); - if (ci->email) - notice_lang(Config.s_ChanServ, u, CHAN_INFO_EMAIL, ci->email); if (show_all) { diff --git a/src/core/cs_set_email.cpp b/src/core/cs_set_email.cpp deleted file mode 100644 index 61bd4ee76..000000000 --- a/src/core/cs_set_email.cpp +++ /dev/null @@ -1,103 +0,0 @@ -/* ChanServ core functions - * - * (C) 2003-2010 Anope Team - * Contact us at team@anope.org - * - * Please read COPYING and README for further details. - * - * Based on the original code of Epona by Lara. - * Based on the original code of Services by Andy Church. - */ - -/*************************************************************************/ - -#include "module.h" - -class CommandCSSetEMail : public Command -{ - public: - CommandCSSetEMail(const ci::string &cname, const ci::string &cpermission = "") : Command(cname, 1, 2, cpermission) - { - } - - CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) - { - ChannelInfo *ci = cs_findchan(params[0]); - assert(ci); - - if (ci->email) - delete [] ci->email; - if (params.size() > 1) - { - ci->email = sstrdup(params[1].c_str()); - notice_lang(Config.s_ChanServ, u, CHAN_EMAIL_CHANGED, ci->name.c_str(), ci->email); - } - else - { - ci->email = NULL; - notice_lang(Config.s_ChanServ, u, CHAN_EMAIL_UNSET, ci->name.c_str()); - } - - return MOD_CONT; - } - - bool OnHelp(User *u, const ci::string &) - { - notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_EMAIL, "SET"); - return true; - } - - void OnSyntaxError(User *u, const ci::string &) - { - // XXX - syntax_error(Config.s_ChanServ, u, "SET", CHAN_SET_SYNTAX); - } - - void OnServHelp(User *u) - { - notice_lang(Config.s_ChanServ, u, CHAN_HELP_CMD_SET_EMAIL); - } -}; - -class CommandCSSASetEMail : public CommandCSSetEMail -{ - public: - CommandCSSASetEMail(const ci::string &cname) : CommandCSSetEMail(cname, "chanserv/saset/email") - { - } - - bool OnHelp(User *u, const ci::string &) - { - notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_EMAIL, "SASET"); - return true; - } - - void OnSyntaxError(User *u, const ci::string &) - { - /// XXX - syntax_error(Config.s_ChanServ, u, "SASET", CHAN_SASET_SYNTAX); - } -}; - -class CSSetEMail : public Module -{ - public: - CSSetEMail(const std::string &modname, const std::string &creator) : Module(modname, creator) - { - this->SetAuthor("Anope"); - this->SetType(CORE); - - Command *c = FindCommand(ChanServ, "SET"); - if (c) - c->AddSubcommand(new CommandCSSetEMail("EMAIL")); - } - - ~CSSetEMail() - { - Command *c = FindCommand(ChanServ, "SET"); - if (c) - c->DelSubcommand("EMAIL"); - } -}; - -MODULE_INIT(CSSetEMail) diff --git a/src/core/cs_set_entrymsg.cpp b/src/core/cs_set_entrymsg.cpp index cddcff36b..d2ec2bccc 100644 --- a/src/core/cs_set_entrymsg.cpp +++ b/src/core/cs_set_entrymsg.cpp @@ -43,7 +43,7 @@ class CommandCSSetEntryMsg : public Command bool OnHelp(User *u, const ci::string &) { - notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_ENTRYMSG, "SEt"); + notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_ENTRYMSG, "SET"); return true; } diff --git a/src/core/cs_set_url.cpp b/src/core/cs_set_url.cpp deleted file mode 100644 index 878cc9562..000000000 --- a/src/core/cs_set_url.cpp +++ /dev/null @@ -1,111 +0,0 @@ -/* ChanServ core functions - * - * (C) 2003-2010 Anope Team - * Contact us at team@anope.org - * - * Please read COPYING and README for further details. - * - * Based on the original code of Epona by Lara. - * Based on the original code of Services by Andy Church. - */ - -/*************************************************************************/ - -#include "module.h" - -class CommandCSSetURL : public Command -{ - public: - CommandCSSetURL(const ci::string &cname, const ci::string &cpermission = "") : Command(cname, 1, 2, cpermission) - { - } - - CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) - { - ChannelInfo *ci = cs_findchan(params[0]); - assert(ci); - - if (ci->url) - delete [] ci->url; - if (params.size() > 1) - { - ci->url = sstrdup(params[1].c_str()); - notice_lang(Config.s_ChanServ, u, CHAN_URL_CHANGED, ci->name.c_str(), ci->url); - } - else - { - ci->url = NULL; - notice_lang(Config.s_ChanServ, u, CHAN_URL_UNSET, ci->name.c_str()); - } - - return MOD_CONT; - } - - bool OnHelp(User *u, const ci::string &) - { - notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_URL, "SET"); - return true; - } - - void OnSyntaxError(User *u, const ci::string &) - { - // XXX - syntax_error(Config.s_ChanServ, u, "SET", CHAN_SET_SYNTAX); - } - - void OnServHelp(User *u) - { - notice_lang(Config.s_ChanServ, u, CHAN_HELP_CMD_SET_URL); - } -}; - -class CommandCSSASetURL : public CommandCSSetURL -{ - public: - CommandCSSASetURL(const ci::string &cname) : CommandCSSetURL(cname, "chanserv/saset/url") - { - } - - bool OnHelp(User *u, const ci::string &) - { - notice_help(Config.s_ChanServ, u, CHAN_HELP_SET_URL, "SASET"); - return true; - } - - void OnSyntaxError(User *u, const ci::string &) - { - // XXX - syntax_error(Config.s_ChanServ, u, "SASET URL", CHAN_SASET_SYNTAX); - } -}; - -class CSSetURL : public Module -{ - public: - CSSetURL(const std::string &modname, const std::string &creator) : Module(modname, creator) - { - this->SetAuthor("Anope"); - this->SetType(CORE); - - Command *c = FindCommand(ChanServ, "SET"); - if (c) - c->AddSubcommand(new CommandCSSetURL("URL")); - - c = FindCommand(ChanServ, "SASET"); - if (c) - c->AddSubcommand(new CommandCSSASetURL("URL")); - } - - ~CSSetURL() - { - Command *c = FindCommand(ChanServ, "SET"); - if (c) - c->DelSubcommand("URL"); - - c = FindCommand(ChanServ, "SASET"); - if (c) - c->DelSubcommand("URL"); - } -}; - -MODULE_INIT(CSSetURL) diff --git a/src/core/db_plain.cpp b/src/core/db_plain.cpp index 7aa2ada89..885faf41b 100644 --- a/src/core/db_plain.cpp +++ b/src/core/db_plain.cpp @@ -625,10 +625,6 @@ class DBPlain : public Module nc->email = sstrdup(params[0].c_str()); else if (key == "GREET") nc->greet = sstrdup(params[0].c_str()); - else if (key == "ICQ") - nc->icq = atoi(params[0].c_str()); - else if (key == "URL") - nc->url = sstrdup(params[0].c_str()); else if (key == "ACCESS") nc->AddAccess(params[0]); else if (key == "FLAGS") @@ -728,10 +724,6 @@ class DBPlain : public Module } else if (key == "DESC") ci->desc = sstrdup(params[0].c_str()); - else if (key == "URL") - ci->url = sstrdup(params[0].c_str()); - else if (key == "EMAIL") - ci->email = sstrdup(params[0].c_str()); else if (key == "TOPIC") { ci->last_topic_setter = params[0]; @@ -927,10 +919,6 @@ class DBPlain : public Module db << "MD EMAIL " << nc->email << endl; if (nc->greet) db << "MD GREET :" << nc->greet << endl; - if (nc->icq) - db << "MD ICQ :" << nc->icq << endl; - if (nc->url) - db << "MD URL :" << nc->url << endl; if (!nc->access.empty()) { for (std::vector<std::string>::iterator it = nc->access.begin(), it_end = nc->access.end(); it != it_end; ++it) @@ -1007,10 +995,6 @@ class DBPlain : public Module db << "MD SUCCESSOR " << ci->successor->display << endl; if (ci->desc) db << "MD DESC :" << ci->desc << endl; - if (ci->url) - db << "MD URL :" << ci->url << endl; - if (ci->email) - db << "MD EMAIL :" << ci->email << endl; if (ci->last_topic) db << "MD TOPIC " << ci->last_topic_setter << " " << ci->last_topic_time << " :" << ci->last_topic << endl; db << "MD LEVELS"; diff --git a/src/core/ns_group.cpp b/src/core/ns_group.cpp index 5cec0f99f..6b3e56718 100644 --- a/src/core/ns_group.cpp +++ b/src/core/ns_group.cpp @@ -186,9 +186,6 @@ class CommandNSUngroup : public Command na->nc->email = sstrdup(oldcore->email); if (oldcore->greet) na->nc->greet = sstrdup(oldcore->greet); - na->nc->icq = oldcore->icq; - if (oldcore->url) - na->nc->url = sstrdup(oldcore->url); na->nc->language = oldcore->language; notice_lang(Config.s_NickServ, u, NICK_UNGROUP_SUCCESSFUL, na->nick, oldcore->display); diff --git a/src/core/ns_info.cpp b/src/core/ns_info.cpp index 244f8c190..3109ad4ba 100644 --- a/src/core/ns_info.cpp +++ b/src/core/ns_info.cpp @@ -109,12 +109,8 @@ class CommandNSInfo : public Command if (na->last_quit && (show_hidden || !(na->nc->HasFlag(NI_HIDE_QUIT)))) notice_lang(Config.s_NickServ, u, NICK_INFO_LAST_QUIT, na->last_quit); - if (na->nc->url) - notice_lang(Config.s_NickServ, u, NICK_INFO_URL, na->nc->url); if (na->nc->email && (show_hidden || !(na->nc->HasFlag(NI_HIDE_EMAIL)))) notice_lang(Config.s_NickServ, u, NICK_INFO_EMAIL, na->nc->email); - if (na->nc->icq) - notice_lang(Config.s_NickServ, u, NICK_INFO_ICQ, na->nc->icq); if (show_hidden) { diff --git a/src/core/ns_set_icq.cpp b/src/core/ns_set_icq.cpp deleted file mode 100644 index 1fcce6c40..000000000 --- a/src/core/ns_set_icq.cpp +++ /dev/null @@ -1,133 +0,0 @@ -/* NickServ core functions - * - * (C) 2003-2010 Anope Team - * Contact us at team@anope.org - * - * Please read COPYING and README for further details. - * - * Based on the original code of Epona by Lara. - * Based on the original code of Services by Andy Church. - */ - -/*************************************************************************/ - -#include "module.h" - -class CommandNSSetICQ : public Command -{ - public: - CommandNSSetICQ(const ci::string &cname) : Command(cname, 0) - { - } - - CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) - { - if (!params.empty()) - { - int32 tmp = atol(params[0].c_str()); - if (!tmp) - notice_lang(Config.s_NickServ, u, NICK_SET_ICQ_INVALID, params[0].c_str()); - else - { - u->Account()->icq = tmp; - notice_lang(Config.s_NickServ, u, NICK_SET_ICQ_CHANGED, params[0].c_str()); - } - } - else - { - u->Account()->icq = 0; - notice_lang(Config.s_NickServ, u, NICK_SET_ICQ_UNSET); - } - - return MOD_CONT; - } - - bool OnHelp(User *u, const ci::string &) - { - notice_help(Config.s_NickServ, u, NICK_HELP_SET_ICQ); - return true; - } - - void OnServHelp(User *u) - { - notice_lang(Config.s_NickServ, u, NICK_HELP_CMD_SET_ICQ); - } -}; - -class CommandNSSASetICQ : public Command -{ - public: - CommandNSSASetICQ(const ci::string &cname) : Command(cname, 1, 2, "nickserv/saset/icq") - { - } - - CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) - { - NickCore *nc = findcore(params[0]); - assert(nc); - - const char *param = params.size() > 1 ? params[1].c_str() : NULL; - - if (param) - { - int32 tmp = atol(param); - - if (tmp) - notice_lang(Config.s_NickServ, u, NICK_SASET_ICQ_INVALID, param); - else - { - nc->icq = tmp; - notice_lang(Config.s_NickServ, u, NICK_SASET_ICQ_CHANGED, nc->display, param); - } - } - else - { - nc->icq = 0; - notice_lang(Config.s_NickServ, u, NICK_SASET_ICQ_UNSET, nc->display); - } - - return MOD_CONT; - } - - bool OnHelp(User *u, const ci::string &) - { - notice_help(Config.s_NickServ, u, NICK_HELP_SASET_ICQ); - return true; - } - - void OnServHelp(User *u) - { - notice_lang(Config.s_NickServ, u, NICK_HELP_CMD_SASET_ICQ); - } -}; - -class NSSetICQ : public Module -{ - public: - NSSetICQ(const std::string &modname, const std::string &creator) : Module(modname, creator) - { - this->SetAuthor("Anope"); - this->SetType(CORE); - - Command *c = FindCommand(NickServ, "SET"); - if (c) - c->AddSubcommand(new CommandNSSetICQ("ICQ")); - - c = FindCommand(NickServ, "SASET"); - if (c) - c->AddSubcommand(new CommandNSSASetICQ("ICQ")); - } - - ~NSSetICQ() - { - Command *c = FindCommand(NickServ, "SET"); - if (c) - c->DelSubcommand("ICQ"); - - c = FindCommand(NickServ, "SASET"); - if (c) - c->DelSubcommand("ICQ"); - } -}; - -MODULE_INIT(NSSetICQ) diff --git a/src/core/ns_set_url.cpp b/src/core/ns_set_url.cpp deleted file mode 100644 index 810a43aac..000000000 --- a/src/core/ns_set_url.cpp +++ /dev/null @@ -1,125 +0,0 @@ -/* NickServ core functions - * - * (C) 2003-2010 Anope Team - * Contact us at team@anope.org - * - * Please read COPYING and README for further details. - * - * Based on the original code of Epona by Lara. - * Based on the original code of Services by Andy Church. - */ - -/*************************************************************************/ - -#include "module.h" - -class CommandNSSetURL : public Command -{ - public: - CommandNSSetURL(const ci::string &cname) : Command(cname, 0) - { - } - - CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) - { - if (u->Account()->url) - delete [] u->Account()->url; - - if (!params.empty()) - { - u->Account()->url = sstrdup(params[0].c_str()); - notice_lang(Config.s_NickServ, u, NICK_SET_URL_CHANGED, params[0].c_str()); - } - else - { - u->Account()->url = NULL; - notice_lang(Config.s_NickServ, u, NICK_SET_URL_UNSET); - } - - return MOD_CONT; - } - - bool OnHelp(User *u, const ci::string &) - { - notice_help(Config.s_NickServ, u, NICK_HELP_SET_URL); - return true; - } - - void OnServHelp(User *u) - { - notice_lang(Config.s_NickServ, u, NICK_HELP_CMD_SET_URL); - } -}; - -class CommandNSSASetURL : public Command -{ - public: - CommandNSSASetURL(const ci::string &cname) : Command(cname, 1, 2, "nickserv/saset/url") - { - } - - CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) - { - NickCore *nc = findcore(params[0]); - assert(nc); - - const char *param = params.size() > 1 ? params[1].c_str() : NULL; - - if (nc->url) - delete [] nc->url; - - if (param) - { - nc->url = sstrdup(param); - notice_lang(Config.s_NickServ, u, NICK_SASET_URL_CHANGED, nc->display, param); - } - else - { - nc->url = NULL; - notice_lang(Config.s_NickServ, u, NICK_SASET_URL_UNSET, nc->display); - } - - return MOD_CONT; - } - - bool OnHelp(User *u, const ci::string &) - { - notice_help(Config.s_NickServ, u, NICK_HELP_SASET_URL); - return true; - } - - void OnServHelp(User *u) - { - notice_lang(Config.s_NickServ, u, NICK_HELP_CMD_SASET_URL); - } -}; - -class NSSetURL : public Module -{ - public: - NSSetURL(const std::string &modname, const std::string &creator) : Module(modname, creator) - { - this->SetAuthor("Anope"); - this->SetType(CORE); - - Command *c = FindCommand(NickServ, "SET"); - if (c) - c->AddSubcommand(new CommandNSSetURL("URL")); - - c = FindCommand(NickServ, "SASET"); - if (c) - c->AddSubcommand(new CommandNSSASetURL("URL")); - } - - ~NSSetURL() - { - Command *c = FindCommand(NickServ, "SET"); - if (c) - c->DelSubcommand("URL"); - c = FindCommand(NickServ, "SASET"); - if (c) - c->DelSubcommand("URL"); - } -}; - -MODULE_INIT(NSSetURL) diff --git a/src/modules/cs_set_misc.cpp b/src/modules/cs_set_misc.cpp new file mode 100644 index 000000000..5f690a0ac --- /dev/null +++ b/src/modules/cs_set_misc.cpp @@ -0,0 +1,196 @@ +/* ChanServ core functions + * + * (C) 2003-2010 Anope Team + * Contact us at team@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + */ + +/*************************************************************************/ + +#include "module.h" + +class CommandCSSetMisc : public Command +{ + std::string Desc; + public: + CommandCSSetMisc(const ci::string &cname, const std::string &desc, const ci::string &cpermission = "") : Command(cname, 1, 2, cpermission), Desc(desc) + { + } + + CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) + { + ChannelInfo *ci = cs_findchan(params[0]); + assert(ci); + + ci->Shrink("chanserv:" + std::string(this->name.c_str())); + if (params.size() > 1) + { + ci->Extend("chanserv:" + std::string(this->name.c_str()), new ExtensibleItemRegular<ci::string>(params[1])); + notice_lang(Config.s_ChanServ, u, CHAN_SETTING_CHANGED, this->name.c_str(), ci->name.c_str(), params[1].c_str()); + } + else + { + notice_lang(Config.s_ChanServ, u, CHAN_SETTING_UNSET, this->name.c_str(), ci->name.c_str()); + } + + return MOD_CONT; + } + + void OnSyntaxError(User *u, const ci::string &) + { + syntax_error(Config.s_ChanServ, u, "SET", CHAN_SET_SYNTAX); + } + + void OnServHelp(User *u) + { + u->SendMessage(Config.s_ChanServ, " %-10s %s", this->name.c_str(), this->Desc.c_str()); + } +}; + +class CommandCSSASetMisc : public CommandCSSetMisc +{ + public: + CommandCSSASetMisc(const ci::string &cname, const std::string &desc) : CommandCSSetMisc(cname, desc, "chanserv/saset/" + cname) + { + } + + void OnSyntaxError(User *u, const ci::string &) + { + syntax_error(Config.s_ChanServ, u, "SASET", CHAN_SASET_SYNTAX); + } +}; + +class CSSetMisc : public Module +{ + struct CommandInfo + { + std::string Name; + std::string Desc; + bool ShowHidden; + + CommandInfo(const std::string &name, const std::string &desc, bool showhidden) : Name(name), Desc(desc), ShowHidden(showhidden) { } + }; + + std::map<std::string, CommandInfo *> Commands; + + void RemoveAll() + { + if (Commands.empty()) + return; + + Command *set = FindCommand(ChanServ, "SET"); + Command *saset = FindCommand(ChanServ, "SASET"); + + if (!set && !saset) + return; + + for (std::map<std::string, CommandInfo *>::const_iterator it = this->Commands.begin(), it_end = this->Commands.end(); it != it_end; ++it) + { + if (set) + set->DelSubcommand(it->first.c_str()); + if (saset) + saset->DelSubcommand(it->first.c_str()); + delete it->second; + } + + this->Commands.clear(); + } + + public: + CSSetMisc(const std::string &modname, const std::string &creator) : Module(modname, creator) + { + this->SetAuthor("Anope"); + this->SetType(CORE); + + Implementation i[] = { I_OnReload, I_OnChanInfo, I_OnDatabaseWriteMetadata, I_OnDatabaseReadMetadata }; + ModuleManager::Attach(i, this, 4); + + OnReload(true); + } + + ~CSSetMisc() + { + RemoveAll(); + } + + void OnReload(bool) + { + RemoveAll(); + + Command *set = FindCommand(ChanServ, "SET"); + Command *saset = FindCommand(ChanServ, "SASET"); + if (!set && saset) + return; + + ConfigReader config; + + for (int i = 0; true; ++i) + { + std::string cname = config.ReadValue("cs_set_misc", "name", "", i); + if (cname.empty()) + break; + std::string desc = config.ReadValue("cs_set_misc", "desc", "", i); + bool showhidden = config.ReadFlag("cs_set_misc", "operonly", "no", i); + + CommandInfo *info = new CommandInfo(cname, desc, showhidden); + if (!this->Commands.insert(std::make_pair(cname, info)).second) + { + Alog() << "cs_set_misc: Warning, unable to add duplicate entry " << cname; + delete info; + continue; + } + + if (set) + set->AddSubcommand(new CommandCSSetMisc(cname.c_str(), desc)); + if (saset) + saset->AddSubcommand(new CommandCSSASetMisc(cname.c_str(), desc)); + } + } + + void OnChanInfo(User *u, ChannelInfo *ci, bool ShowHidden) + { + for (std::map<std::string, CommandInfo *>::const_iterator it = this->Commands.begin(), it_end = this->Commands.end(); it != it_end; ++it) + { + if (!ShowHidden && it->second->ShowHidden) + continue; + + ci::string value; + if (ci->GetExtRegular("chanserv:" + it->first, value)) + { + u->SendMessage(Config.s_ChanServ, " %s: %s", it->first.c_str(), value.c_str()); + } + } + } + + void OnDatabaseWriteMetadata(void (*WriteMetadata)(const std::string &, const std::string &), ChannelInfo *ci) + { + for (std::map<std::string, CommandInfo *>::const_iterator it = this->Commands.begin(), it_end = this->Commands.end(); it != it_end; ++it) + { + ci::string value; + + if (ci->GetExtRegular("chanserv:" + it->first, value)) + { + WriteMetadata(it->first, value.c_str()); + } + } + } + + EventReturn OnDatabaseReadMetadata(ChannelInfo *ci, const std::string &key, const std::vector<std::string> ¶ms) + { + for (std::map<std::string, CommandInfo *>::const_iterator it = this->Commands.begin(), it_end = this->Commands.end(); it != it_end; ++it) + { + if (key == it->first) + { + ci->Extend("chanserv:" + it->first, new ExtensibleItemRegular<ci::string>(params[0].c_str())); + } + } + + return EVENT_CONTINUE; + } +}; + +MODULE_INIT(CSSetMisc) diff --git a/src/modules/os_info.cpp b/src/modules/os_info.cpp deleted file mode 100644 index c9e98ecbc..000000000 --- a/src/modules/os_info.cpp +++ /dev/null @@ -1,515 +0,0 @@ -/* os_info.c - Adds oper information lines to nicks/channels - * - * (C) 2003-2010 Anope Team - * Contact us at team@anope.org - * - * Based on the original module by Rob <rob@anope.org> - * Included in the Anope module pack since Anope 1.7.9 - * Anope Coder: DrStein <drstein@anope.org> - * - * Please read COPYING and README for further details. - * - * Send bug reports to the Anope Coder instead of the module - * author, because any changes since the inclusion into anope - * are not supported by the original author. - */ -/*************************************************************************/ - -#include "module.h" - -#define AUTHOR "Rob" - -/* Multi-language stuff */ -enum -{ - OINFO_SYNTAX, - OINFO_ADD_SUCCESS, - OINFO_DEL_SUCCESS, - OCINFO_SYNTAX, - OCINFO_ADD_SUCCESS, - OCINFO_DEL_SUCCESS, - OINFO_HELP, - OCINFO_HELP, - OINFO_HELP_CMD, - OCINFO_HELP_CMD, - LANG_NUM_STRINGS -}; - -/*************************************************************************/ - -static Module *me; - -/*************************************************************************/ - -class CommandNSOInfo : public Command -{ - private: - CommandReturn DoAdd(User *u, const std::vector<ci::string> ¶ms) - { - const char *nick = params[1].c_str(); - const char *info = params.size() > 2 ? params[2].c_str() : NULL; - NickAlias *na = NULL; - - if (!info) - { - this->OnSyntaxError(u, "ADD"); - return MOD_CONT; - } - - if ((na = findnick(nick))) /* ok we've found the user */ - { - na->nc->Shrink("os_info"); - /* Add the module data to the user */ - na->nc->Extend("os_info", new ExtensibleItemPointerArray<char>(sstrdup(info))); - me->NoticeLang(Config.s_NickServ, u, OINFO_ADD_SUCCESS, nick); - - } - else /* NickCore not found! */ - notice_lang(Config.s_NickServ, u, NICK_X_NOT_REGISTERED, nick); - - return MOD_CONT; - } - - CommandReturn DoDel(User *u, const std::vector<ci::string> ¶ms) - { - const char *nick = params[1].c_str(); - NickAlias *na = NULL; - - if ((na = findnick(nick))) /* ok we've found the user */ - { - na->nc->Shrink("os_info"); - - me->NoticeLang(Config.s_NickServ, u, OINFO_DEL_SUCCESS, nick); - - } - else /* NickCore not found! */ - notice_lang(Config.s_NickServ, u, NICK_X_NOT_REGISTERED, nick); - - return MOD_CONT; - } - public: - CommandNSOInfo() : Command("OINFO", 2, 3, "nickserv/oinfo") - { - } - - CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) - { - ci::string cmd = params[0]; - - if (cmd == "ADD") - return this->DoAdd(u, params); - else if (cmd == "DEL") - return this->DoDel(u, params); - else - this->OnSyntaxError(u, ""); - - return MOD_CONT; - } - - bool OnHelp(User *u, const ci::string &subcommand) - { - me->NoticeLang(Config.s_NickServ, u, OINFO_HELP); - return true; - } - - void OnSyntaxError(User *u, const ci::string &subcommand) - { - me->NoticeLang(Config.s_NickServ, u, OINFO_SYNTAX); - } - - void OnServHelp(User *u) - { - me->NoticeLang(Config.s_NickServ, u, OINFO_HELP_CMD); - } -}; - -class CommandCSOInfo : public Command -{ - private: - CommandReturn DoAdd(User *u, const std::vector<ci::string> ¶ms) - { - const char *chan = params[0].c_str(); - const char *info = params.size() > 2 ? params[2].c_str() : NULL; - ChannelInfo *ci = cs_findchan(chan); - - if (!info) - { - this->OnSyntaxError(u, "ADD"); - return MOD_CONT; - } - - ci->Shrink("os_info"); - /* Add the module data to the channel */ - ci->Extend("os_info", new ExtensibleItemPointerArray<char>(sstrdup(info))); - me->NoticeLang(Config.s_ChanServ, u, OCINFO_ADD_SUCCESS, chan); - - return MOD_CONT; - } - - CommandReturn DoDel(User *u, const std::vector<ci::string> ¶ms) - { - const char *chan = params[0].c_str(); - ChannelInfo *ci = cs_findchan(chan); - - /* Del the module data from the channel */ - ci->Shrink("os_info"); - me->NoticeLang(Config.s_ChanServ, u, OCINFO_DEL_SUCCESS, chan); - - return MOD_CONT; - } - public: - CommandCSOInfo() : Command("OINFO", 2, 3, "chanserv/oinfo") - { - } - - CommandReturn Execute(User *u, const std::vector<ci::string> ¶ms) - { - ci::string cmd = params[1]; - - if (cmd == "ADD") - return this->DoAdd(u, params); - else if (cmd == "DEL") - return this->DoDel(u, params); - else - this->OnSyntaxError(u, ""); - return MOD_CONT; - } - - bool OnHelp(User *u, const ci::string &subcommand) - { - me->NoticeLang(Config.s_ChanServ, u, OCINFO_HELP); - return true; - } - - void OnSyntaxError(User *u, const ci::string &subcommand) - { - me->NoticeLang(Config.s_ChanServ, u, OCINFO_SYNTAX); - } - - void OnServHelp(User *u) - { - me->NoticeLang(Config.s_ChanServ, u, OCINFO_HELP_CMD); - } -}; - -class OSInfo : public Module -{ - public: - OSInfo(const std::string &modname, const std::string &creator) : Module(modname, creator) - { - me = this; - - this->SetAuthor(AUTHOR); - this->SetType(SUPPORTED); - - this->AddCommand(NickServ, new CommandNSOInfo()); - this->AddCommand(ChanServ, new CommandCSOInfo()); - - const char* langtable_en_us[] = { - /* OINFO_SYNTAX */ - "Syntax: OINFO [ADD|DEL] nick <info>", - /* OINFO_ADD_SUCCESS */ - "OperInfo line has been added to nick %s", - /* OINFO_DEL_SUCCESS */ - "OperInfo line has been removed from nick %s", - /* OCINFO_SYNTAX */ - "Syntax: OINFO #chan [ADD|DEL] <info>", - /* OCINFO_ADD_SUCCESS */ - "OperInfo line has been added to channel %s", - /* OCINFO_DEL_SUCCESS */ - "OperInfo line has been removed from channel %s", - /* OINFO_HELP */ - "Syntax: OINFO [ADD|DEL] nick <info>\n" - "Add or Delete Oper information for the given nick\n" - "This will show up when any oper /ns info nick's the user.\n" - "and can be used for 'tagging' users etc....", - /* OCINFO_HELP */ - "Syntax: OINFO #chan [ADD|DEL] <info>\n" - "Add or Delete Oper information for the given channel\n" - "This will show up when any oper /cs info's the channel.\n" - "and can be used for 'tagging' channels etc....", - /* OINFO_HELP_CMD */ - " OINFO Add / Del an OperInfo line to a nick", - /* OCINFO_HELP_CMD */ - " OINFO Add / Del an OperInfo line to a channel" - }; - - const char* langtable_es[] = { - /* OINFO_SYNTAX */ - "Sintaxis: OINFO [ADD|DEL] nick <info>", - /* OINFO_ADD_SUCCESS */ - "Una linea OperInfo ha sido agregada al nick %s", - /* OINFO_DEL_SUCCESS */ - "La linea OperInfo ha sido removida del nick %s", - /* OCINFO_SYNTAX */ - "Sintaxis: OINFO [ADD|DEL] chan <info>", - /* OCINFO_ADD_SUCCESS */ - "Linea OperInfo ha sido agregada al canal %s", - /* OCINFO_DEL_SUCCESS */ - "La linea OperInfo ha sido removida del canal %s", - /* OINFO_HELP */ - "Sintaxis: OINFO [ADD|DEL] nick <info>\n" - "Agrega o elimina informacion para Operadores al nick dado\n" - "Esto se mostrara cuando cualquier operador haga /ns info nick\n" - "y puede ser usado para 'marcado' de usuarios, etc....", - /* OCINFO_HELP */ - "Sintaxis: OINFO [ADD|DEL] chan <info>\n" - "Agrega o elimina informacion para Operadores al canal dado\n" - "Esto se mostrara cuando cualquier operador haga /cs info canal\n" - "y puede ser usado para 'marcado' de canales, etc....", - /* OINFO_HELP_CMD */ - " OINFO Agrega / Elimina una linea OperInfo al nick", - /* OCINFO_HELP_CMD */ - " OINFO Agrega / Elimina una linea OperInfo al canal" - }; - - const char* langtable_nl[] = { - /* OINFO_SYNTAX */ - "Gebruik: OINFO [ADD|DEL] nick <info>", - /* OINFO_ADD_SUCCESS */ - "OperInfo regel is toegevoegd aan nick %s", - /* OINFO_DEL_SUCCESS */ - "OperInfo regel is weggehaald van nick %s", - /* OCINFO_SYNTAX */ - "Gebruik: OINFO [ADD|DEL] kanaal <info>", - /* OCINFO_ADD_SUCCESS */ - "OperInfo regel is toegevoegd aan kanaal %s", - /* OCINFO_DEL_SUCCESS */ - "OperInfo regel is weggehaald van kanaal %s", - /* OINFO_HELP */ - "Gebruik: OINFO [ADD|DEL] nick <info>\n" - "Voeg een Oper informatie regel toe aan de gegeven nick, of\n" - "verwijder deze. Deze regel zal worden weergegeven wanneer\n" - "een oper /ns info nick doet voor deze gebruiker, en kan worden\n" - "gebruikt om een gebruiker te 'markeren' etc...", - /* OCINFO_HELP */ - "Gebruik: OINFO [ADD|DEL] kanaal <info>\n" - "Voeg een Oper informatie regel toe aan de gegeven kanaal, of\n" - "verwijder deze. Deze regel zal worden weergegeven wanneer\n" - "een oper /cs info kanaal doet voor dit kanaal, en kan worden\n" - "gebruikt om een kanaal te 'markeren' etc...", - /* OINFO_HELP_CMD */ - " OINFO Voeg een OperInfo regel toe aan een nick of verwijder deze", - /* OCINFO_HELP_CMD */ - " OINFO Voeg een OperInfo regel toe aan een kanaal of verwijder deze" - }; - - const char* langtable_de[] = { - /* OINFO_SYNTAX */ - "Syntax: OINFO [ADD|DEL] Nickname <Information>", - /* OINFO_ADD_SUCCESS */ - "Eine OperInfo Linie wurde zu den Nicknamen %s hinzugefügt", - /* OINFO_DEL_SUCCESS */ - "Die OperInfo Linie wurde von den Nicknamen %s enfernt", - /* OCINFO_SYNTAX */ - "Syntax: OINFO [ADD|DEL] Channel <Information>", - /* OCINFO_ADD_SUCCESS */ - "Eine OperInfo Linie wurde zu den Channel %s hinzugefügt", - /* OCINFO_DEL_SUCCESS */ - "Die OperInfo Linie wurde von den Channel %s enfernt", - /* OINFO_HELP */ - "Syntax: OINFO [ADD|DEL] Nickname <Information>\n" - "Addiert oder löscht eine OperInfo Linie zu den angegebenen\n" - "Nicknamen.Sie wird angezeigt wenn ein Oper mit /ns info sich\n" - "über den Nicknamen informiert.", - /* OCINFO_HELP */ - "Syntax: OINFO [ADD|DEL] chan <info>\n" - "Addiert oder löscht eine OperInfo Linie zu den angegebenen\n" - "Channel.Sie wird angezeigt wenn ein Oper mit /cs info sich\n" - "über den Channel informiert.", - /* OINFO_HELP_CMD */ - " OINFO Addiert / Löscht eine OperInfo Linie zu / von einen Nicknamen", - /* OCINFO_HELP_CMD */ - " OINFO Addiert / Löscht eine OperInfo Linie zu / von einen Channel" - }; - - const char* langtable_pt[] = { - /* OINFO_SYNTAX */ - "Sintaxe: OINFO [ADD|DEL] nick <informação>", - /* OINFO_ADD_SUCCESS */ - "A linha OperInfo foi adicionada ao nick %s", - /* OINFO_DEL_SUCCESS */ - "A linha OperInfo foi removida do nick %s", - /* OCINFO_SYNTAX */ - "Sintaxe: OINFO [ADD|DEL] canal <informação>", - /* OCINFO_ADD_SUCCESS */ - "A linha OperInfo foi adicionada ao canal %s", - /* OCINFO_DEL_SUCCESS */ - "A linha OperInfo foi removida do canal %s", - /* OINFO_HELP */ - "Sintaxe: OINFO [ADD|DEL] nick <informação>\n" - "Adiciona ou apaga informação para Operadores ao nick fornecido\n" - "Isto será mostrado quando qualquer Operador usar /ns info nick\n" - "e pode ser usado para 'etiquetar' usuários etc...", - /* OCINFO_HELP */ - "Sintaxe: OINFO [ADD|DEL] canal <informação>\n" - "Adiciona ou apaga informação para Operadores ao canal fornecido\n" - "Isto será mostrado quando qualquer Operador usar /cs info canal\n" - "e pode ser usado para 'etiquetar' canais etc...", - /* OINFO_HELP_CMD */ - " OINFO Adiciona ou Apaga a linha OperInfo para um nick", - /* OCINFO_HELP_CMD */ - " OINFO Adiciona ou Apaga a linha OperInfo para um canal" - }; - - const char* langtable_ru[] = { - /* OINFO_SYNTAX */ - "Ñèíòàêñèñ: OINFO ADD|DEL íèê òåñò", - /* OINFO_ADD_SUCCESS */ - "Îïåð-Èíôîðìàöèÿ äëÿ íèêà %s äîáàâëåíà", - /* OINFO_DEL_SUCCESS */ - "Îïåð-Èíôîðìàöèÿ äëÿ íèêà %s áûëà óäàëåíà", - /* OCINFO_SYNTAX */ - "Ñèíòàêñèñ: OINFO ADD|DEL #êàíàë òåêñò", - /* OCINFO_ADD_SUCCESS */ - "Îïåð-Èíôîðìàöèÿ äëÿ êàíàëà %s óñïåøíî óñòàíîâëåíà", - /* OCINFO_DEL_SUCCESS */ - "Îïåð-Èíôîðìàöèÿ äëÿ êàíàëà %s áûëà óäàëåíà", - /* OINFO_HELP */ - "Ñèíòàêñèñ: OINFO ADD|DEL íèê òåêñò\n" - "Óñòàíàâëèâàåò èëè óäàëÿåò Îïåð-Èíôîðìàöèþ äëÿ óêàçàííîãî íèêà,\n" - "êîòîðàÿ áóäåò ïîêàçàíà ëþáîìó îïåðàòîðó, çàïðàøèâàþùåìó INFO íèêà.\n" - "Ìîæåò áûòü èñïîëüçîâàíà äëÿ 'ïîìåòêè' ïîëüçîâàòåëåé è ò. ä...", - /* OCINFO_HELP */ - "Ñèíòàêñèñ: OINFO ADD|DEL #êàíàë òåêñò\n" - "Óñòàíàâëèâàåò èëè óäàëÿåò Îïåð-Èíôîðìàöèþ äëÿ óêàçàííîãî êàíàëà,\n" - "êîòîðàÿ áóäåò ïîêàçàíà ëþáîìó îïåðàòîðó, çàïðàøèâàþùåìó INFO êàíàëà.\n" - "Ìîæåò áûòü èñïîëüçîâàíà äëÿ 'ïîìåòêè' êàíàëîâ è ò. ä...", - /* OINFO_HELP_CMD */ - " OINFO Äîáàâëÿåò/Óäàëÿåò îïåð-èíôî äëÿ íèêà", - /* OCINFO_HELP_CMD */ - " OINFO Äîáàâëÿåò/Óäàëÿåò îïåð-èíôî äëÿ êàíàëà" - }; - - const char* langtable_it[] = { - /* OINFO_SYNTAX */ - "Sintassi: OINFO [ADD|DEL] nick <info>", - /* OINFO_ADD_SUCCESS */ - "Linea OperInfo aggiunta al nick %s", - /* OINFO_DEL_SUCCESS */ - "Linea OperInfo rimossa dal nick %s", - /* OCINFO_SYNTAX */ - "Sintassi: OINFO [ADD|DEL] chan <info>", - /* OCINFO_ADD_SUCCESS */ - "Linea OperInfo aggiunta al canale %s", - /* OCINFO_DEL_SUCCESS */ - "Linea OperInfo rimossa dal canale %s", - /* OINFO_HELP */ - "Sintassi: OINFO [ADD|DEL] nick <info>\n" - "Aggiunge o rimuove informazioni Oper per il nick specificato\n" - "Queste vengono mostrate quando un oper esegue il comando /ns info <nick>\n" - "e possono essere utilizzate per 'marchiare' gli utenti ecc...", - /* OCINFO_HELP */ - "Sintassi: OINFO [ADD|DEL] chan <info>\n" - "Aggiunge o rimuove informazioni Oper per il canale specificato\n" - "Queste vengono mostrate quando un oper esegue il comando /cs info <canale>\n" - "e possono essere utilizzate per 'marchiare' i canali ecc...", - /* OINFO_HELP_CMD */ - " OINFO Aggiunge/Rimuove una linea OperInfo ad/da un nick", - /* OCINFO_HELP_CMD */ - " OINFO Aggiunge/Rimuove una linea OperInfo ad/da un canale" - }; - - this->InsertLanguage(LANG_EN_US, LANG_NUM_STRINGS, langtable_en_us); - this->InsertLanguage(LANG_ES, LANG_NUM_STRINGS, langtable_es); - this->InsertLanguage(LANG_NL, LANG_NUM_STRINGS, langtable_nl); - this->InsertLanguage(LANG_DE, LANG_NUM_STRINGS, langtable_de); - this->InsertLanguage(LANG_PT, LANG_NUM_STRINGS, langtable_pt); - this->InsertLanguage(LANG_RU, LANG_NUM_STRINGS, langtable_ru); - this->InsertLanguage(LANG_IT, LANG_NUM_STRINGS, langtable_it); - - Implementation i[] = { I_OnNickInfo, I_OnChanInfo, I_OnDatabaseReadMetadata, I_OnDatabaseWriteMetadata }; - ModuleManager::Attach(i, this, 4); - } - - ~OSInfo() - { - OnSaveDatabase(); - - for (nickcore_map::const_iterator it = NickCoreList.begin(), it_end = NickCoreList.end(); it != it_end; ++it) - { - NickCore *nc = it->second; - - nc->Shrink("os_info"); - } - - for (registered_channel_map::const_iterator it = RegisteredChannelList.begin(), it_end = RegisteredChannelList.end(); it != it_end; ++it) - { - ChannelInfo *ci = it->second; - - ci->Shrink("os_info"); - } - } - - void OnNickInfo(User *u, NickAlias *na, bool) - { - if (is_oper(u)) - { - char *c; - if (na->nc->GetExtArray("os_info", c)) - u->SendMessage(Config.s_NickServ, " OperInfo: %s", c); - } - } - - void OnChanInfo(User *u, ChannelInfo *ci, bool) - { - if (is_oper(u)) - { - char *c; - if (ci->GetExtArray("os_info", c)) - u->SendMessage(Config.s_ChanServ, " OperInfo: %s", c); - } - } - - void OnDatabaseWriteMetadata(void (*WriteMetadata)(const std::string &, const std::string &), NickCore *nc) - { - char *c; - - if (nc->GetExtArray("os_info", c)) - { - std::string buf = ":"; - buf += c; - WriteMetadata("OS_INFO", buf.c_str()); - } - } - - void OnDatabaseWriteMetadata(void (*WriteMetadata)(const std::string &, const std::string &), ChannelInfo *ci) - { - char *c; - - if (ci->GetExtArray("os_info", c)) - { - std::string buf = ":"; - buf += c; - WriteMetadata("OS_INFO", buf.c_str()); - } - } - - EventReturn OnDatabaseReadMetadata(NickCore *nc, const std::string &key, const std::vector<std::string> ¶ms) - { - if (key == "OS_INFO") - { - nc->Shrink("os_info"); - nc->Extend("os_info", new ExtensibleItemPointerArray<char>(sstrdup(params[0].c_str()))); /// We really should use std::string here... - - return EVENT_STOP; - } - - return EVENT_CONTINUE; - } - - EventReturn OnDatabaseReadMetadata(ChannelInfo *ci, const std::string &key, const std::vector<std::string> ¶ms) - { - if (key == "OS_INFO") - { - ci->Shrink("os_info"); - ci->Extend("os_info", new ExtensibleItemPointerArray<char>(sstrdup(params[0].c_str()))); - - return EVENT_STOP; - } - - return EVENT_CONTINUE; - } -}; - -MODULE_INIT(OSInfo) diff --git a/src/nickcore.cpp b/src/nickcore.cpp index 9d51422c9..6c9392aef 100644 --- a/src/nickcore.cpp +++ b/src/nickcore.cpp @@ -9,9 +9,8 @@ NickCore::NickCore(const std::string &coredisplay) if (coredisplay.empty()) throw CoreException("Empty display passed to NickCore constructor"); - display = email = greet = url = NULL; + display = email = greet = NULL; ot = NULL; - icq = 0; language = channelcount = 0; lastmail = 0; @@ -63,9 +62,6 @@ NickCore::~NickCore() delete [] this->email; if (this->greet) delete [] this->greet; - if (this->url) - delete [] this->url; - if (!this->memos.memos.empty()) { for (unsigned i = 0, end = this->memos.memos.size(); i < end; ++i) diff --git a/src/nickserv.cpp b/src/nickserv.cpp index 8d59ae672..70cc3d654 100644 --- a/src/nickserv.cpp +++ b/src/nickserv.cpp @@ -123,8 +123,6 @@ void get_core_stats(long *nrec, long *memuse) mem += strlen(nc->display) + 1; if (!nc->pass.empty()) mem += (nc->pass.capacity() + (2 * sizeof(size_t)) + (2 * sizeof(void *))); - if (nc->url) - mem += strlen(nc->url) + 1; if (nc->email) mem += strlen(nc->email) + 1; if (nc->greet) diff --git a/src/regchannel.cpp b/src/regchannel.cpp index c4c29c0c4..4670bc109 100644 --- a/src/regchannel.cpp +++ b/src/regchannel.cpp @@ -22,7 +22,7 @@ ChannelInfo::ChannelInfo(const std::string &chname) throw CoreException("Empty channel passed to ChannelInfo constructor"); founder = successor = NULL; - desc = url = email = last_topic = forbidby = forbidreason = NULL; + desc = last_topic = forbidby = forbidreason = NULL; last_topic_time = 0; levels = NULL; entry_message = NULL; @@ -83,10 +83,6 @@ ChannelInfo::~ChannelInfo() if (this->desc) delete [] this->desc; - if (this->url) - delete [] this->url; - if (this->email) - delete [] this->email; if (this->entry_message) delete [] this->entry_message; |