Module:Sandbox/Aftabuzzaman/Test

Revision as of 16:38, 1 May 2015 by imported>আফতাবুজ্জামান
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Sandbox/Aftabuzzaman/Test/doc

local export = {}
 
local mapping = {
	["february"]='ফেব্রুয়ারি', ["1"]='১', ["2"]='২'
};

-- translit any words or phrases
function export.tr(text, lang, sc)
	text = mw.ustring.gsub(
		text,
		'([F12])',
		function(c)
			return mapping[c]
		end)
	
	return text
end
 
return export