Setup: add spanish language file.

This commit is contained in:
Arne Fitzenreiter
2010-10-21 17:52:25 +02:00
parent 077de40a4c
commit 38a76ff405
2 changed files with 4 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ struct knic knics[20] = { { "" , "" , "" , "" } };
extern char *en_tr[];
extern char *de_tr[];
extern char *fr_tr[];
extern char *es_tr[];
int main(int argc, char *argv[])
{
@@ -31,8 +31,8 @@ int main(int argc, char *argv[])
char *shortlangnames[] = { "en", NULL };
char **langtrs[] = { en_tr, NULL };
#else
char *shortlangnames[] = { "de", "en", "fr", NULL };
char **langtrs[] = { de_tr, en_tr, fr_tr, NULL };
char *shortlangnames[] = { "de", "en", "fr", "es", NULL };
char **langtrs[] = { de_tr, en_tr, fr_tr, es_tr, NULL };
#endif
int choice;
char *sections[11]; /* need to fill this out AFTER knowning lang */