mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-02-22 21:51:10 +00:00
17 lines
341 B
C++
17 lines
341 B
C++
#pragma once
|
|
|
|
enum class ELanguage : uint32_t
|
|
{
|
|
English = 1,
|
|
Japanese,
|
|
German,
|
|
French,
|
|
Spanish,
|
|
Italian
|
|
};
|
|
|
|
inline std::string g_localeMissing = "<missing string>";
|
|
|
|
extern std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>> g_locale;
|
|
|
|
std::string& Localise(const std::string_view& key);
|