Files
source/i18n/include/language.hpp
BeatAroundTheBuscherandGitHub ed00830202 Fixes Upper/Lower Casing for include paths (#487)
* Fixing upper/lower case for includes

types.h, zconf.h and zlib.h were renamed so that global includes like Types.h
are not used.
2025-08-16 22:01:12 -03:00

24 lines
240 B
C++

#pragma once
#include <types.h>
namespace i18n {
enum class Lang
{
en,
de,
ru,
nl,
pl,
fr,
it,
zh
};
}
extern const i18n::Lang g_lang;
extern const int MAX_MESSAGES_ON_MAP_BOTTOM;
auto GetLanguagePrefix() -> const STR;