မော်ဂျူး:ConvertTime
နမူနာ
ပြင်ဆင်ရန်{{#invoke:ConvertTime|main|<!-- your text here -->}}
- နမူနာအားဖြင့်
{{#invoke:ConvertTime|main|၀၄:၄၅, ၉ ဖေဖော်ဝါရီ ၂၀၁၆}}
ဟုရေးလျှင် "04:45, 9 February 2016" ဟု ရမည်။
ဆက်စပ်ကြည့်ရှုရန်
ပြင်ဆင်ရန်အထက်ပါ အသုံးပြုပုံ လက်စွဲ (documentation)သည် မော်ဂျူး:ConvertTime/doc မှ ကူးပြောင်းထည့်သွင်း (transclude လုပ်)ထားခြင်း ဖြစ်သည်။ (တည်းဖြတ် | ရာဇဝင်) တည်းဖြတ်သူများအနေဖြင့် ဤမော်ဂျူး၏ sandbox (ဖန်တီး | ပုံတူပွား) နှင့် testcases (ဖန်တီး) စာမျက်နှာများကို စမ်းသပ်နိုင်ပါသည်။ ဤ မော်ဂျူး ၏ စာမျက်နှာခွဲများ။. |
-- First, define a table of text to search for, and what to convert it to.
local conversionTable = {
['ဇန်နဝါရီ'] = 'January',
['ဖေဖော်ဝါရီ'] = 'February',
['မတ်'] = 'March',
['ဧပြီ'] = 'April',
['မေ'] = 'May',
['ဇွန်'] = 'June',
['ဇူလိုင်'] = 'July',
['ဩဂုတ်'] = 'August',
['စက်တင်ဘာ'] = 'September',
['အောက်တိုဘာ'] = 'October',
['နိုဝင်ဘာ'] = 'November',
['ဒီဇင်ဘာ'] = 'December',
['၀'] = '0',
['၁'] = '1',
['၂'] = '2',
['၃'] = '3',
['၄'] = '4',
['၅'] = '5',
['၆'] = '6',
['၇'] = '7',
['၈'] = '8',
['၉'] = '9',
}
-- Then we define a table to hold our function
local p = {}
-- Then we define a function that converts strings using conversionTable.
function p.main(frame)
local s = frame.args[1] -- This gets the first positional argument.
for bn, en in pairs(conversionTable) do -- This converts every string found in the table.
s = mw.ustring.gsub(s, bn, en)
end
return s -- Get the result of the function.
end
return p -- Pass our table containing our function back to Lua.
-- Now we can call our function using {{#invoke:ConvertTime|main|<!-- your text here -->}}.