We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The number of locales in Database\l10n\l10n.lua .generate_database\generate_l10n_table.py
Do not match the number of the locales in Questie. https://github.com/Questie/Questie/blob/master/Localization/l10n.lua
In QuestieDB only: "enUS": "", # English (US) # Yes EN is empty "ptBR": "pt", # Portuguese (Brazil) "ruRU": "ru", # Russian (Russia) "deDE": "de", # German (Germany) "koKR": "ko", # Korean (Korea) "esES": "es", # Spanish (Spain) "frFR": "fr", # French (France) "zhCN": "cn", Exists while in Questie
local supportedLocals = { ['enUS'] = true, ['esES'] = true, ['esMX'] = true, <--- Missing ['ptBR'] = true, ['frFR'] = true, ['deDE'] = true, ['ruRU'] = true, ['zhCN'] = true, ['zhTW'] = true, <--- Missing ['koKR'] = true, }
The reason for this is that WoWhead does not have translations for these, other sources need to be found
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The number of locales in
Database\l10n\l10n.lua
.generate_database\generate_l10n_table.py
Do not match the number of the locales in Questie.
https://github.com/Questie/Questie/blob/master/Localization/l10n.lua
In QuestieDB only:
"enUS": "", # English (US) # Yes EN is empty
"ptBR": "pt", # Portuguese (Brazil)
"ruRU": "ru", # Russian (Russia)
"deDE": "de", # German (Germany)
"koKR": "ko", # Korean (Korea)
"esES": "es", # Spanish (Spain)
"frFR": "fr", # French (France)
"zhCN": "cn",
Exists while in Questie
local supportedLocals = {
['enUS'] = true,
['esES'] = true,
['esMX'] = true, <--- Missing
['ptBR'] = true,
['frFR'] = true,
['deDE'] = true,
['ruRU'] = true,
['zhCN'] = true,
['zhTW'] = true, <--- Missing
['koKR'] = true,
}
The reason for this is that WoWhead does not have translations for these, other sources need to be found
The text was updated successfully, but these errors were encountered: