- update babelfish script to work with embeded escape chars (\n, \t, \", etc)
- bar creation now takes a name to avoid translation issues - re-run babelfish script - If you find missing translations, just add the L[] wrapping around it and run the babelfish script!
This commit is contained in:
@@ -45,7 +45,7 @@ local AceLocaleHeader = "local L ="
|
||||
local BabbleFishHeader = "L = {} -- "
|
||||
|
||||
local function replaceHeader(content)
|
||||
return content:gsub(AceLocaleHeader, BabbleFishHeader)
|
||||
return content:gsub(AceLocaleHeader, BabbleFishHeader):gsub("\\", "\\\\"):gsub("\\\"", "\\\\\"")
|
||||
end
|
||||
|
||||
local localizedStrings = {}
|
||||
|
||||
Reference in New Issue
Block a user