foundryvtt-wh4-lang-fr-fr/tools/detect_missing_strings.lua

22 lines
520 B
Lua

package.path = package.path .. ";luajson/?.lua"
local JSON = require"json"
local enjsonf = "../../WFRP-4th-Edition-FoundryVTT_SLADECRAVEN/lang/en.json"
local frjsonf = "../fr.json"
local fp = io.open(enjsonf, "r")
local entags = JSON.decode( fp:read("*a") )
fp:close()
fp = io.open(frjsonf, "r")
local frtags = JSON.decode( fp:read("*a") )
fp:close()
for tag, value in pairs(entags) do
if not frtags[tag] then
print("Missing tag not found", tag, value)
end
end