From 67ec21f4e9c99b21db94441565032a8cab90a87f Mon Sep 17 00:00:00 2001 From: "ZarTek @ CREOLE" Date: Wed, 14 Dec 2022 15:20:44 +0100 Subject: [PATCH] unreal to unrealircd --- doc/conf/help/help.conf | 2 +- doc/conf/help/help.es.conf | 2 +- doc/conf/help/help.fr.conf | 2 +- doc/conf/help/help.nl.conf | 2 +- doc/conf/help/help.tr.conf | 2 +- doc/technical/005.txt | 8 ++++---- include/common.h | 2 +- src/fdlist.c | 2 +- src/hash.c | 2 +- src/macosx/UnrealIRCd/Base.lproj/Main.storyboard | 2 +- src/modules/list.c | 4 ++-- src/unrealdb.c | 2 +- 12 files changed, 16 insertions(+), 16 deletions(-) diff --git a/doc/conf/help/help.conf b/doc/conf/help/help.conf index 5bdf678a0..2e6581124 100644 --- a/doc/conf/help/help.conf +++ b/doc/conf/help/help.conf @@ -1363,7 +1363,7 @@ help Svsnline { " Adds a global realname ban."; " Must be sent through an U-Lined server."; " The reason must be a single parameter therefore"; - " spaces are indicated by _, Unreal will internally"; + " spaces are indicated by _, Unrealircd will internally"; " translate these to spaces."; " -"; " Syntax: SVSNLINE + : (To add a ban)"; diff --git a/doc/conf/help/help.es.conf b/doc/conf/help/help.es.conf index 2892ebab0..b520d5ba6 100644 --- a/doc/conf/help/help.es.conf +++ b/doc/conf/help/help.es.conf @@ -1320,7 +1320,7 @@ help Svsnline { " Añade un ban global aun nombre real (realname)."; " Debe enviarse a través de un servidor con U-Lines."; " La razón debe ser el único parámetro, por lo tanto"; - " los espacios se indican con _, el Unreal lo hará internamente"; + " los espacios se indican con _, el Unrealircd lo hará internamente"; " trasladar esto a espacios."; " -"; " Sintaxis: SVSNLINE + : (para añadir un ban)"; diff --git a/doc/conf/help/help.fr.conf b/doc/conf/help/help.fr.conf index 71e3881c9..e00930e4e 100644 --- a/doc/conf/help/help.fr.conf +++ b/doc/conf/help/help.fr.conf @@ -1268,7 +1268,7 @@ help Svsnline { " Ajoute un ban global sur un realname."; " Doit être envoyé à travers un serveur avec U:Line."; " La raison doit être un seul paramètre c'est pour quoi"; - " les espaces sont indiqués par des _, Unreal les traduira"; + " les espaces sont indiqués par des _, Unrealircd les traduira"; " en interne par des espaces"; " -"; " Syntaxe : SVSNLINE + : (pour ajouter un ban)"; diff --git a/doc/conf/help/help.nl.conf b/doc/conf/help/help.nl.conf index 6d082aed7..862a1da08 100644 --- a/doc/conf/help/help.nl.conf +++ b/doc/conf/help/help.nl.conf @@ -1315,7 +1315,7 @@ help Svsnline { " Voegt een wereldwijd verbod op echte namen toe."; " Moet via een U-Lined server worden verstuurd."; " De reden moet dus één enkele parameter zijn"; - " spaties worden aangegeven met _, Unreal will intern"; + " spaties worden aangegeven met _, Unrealircd will intern"; "vertaal deze naar spaties."; " -"; " Syntaxis: SVSNLINE + : (Om een ban toe te voegen)"; diff --git a/doc/conf/help/help.tr.conf b/doc/conf/help/help.tr.conf index 74a67af72..e70b0c040 100644 --- a/doc/conf/help/help.tr.conf +++ b/doc/conf/help/help.tr.conf @@ -1362,7 +1362,7 @@ help Svsnline { " Global bir realname (isim) yasağını ekler."; " Sadece U:Lined (Servisler)'den gönderilebilir."; " Bir parametre ile sebeb belirtilmelidir."; - " Kelime aralarında boşluk yerine _, kullanılmalıdır. Unreal otomatik olarak"; + " Kelime aralarında boşluk yerine _, kullanılmalıdır. Unrealircd otomatik olarak"; " boşluk karaterine çevirecektir."; " -"; " Kullanımı: SVSNLINE +/- : (ban ekler.)"; diff --git a/doc/technical/005.txt b/doc/technical/005.txt index c1d9b3775..f86d5959c 100644 --- a/doc/technical/005.txt +++ b/doc/technical/005.txt @@ -18,14 +18,14 @@ by this server" Currently UnrealIRCd supports several tokens that are included in numeric 005. A list of all tokens, their respective value and a brief description are listed below. -Unreal attempts to follow the proposed ISupport standard as much as possible. Unreal only -ignores the standard in one regard, the TARGMAX token. This token is believed to be +Unrealircd attempts to follow the proposed ISupport standard as much as possible. Unrealircd +only ignores the standard in one regard, the TARGMAX token. This token is believed to be impractical and technically impossible to correctly implement due to existing limitations in the standard. Therefore, this token is not currently supported. -Unreal does additionally provide a few tokens which are not specified in the standard, these +Unrealircd does additionally provide a few tokens which are not specified in the standard, these include: HCN, AWAYLEN, WATCH, SILENCE, EXTBAN, ELIST, CMDS, NAMESX, UHNAMES, and WATCHOPTS. -Unreal also maintains a few legacy tokens such as MAXCHANNELS and WALLCHOPS to ensure +Unrealircd also maintains a few legacy tokens such as MAXCHANNELS and WALLCHOPS to ensure compatibility until the ISupport standard is more widely accepted by clients. Token Value Default Value Description diff --git a/include/common.h b/include/common.h index 5a0d1d63d..8cddcda7c 100644 --- a/include/common.h +++ b/include/common.h @@ -167,7 +167,7 @@ extern MODVAR unsigned char char_atribs[]; * you are doing. */ -/* IRCu/Hybrid/Unreal way now :) -Stskeeps */ +/* IRCu/Hybrid/unrealircd way now :) -Stskeeps */ #define EXPAR1 extchmstr[0] #define EXPAR2 extchmstr[1] diff --git a/src/fdlist.c b/src/fdlist.c index ae57aee82..3c68477e3 100644 --- a/src/fdlist.c +++ b/src/fdlist.c @@ -19,7 +19,7 @@ #include "unrealircd.h" -/* new FD management code, based on mowgli.eventloop from atheme, hammered into Unreal by +/* new FD management code, based on mowgli.eventloop from atheme, hammered into Unrealircd by * me, nenolod. */ FDEntry fd_table[MAXCONNECTIONS + 1]; diff --git a/src/hash.c b/src/hash.c index 0901af9c8..29b21e1b0 100644 --- a/src/hash.c +++ b/src/hash.c @@ -320,7 +320,7 @@ int add_to_client_hash_table(const char *name, Client *client) /* * If you see this, you have probably found your way to why changing the * base version made the IRCd become weird. This has been the case in all - * Unreal versions since 3.0. I'm sick of people ripping the IRCd off and + * Unrealircd versions since 3.0. I'm sick of people ripping the IRCd off and * just slapping on some random BASE_VERSION while not changing * a single bit of code. YOU DID NOT WRITE ALL OF THIS THEREFORE YOU DO NOT * DESERVE TO BE ABLE TO DO THAT. If you found this however, I'm OK with you diff --git a/src/macosx/UnrealIRCd/Base.lproj/Main.storyboard b/src/macosx/UnrealIRCd/Base.lproj/Main.storyboard index 662640c4e..aa757f309 100644 --- a/src/macosx/UnrealIRCd/Base.lproj/Main.storyboard +++ b/src/macosx/UnrealIRCd/Base.lproj/Main.storyboard @@ -134,7 +134,7 @@