Jump to content

မေႃႇၵျူး:Uses calculator

လုၵ်ႉတီႈ ဝီႇၶီႇၽီးတီးယႃး ဢၼ်လွတ်ႈလႅဝ်းထၢင်ႇႁၢင်ႈ ၼၼ်ႉမႃး

local mMessageBox = require('Module:Message box')

local p = {}

function p._main()
	local boxArgs = {
		type = 'notice',
		small = true,
		image = '[[File:GNOME Calculator icon 2018.svg|32px|alt=Calculator icon]]',
		text = 'This template uses [[Template:Calculator]].'
	}
	return mMessageBox.main('mbox', boxArgs) .. '[[Category:Calculator templates]]'
end

function p.main(frame)
	return p._main()
end

return p