aboutsummaryrefslogtreecommitdiff
path: root/src/common/Common.cpp
diff options
context:
space:
mode:
authorModoX <moardox@gmail.com>2021-10-26 22:49:12 +0200
committerGitHub <noreply@github.com>2021-10-26 22:49:12 +0200
commit94b14e4f6355a7bab8004dcc2ecadadbc52833de (patch)
tree05a07038b3acfbe35cbe36f24d40232c33d710b7 /src/common/Common.cpp
parentd57e798d5074002c50ec65be84e762bafdf93aa0 (diff)
Core/Conversations: Dropped time fields and calculate them using db2 data (#27151)
Diffstat (limited to 'src/common/Common.cpp')
-rw-r--r--src/common/Common.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/common/Common.cpp b/src/common/Common.cpp
index a176941e6f9..1d1beddddc6 100644
--- a/src/common/Common.cpp
+++ b/src/common/Common.cpp
@@ -41,3 +41,19 @@ LocaleConstant GetLocaleByName(std::string const& name)
return TOTAL_LOCALES;
}
+
+CascLocaleBit WowLocaleToCascLocaleBit[TOTAL_LOCALES] =
+{
+ CascLocaleBit::enUS,
+ CascLocaleBit::koKR,
+ CascLocaleBit::frFR,
+ CascLocaleBit::deDE,
+ CascLocaleBit::zhCN,
+ CascLocaleBit::zhTW,
+ CascLocaleBit::esES,
+ CascLocaleBit::esMX,
+ CascLocaleBit::ruRU,
+ CascLocaleBit::None,
+ CascLocaleBit::ptBR,
+ CascLocaleBit::itIT
+};