]> git.ipfire.org Git - thirdparty/sarg.git/blob - language.c
Use configurable paths for the files that used to reside in SYSCONFDIR.
[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 char buf[MAXLEN];
34 int record=0;
35
36 if (snprintf(lfile,sizeof(lfile),LANGDIR"/%s",language)>=sizeof(lfile)) {
37 fprintf(stderr, "SARG: (language) language name is too long: %s/%s\n",LANGDIR,language);
38 exit(1);
39 }
40
41 if((fp_text=fopen(lfile,"r"))==NULL) {
42 fprintf(stderr, "SARG: (language) Cannot open language file: %s\n",lfile);
43 exit(1);
44 }
45 if(langcode)
46 printf("Reading language from %s\n",lfile);
47
48 while(record<sizeof(text)/sizeof(text[0]) && fgets(buf,sizeof(buf),fp_text)!=NULL) {
49 if (getword(warea,sizeof(warea),buf,'"')<0 || getword(warea,sizeof(warea),buf,'"')<0) {
50 printf("SARG: Maybe you have a broken record or garbage in your %s file.\n",lfile);
51 exit(1);
52 }
53 strcpy(text[record],warea);
54
55 if(langcode)
56 printf("%d %s\n",record,warea);
57
58 record++;
59 }
60
61 fclose(fp_text);
62
63 return;
64 }