Module:Lang: Difference between revisionsGive feedback
m testing change to internal get_string |
m _get_string calling get_string |
||
| Line 34: | Line 34: | ||
end | end | ||
-- get_string, but for | -- 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 | ||