第246行: |
第246行: |
| local sect | | local sect |
| if args.sect == '' then | | if args.sect == '' then |
− | sect = ' 本' .. (cfg.sectionDefault or '頁面') | + | sect = ' 此' .. (cfg.sectionDefault or '頁面') |
| elseif type(args.sect) == 'string' then | | elseif type(args.sect) == 'string' then |
− | sect = ' 本' .. args.sect | + | sect = ' 此' .. args.sect |
| end | | end |
| local issue = args.issue | | local issue = args.issue |
第293行: |
第293行: |
| -- Get other values. | | -- Get other values. |
| local date | | local date |
− | if args.time and args.time ~= '' then | + | if args.date and args.date ~= '' then |
− | date = args.time | + | date = args.date |
| elseif args.time == '' and self.isTemplatePage then | | elseif args.time == '' and self.isTemplatePage then |
| date = lang:formatDate('Y年n月j日') | | date = lang:formatDate('Y年n月j日') |
| elseif args.time and args.time ~= '' then | | elseif args.time and args.time ~= '' then |
− | date = lang:formatDate('Y年n月j日', time) | + | date = lang:formatDate('Y年n月j日', args.time) |
| + | end |
| + | if date then |
| + | local ok, tempdate = pcall(lang.formatDate, lang, 'Y年n月j日', date) -- 正規化日期 |
| + | if ok then |
| + | date = tempdate |
| + | end |
| end | | end |
| if date then | | if date then |
第399行: |
第405行: |
| [31] = '㏾' | | [31] = '㏾' |
| } | | } |
− | if args.time and args.time ~= '' then | + | if args.date and args.date ~= '' then |
− | date = args.time | + | date = args.date |
| + | local ok, tempdate = pcall(lang.formatDate, lang, 'Y年n月', date) -- 正規化日期 |
| + | if ok then |
| + | date = tempdate |
| + | end |
| elseif args.time and args.time ~= '' then | | elseif args.time and args.time ~= '' then |
− | date = lang:formatDate('Y年n月', time) | + | date = lang:formatDate('Y年n月', args.time) |
− | sortDay = lang:formatDate('j', time) | + | sortDay = lang:formatDate('j', args.time) |
| sortDay = tonumber(sortDay) | | sortDay = tonumber(sortDay) |
| sortDay = dayName[sortDay] | | sortDay = dayName[sortDay] |
第602行: |
第612行: |
| :tag('div') | | :tag('div') |
| :css('text-align', 'center') | | :css('text-align', 'center') |
− | :wikitext(format(' 本 訊息框使用無效的「type=%s」參數,需要修復。', self.type or '')) | + | :wikitext(format(' 此 訊息框使用無效的「type=%s」參數,需要修復。', self.type or '')) |
| end | | end |
| | | |