模块:Message box:修订间差异
imported>Xiplus 嘗試正規化日期 |
imported>Xiplus fix & 正規化分類日期 |
||
| 第300行: | 第300行: | ||
date = lang:formatDate('Y年n月j日', args.time) | date = lang:formatDate('Y年n月j日', args.time) | ||
end | end | ||
local ok, tempdate = pcall(lang.formatDate, lang, 'Y年n月j日', date) -- 正規化日期 | 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 | ||
| 第405行: | 第407行: | ||
if args.date and args.date ~= '' then | if args.date and args.date ~= '' then | ||
date = args.date | 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月', args.time) | date = lang:formatDate('Y年n月', args.time) | ||