This commit is contained in:
czz
2025-06-27 09:15:45 +08:00
parent 12c6a260c9
commit 943f5a778a
36 changed files with 1850 additions and 1355 deletions

View File

@@ -714,13 +714,13 @@ Future showDayTimeSelectionDialog(
width: 100.rpx,
height: 60.rpx,
alignment: Alignment.center,
child: Text("取消",
child: Text("取消".tr,
style: TextStyle(
fontSize: 30.rpx, color: Colors.white)),
),
),
Text(
title,
title.tr,
style: TextStyle(
fontFamily: 'Readex Pro',
color: themeController.currentColor.sc3,
@@ -742,7 +742,7 @@ Future showDayTimeSelectionDialog(
width: 100.rpx,
height: 60.rpx,
alignment: Alignment.center,
child: Text("确认",
child: Text("确认".tr,
style: TextStyle(
fontSize: 30.rpx, color: Colors.white)),
),
@@ -778,7 +778,7 @@ Future showDayTimeSelectionDialog(
context,
hours,
hoursIndex,
unit: "",
unit: "".tr,
),
),
Expanded(
@@ -786,7 +786,7 @@ Future showDayTimeSelectionDialog(
context,
minutes,
minutesIndex,
unit: "",
unit: "".tr,
),
),
],
@@ -856,12 +856,12 @@ Future showOneSelectionDialog(
alignment: Alignment.center,
width: 100.rpx,
height: 60.rpx,
child: Text("取消",
child: Text("取消".tr,
style: TextStyle(
fontSize: 30.rpx, color: Colors.white)),
),
),
Text(title,
Text(title.tr,
style: TextStyle(
fontFamily: 'Readex Pro',
color: Colors.white,
@@ -879,7 +879,7 @@ Future showOneSelectionDialog(
alignment: Alignment.center,
width: 100.rpx,
height: 60.rpx,
child: Text("确认",
child: Text("确认".tr,
style: TextStyle(
fontSize: 30.rpx, color: Colors.white)),
),