mirror of
https://github.com/anope/anope.git
synced 2026-06-28 11:26:37 +02:00
BUILD : 1.7.4 (309) BUGS : none NOTES : Added Hungarian and Polish language files.
git-svn-id: svn://svn.anope.org/anope/trunk@309 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@188 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
91558de243
commit
ca48e3ce66
@@ -1,10 +1,10 @@
|
||||
Anope Version S V N
|
||||
-------------------
|
||||
Provided by Anope Dev. <dev@anope.org> - 2004
|
||||
07/23 F Fixed BotServ buffer [#131]
|
||||
07/17 A Switched to autoconf for configure script. [ #00]
|
||||
07/05 A Warning when LocalAddress conflicts with RemoteServer. [#118]
|
||||
06/18 A Added proper Bahamut1.8 support. [ #55]
|
||||
07/23 F Fixed BotServ buffer [#131]
|
||||
07/22 F Free NSNickTracking when a user quits. [#126]
|
||||
07/22 F NOOP bug with wildcards. [#115]
|
||||
07/22 F Removed RESTRICTED from incorrectly labeled lang file entry. [#111]
|
||||
@@ -24,6 +24,11 @@ Provided by Anope Dev. <dev@anope.org> - 2004
|
||||
Provided by Trystan <trystan@nomadirc.net> - 2004
|
||||
07/22 A Added VIAGRA support for modes +A and +H. [ #99]
|
||||
|
||||
Provided by Janos Kapitany <sarkanyka@cjbchat.hu>
|
||||
08/04 A New language file hun.l (Hungarian) [ #00]
|
||||
|
||||
Provided by Mateusz Szczyrzyca <annihilator@ircnet.pl> - 2004
|
||||
08/04 A New language file pl.l (Polish) [ #00]
|
||||
|
||||
Anope Version 1.7.4
|
||||
-------------------
|
||||
|
||||
+4
-2
@@ -579,9 +579,11 @@ struct nickcore_ {
|
||||
#define LANG_GR 11 /* Greek */
|
||||
#define LANG_NL 12 /* Dutch */
|
||||
#define LANG_RU 13 /* Russian */
|
||||
#define LANG_HUN 14 /* Hungarian */
|
||||
#define LANG_PL 15 /* Polish */
|
||||
|
||||
#define NUM_LANGS 14 /* Number of languages */
|
||||
#define USED_LANGS 11 /* Number of languages provided */
|
||||
#define NUM_LANGS 16 /* Number of languages */
|
||||
#define USED_LANGS 13 /* Number of languages provided */
|
||||
|
||||
#define DEF_LANGUAGE LANG_EN_US
|
||||
|
||||
|
||||
+11
-7
@@ -6,8 +6,8 @@ MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \
|
||||
'TOUCH=${TOUCH}' 'SHELL=${SHELL}' 'DATDEST=${DATDEST}' \
|
||||
'RUNGROUP=${RUNGROUP}' 'USE_MODULES=${USE_MODULES}'
|
||||
|
||||
LANGOBJS = cat de en_us es fr gr nl pt tr it ru
|
||||
LANGSRCS = cat de en_us.l es fr.l gr.l nl.l pt.l tr.l it.l ru.l
|
||||
LANGOBJS = cat de en_us es fr gr hun it nl pl pt ru tr
|
||||
LANGSRCS = cat.l de.l en_us.l es.l fr.l gr.l hun.l it.l nl.l pl.l pt.l ru.l tr.l
|
||||
|
||||
LANGCOMP = ./langcomp
|
||||
#LANGCOMP = ./langcomp -w
|
||||
@@ -52,16 +52,20 @@ fr: fr.l langcomp index
|
||||
./langcomp $@.l
|
||||
gr: gr.l langcomp index
|
||||
./langcomp $@.l
|
||||
nl: nl.l langcomp index
|
||||
./langcomp $@.l
|
||||
pt: pt.l langcomp index
|
||||
./langcomp $@.l
|
||||
tr: tr.l langcomp index
|
||||
hun: hun.l langcomp index
|
||||
./langcomp $@.l
|
||||
it: it.l langcomp index
|
||||
./langcomp $@.l
|
||||
nl: nl.l langcomp index
|
||||
./langcomp $@.l
|
||||
pl: pl.l langcomp index
|
||||
./langcomp $@.l
|
||||
pt: pt.l langcomp index
|
||||
./langcomp $@.l
|
||||
ru: ru.l langcomp index
|
||||
./langcomp $@.l
|
||||
tr: tr.l langcomp index
|
||||
./langcomp $@.l
|
||||
|
||||
langcomp: langcomp.c
|
||||
$(CC) $(CFLAGS) langcomp.c -o $@
|
||||
|
||||
+6053
File diff suppressed because it is too large
Load Diff
@@ -42,6 +42,8 @@ static int langorder[NUM_LANGS] = {
|
||||
LANG_GR, /* Greek */
|
||||
LANG_NL, /* Dutch */
|
||||
LANG_RU, /* Russian */
|
||||
LANG_HUN, /* Hungarian */
|
||||
LANG_PL, /* Polish */
|
||||
};
|
||||
|
||||
/*************************************************************************/
|
||||
@@ -160,6 +162,8 @@ void lang_init()
|
||||
load_lang(LANG_IT, "it");
|
||||
load_lang(LANG_NL, "nl");
|
||||
load_lang(LANG_RU, "ru");
|
||||
load_lang(LANG_HUN, "hun");
|
||||
load_lang(LANG_PL, "pl");
|
||||
|
||||
for (i = 0; i < NUM_LANGS; i++) {
|
||||
if (langtexts[langorder[i]] != NULL) {
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="4"
|
||||
VERSION_BUILD="299"
|
||||
VERSION_BUILD="309"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.4 (309)
|
||||
# BUGS : none
|
||||
# NOTES : Added Hungarian and Polish language files.
|
||||
#
|
||||
# BUILD : 1.7.4 (299)
|
||||
# BUGS : none
|
||||
# NOTES : Fixed repository decteion and added -P flag for am script.
|
||||
|
||||
Reference in New Issue
Block a user