Module:Lang

From Deadlock Wiki
Revision as of 12:45, 15 September 2024 by Saag (talk | contribs) (swapped argument order)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Lang/doc

local p = {}

function get_lang_file(lang_code)
	local file_name = string.format("Data:Lang_%s.json", lang_code)
    local success, data = pcall(mw.loadJsonData, file_name)
    if success then
        return data
    else
        return nil
    end
end

-- Get a localized string by the raw key
p.get_string = function(frame)
	local key = frame.args[1]
	local lang_code = frame.args[2]
	
	local data = get_lang_file(lang_code)
	if (data == nil) then
		return string.format("Language code '%s' not found", lang_code)	
	end
	
	local label = data[key]
	if (label == nil) then 
		return string.format("Key '%s' not found", key) 
	end
	
	return label
end

-- Search for a localized string using its English label
p.search_string = function(frame)
	local key = frame.args[1]
	local lang_code = frame.args[2]
	local data = get_lang_file(lang_code)
end

return p