更改

添加287字节 、 2023年12月24日 (日) 19:41
导入1个版本
第299行: 第299行:  
elseif args.time and args.time ~= '' then
 
elseif args.time and args.time ~= '' then
 
date = lang:formatDate('Y年n月j日', args.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
第401行: 第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)