<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-7">
<META content="MSHTML 6.00.2800.1400" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>when i try to compile after add the language put 
this : form language.c</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>/* Order in which languages should be displayed: 
(alphabetical) */<BR>static int langorder[] = {<BR>&nbsp;&nbsp;&nbsp; 
LANG_EN_US,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* English (US) 
*/<BR>&nbsp;&nbsp;&nbsp; 
LANG_NL,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* 
Dutch */<BR>&nbsp;&nbsp;&nbsp; 
LANG_FR,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* 
French */<BR>&nbsp;&nbsp;&nbsp; 
LANG_DE,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* 
German */<BR>&nbsp;&nbsp;&nbsp; 
LANG_HU,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* 
Hungarian */<BR>&nbsp;&nbsp;&nbsp; 
LANG_IT,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* 
Italian */<BR>/*&nbsp;&nbsp;&nbsp; LANG_JA_JIS,*/&nbsp;&nbsp;&nbsp; /* Japanese 
(JIS encoding) */<BR>&nbsp;&nbsp;&nbsp; 
LANG_JA_EUC,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Japanese (EUC 
encoding) */<BR>&nbsp;&nbsp;&nbsp; 
LANG_JA_SJIS,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Japanese (SJIS encoding) 
*/<BR>&nbsp;&nbsp;&nbsp; 
LANG_PT,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* 
Portugese */<BR>&nbsp;&nbsp;&nbsp; 
LANG_ES,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* 
Spanish */<BR>&nbsp;&nbsp;&nbsp; 
LANG_TR,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* 
Turkish */<BR>&nbsp;&nbsp;&nbsp; 
LANG_GR,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* 
Greek */<BR>};</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>/* Filenames for language files: */<BR>static 
struct {<BR>&nbsp;&nbsp;&nbsp; int num;<BR>&nbsp;&nbsp;&nbsp; const char 
*filename;<BR>} filenames[] = {<BR>&nbsp;&nbsp;&nbsp; { 
LANG_EN_US,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "en_us" },<BR>&nbsp;&nbsp;&nbsp; 
{ LANG_NL,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "nl" 
},<BR>&nbsp;&nbsp;&nbsp; { 
LANG_FR,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "fr" 
},<BR>&nbsp;&nbsp;&nbsp; { 
LANG_DE,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "de" 
},<BR>&nbsp;&nbsp;&nbsp; { 
LANG_HU,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "hu" 
},<BR>&nbsp;&nbsp;&nbsp; { 
LANG_IT,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "it" 
},<BR>/*&nbsp;&nbsp;&nbsp; { LANG_JA_JIS,&nbsp;&nbsp;&nbsp; "ja_jis" 
},*/<BR>&nbsp;&nbsp;&nbsp; { LANG_JA_EUC,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "ja_euc" 
},<BR>&nbsp;&nbsp;&nbsp; { LANG_JA_SJIS,&nbsp;&nbsp;&nbsp;&nbsp; "ja_sjis" 
},<BR>&nbsp;&nbsp;&nbsp; { 
LANG_PT,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "pt" 
},<BR>&nbsp;&nbsp;&nbsp; { 
LANG_ES,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "es" 
},<BR>&nbsp;&nbsp;&nbsp; { 
LANG_TR,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "tr" 
},<BR>&nbsp;&nbsp;&nbsp; { 
LANG_GR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "gr" 
},<BR>&nbsp;&nbsp;&nbsp; { -1, NULL }<BR>};</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>and from language.h this :</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>#define LANG_EN_US&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* United States English */<BR>#define 
LANG_UNUSED1&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Unused; 
was Japanese (JIS encoding) */<BR>#define LANG_JA_EUC&nbsp;&nbsp;&nbsp;&nbsp; 
2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Japanese (EUC encoding) */<BR>#define 
LANG_JA_SJIS&nbsp;&nbsp;&nbsp; 3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Japanese 
(SJIS encoding) */<BR>#define 
LANG_ES&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Spanish */<BR>#define 
LANG_PT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Portugese */<BR>#define 
LANG_FR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* French */<BR>#define 
LANG_TR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Turkish */<BR>#define 
LANG_IT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Italian */<BR>#define 
LANG_DE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* German */<BR>#define 
LANG_NL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Dutch */<BR>#define 
LANG_HU&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Hungarian */<BR>#define 
LANG_GR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Greek */</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>#define 
NUM_LANGS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
/* Number of languages */<BR>#define LANG_DEFAULT&nbsp;&nbsp;&nbsp; 
-1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* "Use the default" setting 
*/<BR></FONT></DIV>
<DIV><FONT face=Arial size=2>i get this error in compile</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>ake<BR>make -C lang langstrs.h<BR>make[1]: Entering 
directory `/home/irc/ircservices-5.0.31/lang'<BR>Generating langstrs.h... 1204 
strings<BR>langstrs.h unchanged<BR>make[1]: Leaving directory 
`/home/irc/ircservices-5.0.31/lang'<BR>gcc&nbsp; -O2 -fno-strict-aliasing -g 
-Wall -Wmissing-prototypes -fno-builtin-log -c language.c -o 
language.o<BR>language.c:60: parse error before string constant<BR>make: *** 
[language.o] Error 1</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>what i have to do for find the solution and 
compile?</FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp;</DIV></FONT></BODY></HTML>