17 lines
377 B
C
Raw Normal View History

2008-04-30 03:30:21 +00:00
/*
* 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
2008-05-04 00:51:50 +00:00
#include "intl/dutch.h"
2008-04-30 03:30:21 +00:00
#else
#include "intl/english.h"
#endif