نمایش مبدأ برای پودمان:Date2en
شما به دلیل زیر، اجازهٔ ویرایش این صفحه ندارید:
شما میتوانید مبدأ این صفحه را ببینید و رونوشت بردارید:
local p = {}
local numConv = require( "Module: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")
000
1:0
الگوی بهکاررفته در این صفحه:
بازگشت به پودمان:Date2en.