1
0
forked from 0ad/0ad
0ad/source/ps/i18n.h
2005-05-22 22:58:27 +00:00

13 lines
282 B
C++
Executable File

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