1
1
forked from 0ad/0ad
0ad/source/ps/i18n.h

12 lines
206 B
C
Raw Normal View History

#include "i18n/Interface.h"
extern I18n::CLocale_interface* g_CurrentLocale;
#define translate(s) g_CurrentLocale->Translate(s)
namespace I18n
{
bool LoadLanguage(const char* name);
void Shutdown();
}