]> git.ipfire.org Git - thirdparty/sarg.git/blob - language.c
Moved all the functions declarations from conf.h to defs.h for consistency.
[thirdparty/sarg.git] / language.c
1 /*
2 * AUTHOR: Pedro Lineu Orso pedro.orso@gmail.com
3 * 1998, 2008
4 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
5 *
6 * SARG donations:
7 * please look at http://sarg.sourceforge.net/donations.php
8 * ---------------------------------------------------------------------
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
23 *
24 */
25
26 #include "include/conf.h"
27 #include "include/defs.h"
28
29 void language_load(const char *language)
30 {
31 char lfile[FILENAME_MAX];
32 FILE *fp_text;
33 int record=0;
34
35 if (snprintf(lfile,sizeof(lfile),"%s/languages/%s",SYSCONFDIR,language)>=sizeof(lfile)) {
36 fprintf(stderr, "SARG: (language) language name is too long: %s/languages/%s\n",SYSCONFDIR,language);
37 exit(1);
38 }
39
40 if((fp_text=fopen(lfile,"r"))==NULL) {
41 fprintf(stderr, "SARG: (language) Cannot open language file: %s\n",lfile);
42 exit(1);
43 }
44
45 while(fgets(buf,MAXLEN,fp_text)!=NULL) {
46 if (getword(warea,sizeof(warea),buf,'"')<0 || getword(warea,sizeof(warea),buf,'"')<0) {
47 printf("SARG: Maybe you have a broken record or garbage in your %s file.\n",lfile);
48 exit(1);
49 }
50 strcpy(text[record],warea);
51
52 if(langcode)
53 printf("%d %s\n",record,warea);
54
55 record++;
56 }
57
58 fclose(fp_text);
59
60 return;
61 }