2008-05-04 00:51:50 +00:00

17 lines
377 B
C

/*
* This file holds collections of strings to make localization easier.
* Keep the max string length to 30 characters or bad things will happen
*/
#define MENU_STRING_LENGTH 30
#ifdef INTL_SPANISH
//#include "intl/spanish.h"
#elif defined INTL_GERMAN
//#include "intl/german.h"
#elif defined INTL_DUTCH
#include "intl/dutch.h"
#else
#include "intl/english.h"
#endif