打开主菜单
首页
随机
登录
设置
关于Akarin
免责声明
Akarin
搜索
更改
←上一编辑
模块:Message box
(查看源代码)
2023年12月24日 (日) 19:41的版本
添加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)
白龙
行政员
、
用户查核员
、importer、
界面管理员
、
结构式讨论监督员
、
管理员
1,511
个编辑