You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
local p = {}
function p.localize( frame, strToTrans, langSuffix, page )
if ( page == nil or page == '' ) then
page = 'All'
end
-- check if input is a number
if ( tonumber(strToTrans) == nil ) then
return strToTrans
end
local strFromTrans = frame:callParserFunction( '#lst', { 'Localization:'..page..langSuffix, strToTrans})
-- did translation work?
if ( strFromTrans ~= '') then
return strFromTrans
else
-- add to error category
-- [[Category:Missing Localization/{{{2|All}}}/{{{1|unsupplied}}}{{GetLangSuffix}}]]
local newErrorCategory = '[[Category:Missing Localization/'..page..'/'..strToTrans..langSuffix
local errorCategories = frame:callParserFunction( '#var', 'localizationErrorCategories' )
000
1:0
Template used on this page:
Return to Module:Utilities.