今天是2025年12月16日 第51周 星期二

代人,时大变了。

我们生活在大地上,但我们的梦想超越天空。

變更

跳至導覽 跳至搜尋
增加 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)

導覽菜單