ماجۊل:Date2en
ظاهر
توضیحات این پودمان میتواند در ماجۊل:Date2en/توضیحات قرار گیرد.
local p = {}
local numConv = require( "ماجۊل:Numeral converter" ).convert
-- Use this function from templates.
function p.convert_template(frame)
return p.convert(frame.args[1])
end
-- Use this function directly in modules.
function p.convert(text)
text = mw.ustring.gsub(text, "ٔ", "")
text = mw.ustring.gsub(text, "ژانويه", "January")
text = mw.ustring.gsub(text, "فئوريه", "February")
text = mw.ustring.gsub(text, "مارس", "March")
text = mw.ustring.gsub(text, "آوریل", "April")
text = mw.ustring.gsub(text, "مئی", "May")
text = mw.ustring.gsub(text, "جۊن", "June")
text = mw.ustring.gsub(text, "جۊلای", "July")
text = mw.ustring.gsub(text, "آگؤست", "August")
text = mw.ustring.gsub(text, "سپتامبر", "September")
text = mw.ustring.gsub(text, "اؤکتؤبر", "October")
text = mw.ustring.gsub(text, "نؤوامبر", "November")
text = mw.ustring.gsub(text, "دسامبر", "December")
text = mw.ustring.gsub(text, "ساعت", "hours")
text = mw.ustring.gsub(text, "رۊج", "days")
text = mw.ustring.gsub(text, "هفته", "weeks")
text = mw.ustring.gsub(text, "ما", "months")
text = mw.ustring.gsub(text, "سال", "years")
return numConv("en", text)
end
return p