View Single Post
12/03/18, 01:24 PM   #16
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,913
Nope sorry, got no list. But I know of the folloing language patches/hacks:
PT, ES, IT, RU, PL, ZH

Not all of them are still in use or got updated recently though.

Btw: If you just load a fallback language as default (e.g. en.lua) first and afterwards, in the next line of your manifest.txt, load the dynamic file via $(language).lua, you got your english fallback language
No need to load other files which are not needed at all into the lua memory this way.
Code:
Localization/en.lua
Localization/$(language).lua
For the unsupported languages, which are not able to be determined via GetCVar("language.2"), I don't know any other way than what you have described:
Load a global translation table and use the strings from this.
  Reply With Quote