- 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:
Hendrik Leppkes
2008-06-20 00:01:23 +00:00
parent 58d690b24b
commit 14aa5efda4
8 changed files with 2 additions and 44 deletions
+1 -1
View File
@@ -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 = {}