Module:Lang: Difference between revisions

Sur (talk | contribs)
m testing change to internal get_string
Sur (talk | contribs)
m _get_string calling get_string
Line 34: Line 34:
end
end


-- get_string, but for internal use by other modules
-- get_string, but for external use by other modules
function p.get_string(key)
function p.get_string(key)
lang_code = get_lang_code()
lang_code = get_lang_code()
Line 49: Line 49:
return label
return label
end
-- get_string, but for internal use by the module
function p._get_string(key)
return p.get_string(key)
end
end