多语言

This commit is contained in:
czz
2025-07-30 16:48:48 +08:00
parent 92b6896176
commit 300e3b31f6
96 changed files with 3741 additions and 2710 deletions

View File

@@ -61,7 +61,7 @@ class _DeviceListPageState extends State<DeviceListPage> {
children: [
// 中间居中的标题
Text(
'设备列表',
'设备列表'.tr,
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white,
@@ -90,7 +90,7 @@ class _DeviceListPageState extends State<DeviceListPage> {
child: SearchWidget(
keyword: controller.model.keyword,
color: controller.model.color,
hint: "检索设备",
hint: "检索设备".tr,
onChange: (d) {
controller.model.keyword = d;
},