mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-09 15:19:26 +01:00
17 lines
377 B
C
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
|
|
|