piopulse 0.1.4

A terminal user interface (TUI) factory flashing tool designed for high-concurrency ESP32 chip flashing on production lines.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
pub fn tr<'a>(key: &'a str, lang: &str) -> &'a str {
    let is_zh = lang == "zh";
    match key {
        // Core & Main Modals
        "tab_serial" => {
            if is_zh {
                " [1] 串口 "
            } else {
                " [1] Serial "
            }
        }
        "tab_plot" => {
            if is_zh {
                " [2] 波形 "
            } else {
                " [2] Plot "
            }
        }
        "tab_dash" => {
            if is_zh {
                " [3] 仪表盘 "
            } else {
                " [3] Dash "
            }
        }
        "tab_flash" => {
            if is_zh {
                " [4] 烧录 "
            } else {
                " [4] Flash "
            }
        }
        "tab_settings" => {
            if is_zh {
                " [5] 项目配置 "
            } else {
                " [5] Settings "
            }
        }

        "exit_title" => {
            if is_zh {
                "退出确认"
            } else {
                "EXIT CONFIRMATION"
            }
        }
        "exit_question" => {
            if is_zh {
                "选择以下操作以继续:"
            } else {
                "Choose an action below to proceed:"
            }
        }
        "exit_settings" => {
            if is_zh {
                "工具设置"
            } else {
                "Tool Settings"
            }
        }
        "exit_quit" => {
            if is_zh {
                "退出程序"
            } else {
                "Quit App"
            }
        }
        "exit_hint" => {
            if is_zh {
                "Esc/点击外部: 取消 | Tab/方向键: 移动 | Enter: 确认"
            } else {
                "Esc/Click outside: Cancel | Tab/Arrows: Move | Enter: Confirm"
            }
        }

        "auth_title" => {
            if is_zh {
                " 需要管理员授权 "
            } else {
                " Admin Authorization Required "
            }
        }
        "auth_msg" => {
            if is_zh {
                "输入系统 sudo 密码进行授权:"
            } else {
                "Enter system sudo password to authorize:"
            }
        }
        "auth_cancel" => {
            if is_zh {
                "按 Enter 提交 | 点击外部 / Esc 取消"
            } else {
                "Press Enter to submit | Click outside / Esc to cancel"
            }
        }
        "auth_error" => {
            if is_zh {
                "密码错误。按 Enter 重试。"
            } else {
                "Incorrect password. Press Enter to retry."
            }
        }

        "f1_toggle_admin" => {
            if is_zh {
                ":切换管理员模式 | "
            } else {
                ": Toggle Admin | "
            }
        }
        "f2_toggle_sidebar" => {
            if is_zh {
                ":切换侧边栏 | "
            } else {
                ": Toggle Sidebar | "
            }
        }
        "space_hint_serial" => {
            if is_zh {
                "进入打字模式"
            } else {
                "Type Space"
            }
        }
        "space_hint_flash" => {
            if is_zh {
                "开始烧录"
            } else {
                "Start Flash"
            }
        }
        "space_hint_focus" => {
            if is_zh {
                "聚焦"
            } else {
                "Focus"
            }
        }
        "space_hint" => {
            if is_zh {
                ":{} | "
            } else {
                ": {} | "
            }
        }
        "add_module" => {
            if is_zh {
                ":添加模块 | "
            } else {
                ": Add Module | "
            }
        }
        "delete_module" => {
            if is_zh {
                ":删除模块 | "
            } else {
                ": Delete Module | "
            }
        }
        "clear_stats" => {
            if is_zh {
                ":清空统计 | "
            } else {
                ": Clear Stats | "
            }
        }
        "tabs_nav" => {
            if is_zh {
                ":切换标签页 | "
            } else {
                ": Tabs | "
            }
        }
        "menu_hint" => {
            if is_zh {
                ":菜单"
            } else {
                ": Menu"
            }
        }

        "tool_settings_title" => {
            if is_zh {
                " 工具设置 "
            } else {
                " TOOL SETTINGS "
            }
        }
        "tool_settings_question" => {
            if is_zh {
                "选择语言 / Select Language:"
            } else {
                "Select Language / 选择语言:"
            }
        }
        "tool_settings_en" => {
            if is_zh {
                "English (英文)"
            } else {
                "English"
            }
        }
        "tool_settings_zh" => {
            if is_zh {
                "简体中文 (Chinese)"
            } else {
                "简体中文"
            }
        }
        "tool_settings_hint" => {
            if is_zh {
                "Esc: 取消 | Tab/方向键: 移动 | Enter: 保存"
            } else {
                "Esc: Cancel | Tab/Arrows: Move | Enter: Save"
            }
        }
        "port_menu_title" => {
            if is_zh {
                "选择串口端口"
            } else {
                "SELECT SERIAL PORT"
            }
        }
        "port_menu_hint" => {
            if is_zh {
                "Esc/点击外部: 取消 | ↑/↓: 移动 | Enter: 确认"
            } else {
                "Esc/Click outside: Cancel | ↑/↓: Move | Enter: Confirm"
            }
        }

        "admin_mode_header" => {
            if is_zh {
                " [管理员模式] "
            } else {
                " [ADMIN MODE] "
            }
        }
        "operator_mode_header" => {
            if is_zh {
                " [操作员模式] "
            } else {
                " [OPERATOR MODE] "
            }
        }

        // Serial Tab (serial.rs)
        "serial_rx_title" => {
            if is_zh {
                " 串口控制台接收器 [{}] "
            } else {
                " Serial Console Receiver [{}] "
            }
        }
        "serial_typing_mode" => {
            if is_zh {
                " 打字模式... (按 [Esc] 退出,按 [Enter] 发送) "
            } else {
                " Typing Mode... (Press [Esc] to exit, [Enter] to send) "
            }
        }
        "serial_send_console" => {
            if is_zh {
                " 数据发送控制台 (按 [i] 或 [Enter] 开始输入) "
            } else {
                " Send Data Console (Press [i] or [Enter] to type) "
            }
        }
        "serial_placeholder" => {
            if is_zh {
                "在此处输入命令..."
            } else {
                "Type command here..."
            }
        }
        "serial_port_info" => {
            if is_zh {
                " 端口信息 "
            } else {
                " Port Info "
            }
        }
        "serial_port" => {
            if is_zh {
                "端口: "
            } else {
                "Port: "
            }
        }
        "serial_baud" => {
            if is_zh {
                "波特率 [b]: "
            } else {
                "Baud [b]: "
            }
        }
        "serial_bits" => {
            if is_zh {
                "数据位: "
            } else {
                "Bits: "
            }
        }
        "serial_options_title" => {
            if is_zh {
                " 选项 "
            } else {
                " Options "
            }
        }
        "serial_auto_scroll" => {
            if is_zh {
                "自动滚动 "
            } else {
                "Auto Scroll "
            }
        }
        "serial_send_newline" => {
            if is_zh {
                "发送换行 "
            } else {
                "Send Newline "
            }
        }
        "serial_hex_display" => {
            if is_zh {
                "Hex 显示  "
            } else {
                "Hex Display  "
            }
        }
        "serial_hex_sending" => {
            if is_zh {
                "Hex 发送  "
            } else {
                "Hex Sending  "
            }
        }
        "serial_quick_commands" => {
            if is_zh {
                " 快捷命令 "
            } else {
                " Quick Commands "
            }
        }
        "serial_cmd" => {
            if is_zh {
                "命令"
            } else {
                "Cmd"
            }
        }
        "serial_desc" => {
            if is_zh {
                "描述"
            } else {
                "Description"
            }
        }
        "serial_ping_desc" => {
            if is_zh {
                "测试 Ping"
            } else {
                "Test Ping"
            }
        }
        "serial_version_desc" => {
            if is_zh {
                "获取版本"
            } else {
                "Get Version"
            }
        }
        "serial_product_desc" => {
            if is_zh {
                "获取产品标识信息"
            } else {
                "Get Product Info"
            }
        }
        "serial_echo_on_desc" => {
            if is_zh {
                "开启指令回显"
            } else {
                "Enable Echo"
            }
        }
        "serial_echo_off_desc" => {
            if is_zh {
                "关闭指令回显"
            } else {
                "Disable Echo"
            }
        }
        "serial_signal_desc" => {
            if is_zh {
                "查询信号质量"
            } else {
                "Query Signal Quality"
            }
        }
        "serial_ip_desc" => {
            if is_zh {
                "查询本地 IP 地址"
            } else {
                "Query Local IP"
            }
        }
        "serial_wifi_mode_desc" => {
            if is_zh {
                "查询 Wi-Fi 模式"
            } else {
                "Query Wi-Fi Mode"
            }
        }
        "serial_uart_desc" => {
            if is_zh {
                "查询当前串口配置"
            } else {
                "Query UART Config"
            }
        }
        "serial_reset_defaults_desc" => {
            if is_zh {
                "恢复出厂默认配置"
            } else {
                "Restore Default Config"
            }
        }
        "serial_reboot_desc" => {
            if is_zh {
                "重启开发板"
            } else {
                "Reboot Board"
            }
        }
        "serial_list_desc" => {
            if is_zh {
                "列出选项"
            } else {
                "List Options"
            }
        }

        // Plotter Tab (plotter.rs)
        "plot_title" => {
            if is_zh {
                " 波形绘制器 "
            } else {
                " WAVEFORM PLOTTER "
            }
        }
        "plot_port_hint" => {
            if is_zh {
                " 选择端口   "
            } else {
                " select port   "
            }
        }
        "plot_protocol_hint" => {
            if is_zh {
                " 协议   "
            } else {
                " protocol   "
            }
        }
        "plot_view_hint" => {
            if is_zh {
                " 视图   "
            } else {
                " view   "
            }
        }
        "plot_start_hint" => {
            if is_zh {
                " 启动/暂停   "
            } else {
                " start/pause   "
            }
        }
        "plot_clear_hint" => {
            if is_zh {
                " 清空缓冲区"
            } else {
                " clear buffer"
            }
        }
        "plot_latest" => {
            if is_zh {
                "(最新)"
            } else {
                "(Latest)"
            }
        }
        "plot_overview" => {
            if is_zh {
                "采集概览"
            } else {
                "Acquisition"
            }
        }
        "plot_samples" => {
            if is_zh {
                "样本"
            } else {
                "Samples"
            }
        }
        "plot_channels" => {
            if is_zh {
                "通道"
            } else {
                "Channels"
            }
        }
        "plot_range" => {
            if is_zh {
                "范围"
            } else {
                "Range"
            }
        }
        "plot_trigger_ref" => {
            if is_zh {
                "触发"
            } else {
                "Trigger"
            }
        }
        "plot_signal_locked" => {
            if is_zh {
                "信号锁定"
            } else {
                "Signal Locked"
            }
        }
        "plot_signal_waiting" => {
            if is_zh {
                "等待信号"
            } else {
                "Waiting Signal"
            }
        }
        "plot_scope_title" => {
            if is_zh {
                " 波形观测器Scope ({}){} "
            } else {
                " Waveform Scope ({}){} "
            }
        }
        "plot_barchart_title" => {
            if is_zh {
                " 柱状图 - 通道实时数值 ({}){} "
            } else {
                " Bar Chart - Latest Channel Values ({}){} "
            }
        }
        "plot_rx_console" => {
            if is_zh {
                "接收控制台"
            } else {
                "RX Console"
            }
        }
        "plot_no_data" => {
            if is_zh {
                "暂无串口数据。请选择端口并开始流传输。"
            } else {
                "No serial data yet. Select a port and start streaming."
            }
        }
        "plot_lines" => {
            if is_zh {
                ""
            } else {
                " lines"
            }
        }
        "plot_port" => {
            if is_zh {
                "端口 "
            } else {
                "Port "
            }
        }
        "plot_rx_parsed_title" => {
            if is_zh {
                " 接收 / 解析数据 "
            } else {
                " Receive / Parsed Data "
            }
        }
        "plot_no_ports" => {
            if is_zh {
                "无可用端口"
            } else {
                "No ports available"
            }
        }
        "plot_sim_on" => {
            if is_zh {
                "  模拟开启"
            } else {
                "  SIM ON"
            }
        }
        "plot_sim_off" => {
            if is_zh {
                "  模拟关闭"
            } else {
                "  SIM OFF"
            }
        }
        "plot_active" => {
            if is_zh {
                "  激活"
            } else {
                "  ACTIVE"
            }
        }
        "plot_ports_list" => {
            if is_zh {
                " 端口列表 "
            } else {
                " Ports "
            }
        }
        "plot_state" => {
            if is_zh {
                "状态     "
            } else {
                "State     "
            }
        }
        "plot_connected" => {
            if is_zh {
                "已连接"
            } else {
                "Connected"
            }
        }
        "plot_paused" => {
            if is_zh {
                "已暂停"
            } else {
                "Paused"
            }
        }
        "plot_baud" => {
            if is_zh {
                "波特率    "
            } else {
                "Baud      "
            }
        }
        "plot_format" => {
            if is_zh {
                "格式      "
            } else {
                "Format    "
            }
        }
        "plot_flow" => {
            if is_zh {
                "流控      "
            } else {
                "Flow      "
            }
        }
        "plot_none" => {
            if is_zh {
                ""
            } else {
                "None"
            }
        }
        "plot_line_end" => {
            if is_zh {
                "换行符    "
            } else {
                "Line end  "
            }
        }
        "plot_buffer" => {
            if is_zh {
                "缓冲区    "
            } else {
                "Buffer    "
            }
        }
        "plot_profile_title" => {
            if is_zh {
                " 串口配置 "
            } else {
                " Serial Profile "
            }
        }
        "plot_waiting_data" => {
            if is_zh {
                "正在等待串口数据流..."
            } else {
                "Waiting for serial stream data..."
            }
        }
        "plot_live_stats" => {
            if is_zh {
                " 实时统计数据 "
            } else {
                " Live Statistics "
            }
        }
        "plot_tx_state_ready" => {
            if is_zh {
                "就绪"
            } else {
                "Ready"
            }
        }
        "plot_tx_state_inactive" => {
            if is_zh {
                "未激活"
            } else {
                "Inactive"
            }
        }
        "plot_tx_mode" => {
            if is_zh {
                "模式 "
            } else {
                "Mode "
            }
        }
        "plot_tx_eol" => {
            if is_zh {
                "结束符 "
            } else {
                "EOL "
            }
        }
        "plot_tx_placeholder" => {
            if is_zh {
                "待发送端口配置就绪后在此输入命令"
            } else {
                "type command here after TX input is wired"
            }
        }
        "plot_tx_enter_send" => {
            if is_zh {
                "[按 Enter 发送]"
            } else {
                "[Enter Send]"
            }
        }
        "plot_tx_history_hint" => {
            if is_zh {
                "[按上下键切换历史记录]"
            } else {
                "[Up/Down History]"
            }
        }
        "plot_tx_quick" => {
            if is_zh {
                "快捷命令: "
            } else {
                "Quick: "
            }
        }
        "plot_tx_send_title" => {
            if is_zh {
                " 发送命令 "
            } else {
                " Send Command "
            }
        }

        // Channels / Flasher Tab (channels.rs)
        "flash_engine_title" => {
            if is_zh {
                " 🔋 批量烧录引擎 "
            } else {
                " 🔋 BATCH FLASHER ENGINE "
            }
        }
        "flash_no_devices" => {
            if is_zh {
                "   ⚠️  未检测到活动的烧录设备。"
            } else {
                "   ⚠️  No active flashing devices detected."
            }
        }
        "flash_target_chip" => {
            if is_zh {
                "   目标芯片:  "
            } else {
                "   Target Chip:  "
            }
        }
        "flash_baud_rate" => {
            if is_zh {
                "   波特率:  "
            } else {
                "   Baud Rate:  "
            }
        }
        "flash_mode" => {
            if is_zh {
                "   烧录模式:   "
            } else {
                "   Flash Mode:   "
            }
        }
        "flash_size" => {
            if is_zh {
                "   闪存大小: "
            } else {
                "   Flash Size: "
            }
        }
        "flash_connect_usb" => {
            if is_zh {
                "   🔌 连接 USB 设备以自动扫描并开始烧录..."
            } else {
                "   🔌 Connect USB devices to auto-scan and begin flashing..."
            }
        }
        "flash_hint" => {
            if is_zh {
                "   ⚡ 提示: 按 "
            } else {
                "   ⚡ Hint: Press "
            }
        }
        "flash_spacebar" => {
            if is_zh {
                "空格键"
            } else {
                "Spacebar"
            }
        }
        "flash_rescan" => {
            if is_zh {
                " 手动重新扫描端口。"
            } else {
                " to manually re-scan ports."
            }
        }
        "flash_dashboard_title" => {
            if is_zh {
                " 批量烧录监控仪表盘 "
            } else {
                " BATCH FLASHING MONITOR DASHBOARD "
            }
        }
        "flash_devices_count" => {
            if is_zh {
                "  设备总数: "
            } else {
                "  Devices Count: "
            }
        }
        "flash_idle_count" => {
            if is_zh {
                "  |  ● 空闲: "
            } else {
                "  |  ● Idle: "
            }
        }
        "flash_flashing_count" => {
            if is_zh {
                "  |  ⟳ 烧录中: "
            } else {
                "  |  ⟳ Flashing: "
            }
        }
        "flash_success_count" => {
            if is_zh {
                "  |  ✓ 成功: "
            } else {
                "  |  ✓ Success: "
            }
        }
        "flash_failed_count" => {
            if is_zh {
                "  |  ✗ 失败: "
            } else {
                "  |  ✗ Failed: "
            }
        }
        "flash_detecting" => {
            if is_zh {
                "检测中..."
            } else {
                "Detecting..."
            }
        }
        "flash_status_success" => {
            if is_zh {
                "✓ 成功"
            } else {
                "✓ SUCCESS"
            }
        }
        "flash_status_failed" => {
            if is_zh {
                "✗ 失败 ({})"
            } else {
                "✗ FAILED ({})"
            }
        }
        "flash_status_idle" => {
            if is_zh {
                "● 空闲"
            } else {
                "● Idle"
            }
        }
        "flash_devices_title" => {
            if is_zh {
                " 批量烧录设备列表 "
            } else {
                " Batch Flasher Devices "
            }
        }

        // Config Tab (config.rs)
        "config_title" => {
            if is_zh {
                " 配置项目 "
            } else {
                " Configuration "
            }
        }
        "config_proj_name" => {
            if is_zh {
                "项目名称:"
            } else {
                "Project Name:"
            }
        }
        "config_chip_type" => {
            if is_zh {
                "芯片类型:"
            } else {
                "Chip Type:"
            }
        }
        "config_baud_rate" => {
            if is_zh {
                "波特率:"
            } else {
                "Baud Rate:"
            }
        }
        "config_flash_mode" => {
            if is_zh {
                "烧录模式:"
            } else {
                "Flash Mode:"
            }
        }
        "config_flash_freq" => {
            if is_zh {
                "闪存频率:"
            } else {
                "Flash Freq:"
            }
        }
        "config_flash_size" => {
            if is_zh {
                "闪存大小:"
            } else {
                "Flash Size:"
            }
        }
        "config_bootloader_offset" => {
            if is_zh {
                "Bootloader 偏移量:"
            } else {
                "Bootloader Offset:"
            }
        }
        "config_bootloader_path" => {
            if is_zh {
                "Bootloader 路径:"
            } else {
                "Bootloader Path:"
            }
        }
        "config_partitions_offset" => {
            if is_zh {
                "分区表偏移量:"
            } else {
                "Partitions Offset:"
            }
        }
        "config_partitions_path" => {
            if is_zh {
                "分区表路径:"
            } else {
                "Partitions Path:"
            }
        }
        "config_otadata_offset" => {
            if is_zh {
                "OTA 数据偏移量:"
            } else {
                "OTA Data Offset:"
            }
        }
        "config_otadata_path" => {
            if is_zh {
                "OTA 数据路径:"
            } else {
                "OTA Data Path:"
            }
        }
        "config_app_offset" => {
            if is_zh {
                "应用程序偏移量:"
            } else {
                "App Offset:"
            }
        }
        "config_app_path" => {
            if is_zh {
                "应用程序路径:"
            } else {
                "App Path:"
            }
        }
        "config_nvs_offset" => {
            if is_zh {
                "NVS 偏移量:"
            } else {
                "NVS Offset:"
            }
        }
        "config_verify_method" => {
            if is_zh {
                "校验方式:"
            } else {
                "Verify Method:"
            }
        }
        "config_blank_check" => {
            if is_zh {
                "空片检查:"
            } else {
                "Blank Check:"
            }
        }
        "config_erase_mode" => {
            if is_zh {
                "擦除模式:"
            } else {
                "Erase Mode:"
            }
        }
        "config_incremental_programming" => {
            if is_zh {
                "增量烧录:"
            } else {
                "Incremental:"
            }
        }
        "config_secure_boot" => {
            if is_zh {
                "Secure Boot:"
            } else {
                "Secure Boot:"
            }
        }
        "config_flash_encryption" => {
            if is_zh {
                "Flash 加密:"
            } else {
                "Flash Encryption:"
            }
        }
        "config_lock_after_flash" => {
            if is_zh {
                "烧录后锁定:"
            } else {
                "Lock After Flash:"
            }
        }
        "config_operator_role" => {
            if is_zh {
                "操作员角色:"
            } else {
                "Operator Role:"
            }
        }
        "config_firmware_version" => {
            if is_zh {
                "固件版本:"
            } else {
                "Firmware Version:"
            }
        }
        "config_sn_prefix" => {
            if is_zh {
                "SN 前缀:"
            } else {
                "SN Prefix:"
            }
        }
        "config_lot_code" => {
            if is_zh {
                "批次号:"
            } else {
                "Lot Code:"
            }
        }
        "config_mes_endpoint" => {
            if is_zh {
                "MES 地址:"
            } else {
                "MES Endpoint:"
            }
        }
        "config_label_template" => {
            if is_zh {
                "标签模板:"
            } else {
                "Label Template:"
            }
        }
        "config_qa_test_script" => {
            if is_zh {
                "QA 测试脚本:"
            } else {
                "QA Test Script:"
            }
        }
        "config_inspector_title" => {
            if is_zh {
                " 检查器 "
            } else {
                " Inspector "
            }
        }
        "config_status_editing" => {
            if is_zh {
                "编辑中"
            } else {
                "EDITING"
            }
        }
        "config_status_unlocked" => {
            if is_zh {
                "已解锁"
            } else {
                "UNLOCKED"
            }
        }
        "config_status_locked" => {
            if is_zh {
                "已锁定 (只读)"
            } else {
                "LOCKED (READ-ONLY)"
            }
        }
        "config_parameter" => {
            if is_zh {
                "  参数: "
            } else {
                "  Parameter: "
            }
        }
        "config_status" => {
            if is_zh {
                "  ·  状态: "
            } else {
                "  ·  Status: "
            }
        }
        "config_value" => {
            if is_zh {
                "  数值: "
            } else {
                "  Value: "
            }
        }
        "config_guide" => {
            if is_zh {
                "  指南: "
            } else {
                "  Guide: "
            }
        }
        "config_guide_locked" => {
            if is_zh {
                "按 F1 解锁。使用上/下方向键或点击以选择字段。"
            } else {
                "Press F1 to unlock. Use Up/Down Arrows or click to select fields."
            }
        }
        "config_guide_editing" => {
            if is_zh {
                "键入新值。按 Enter 保存,按 Esc 取消。"
            } else {
                "Type new value. Press Enter to save, Esc to cancel."
            }
        }
        "config_guide_unlocked" => {
            if is_zh {
                "按 Enter 或点击以编辑。按 F1 锁定。"
            } else {
                "Press Enter or click to edit. Press F1 to lock."
            }
        }

        // Sidebar Panel (sidebar.rs)
        "sidebar_stats_title" => {
            if is_zh {
                " 生产数据统计 "
            } else {
                " Production Statistics "
            }
        }
        "sidebar_total_attempted" => {
            if is_zh {
                "总尝试次数: "
            } else {
                "Total Attempted: "
            }
        }
        "sidebar_passed" => {
            if is_zh {
                "成功次数 (OK):     "
            } else {
                "Passed (OK):     "
            }
        }
        "sidebar_failed" => {
            if is_zh {
                "失败次数 (FAIL):   "
            } else {
                "Failed (FAIL):   "
            }
        }
        "sidebar_yield_rate" => {
            if is_zh {
                "良率:            "
            } else {
                "Yield Rate:      "
            }
        }
        "sidebar_elapsed_time" => {
            if is_zh {
                "运行时间:        "
            } else {
                "Elapsed Time:    "
            }
        }
        "sidebar_monitor_title" => {
            if is_zh {
                " 串口监视器 "
            } else {
                " Serial Monitor "
            }
        }

        // Dashboard / Widgets Tab (widgets/mod.rs)
        "dash_no_modules" => {
            if is_zh {
                "     当前仪表盘未加载任何模块。"
            } else {
                "     No modules are currently loaded in this dashboard."
            }
        }
        "dash_press_a" => {
            if is_zh {
                "     按 [A] "
            } else {
                "     Press [A] "
            }
        }
        "dash_open_catalog" => {
            if is_zh {
                "打开 Ratatui 模块目录并添加组件。"
            } else {
                "to open the Ratatui module catalog and add items."
            }
        }
        "dash_press_d" => {
            if is_zh {
                "     按 [D] "
            } else {
                "     Press [D] "
            }
        }
        "dash_remove_pane" => {
            if is_zh {
                "移除/删除当前选中的分屏。"
            } else {
                "to remove/delete the currently focused pane."
            }
        }
        "dash_press_tab" => {
            if is_zh {
                "     按 [Tab] / 左右方向键 "
            } else {
                "     Press [Tab] / Left-Right Arrows "
            }
        }
        "dash_navigate_panes" => {
            if is_zh {
                "切换选中的分屏。"
            } else {
                "to navigate focused panes."
            }
        }
        "dash_split_hint" => {
            if is_zh {
                "     💡 提示:分屏会在水平或垂直方向上自动分割!"
            } else {
                "     💡 Hint: Panes will auto-split horizontally & vertically!"
            }
        }
        "dash_tiling_workspace" => {
            if is_zh {
                " 平铺工作区 "
            } else {
                " Tiling Workspace "
            }
        }

        "dash_select_module_title" => {
            if is_zh {
                "选择要添加到分屏的 Ratatui 模块"
            } else {
                "Select Ratatui Module to Add to Pane"
            }
        }
        "dash_search" => {
            if is_zh {
                " 搜索: "
            } else {
                " Search: "
            }
        }
        "dash_modal_hint" => {
            if is_zh {
                " 按 [↑/↓] 导航 | [ENTER] 添加 | [ESC] 关闭"
            } else {
                " Press [↑/↓] to navigate | [ENTER] to add | [ESC] to close"
            }
        }
        "dash_catalog_title" => {
            if is_zh {
                " Ratatui 模块目录 "
            } else {
                " Ratatui Module Catalog "
            }
        }

        // Widget Catalog Item Descriptions
        "widget_button_desc" => {
            if is_zh {
                "Ratatui TUI 按钮面板"
            } else {
                "Ratatui TUI Button Panel"
            }
        }
        "widget_cube_desc" => {
            if is_zh {
                "Ratatui 画布 3D 旋转立方体"
            } else {
                "Ratatui Canvas Orientation Cube"
            }
        }
        "widget_dashboard_desc" => {
            if is_zh {
                "Ratatui TUI 系统仪表盘"
            } else {
                "Ratatui TUI System Dashboard"
            }
        }
        "widget_delay_desc" => {
            if is_zh {
                "Ratatui TUI 延时触发器"
            } else {
                "Ratatui TUI Delayed Trigger"
            }
        }
        "widget_dial_desc" => {
            if is_zh {
                "Ratatui TUI 刻度盘面板"
            } else {
                "Ratatui TUI Dial Panel"
            }
        }
        "widget_example_desc" => {
            if is_zh {
                "Rust/Ratatui 模块示例模板"
            } else {
                "Example Rust/Ratatui Module Template"
            }
        }
        "widget_gauge_desc" => {
            if is_zh {
                "Ratatui 进度条/遥测仪表"
            } else {
                "Ratatui Gauge Telemetry Meter"
            }
        }
        "widget_image_desc" => {
            if is_zh {
                "Ratatui 画布 图像/感兴趣区域预览"
            } else {
                "Ratatui Canvas Image/ROI Preview"
            }
        }
        "widget_joystick_desc" => {
            if is_zh {
                "Ratatui 画布 摇杆网格"
            } else {
                "Ratatui Canvas Joystick Grid"
            }
        }
        "widget_knob_desc" => {
            if is_zh {
                "Ratatui TUI 精准旋钮"
            } else {
                "Ratatui TUI Precision Knob"
            }
        }
        "widget_light_desc" => {
            if is_zh {
                "Ratatui TUI 状态指示灯"
            } else {
                "Ratatui TUI Status Lights"
            }
        }
        "widget_pad_desc" => {
            if is_zh {
                "Ratatui 画布 双轴触摸板"
            } else {
                "Ratatui Canvas Dual-Axis Pad"
            }
        }
        "widget_ring_desc" => {
            if is_zh {
                "Ratatui TUI 环形仪表盘"
            } else {
                "Ratatui TUI Ring Dial"
            }
        }
        "widget_slider_desc" => {
            if is_zh {
                "Ratatui TUI 参数滑块"
            } else {
                "Ratatui TUI Parameter Slider"
            }
        }
        "widget_toggle_desc" => {
            if is_zh {
                "Ratatui TUI 锁存开关"
            } else {
                "Ratatui TUI Latched Switch"
            }
        }

        // Individual Widget Titles
        "widget_button_title" => {
            if is_zh {
                "按钮:Ratatui 按钮面板"
            } else {
                "button: Ratatui Button Panel"
            }
        }
        "widget_cube_title" => {
            if is_zh {
                "立方体:3D 姿态"
            } else {
                "cube: 3D Orientation"
            }
        }
        "widget_cube_title_manual" => {
            if is_zh {
                "立方体:3D 姿态 (T: 手动模式, UJIKOL/方向键: 控制)"
            } else {
                "cube: 3D Orientation (T: Manual Mode, UJIKOL/Arrows: Ctrl)"
            }
        }
        "widget_dashboard_title" => {
            if is_zh {
                "仪表盘:Ratatui 电机诊断"
            } else {
                "dashboard: Ratatui Motor Diagnostics"
            }
        }
        "widget_delay_title" => {
            if is_zh {
                "延时:Ratatui 延时触发器"
            } else {
                "delay: Ratatui Delayed Trigger"
            }
        }
        "widget_dial_title" => {
            if is_zh {
                "仪表盘:Ratatui 转速仪表"
            } else {
                "dial: Ratatui Speed Dial"
            }
        }
        "widget_example_title" => {
            if is_zh {
                "示例:Rust/Ratatui 模块模板"
            } else {
                "example: Rust/Ratatui Module Template"
            }
        }
        "widget_gauge_title" => {
            if is_zh {
                "电量计:Ratatui 电池电量"
            } else {
                "gauge: Ratatui Battery Gauge"
            }
        }
        "widget_image_title" => {
            if is_zh {
                "图像:Ratatui 区域画布"
            } else {
                "image: Ratatui ROI Canvas"
            }
        }
        "widget_joystick_title" => {
            if is_zh {
                "摇杆:Ratatui 画布网格"
            } else {
                "joystick: Ratatui Canvas Grid"
            }
        }
        "widget_knob_title" => {
            if is_zh {
                "旋钮:Ratatui 微调旋钮"
            } else {
                "knob: Ratatui Fine Dial"
            }
        }
        "widget_light_title" => {
            if is_zh {
                "指示灯:Ratatui 状态指示"
            } else {
                "light: Ratatui Status Indicators"
            }
        }
        "widget_pad_title" => {
            if is_zh {
                "触控板:Ratatui 画布输入"
            } else {
                "pad: Ratatui Canvas Input"
            }
        }
        "widget_ring_title" => {
            if is_zh {
                "环形:Ratatui 环形刻度盘"
            } else {
                "ring: Ratatui Ring Dial"
            }
        }
        "widget_slider_title" => {
            if is_zh {
                "滑块:Ratatui PID 参数面板"
            } else {
                "slider: Ratatui PID Parameter Panel"
            }
        }
        "widget_toggle_title" => {
            if is_zh {
                "开关:Ratatui 锁存开关"
            } else {
                "toggle: Ratatui Latched Switch"
            }
        }

        _ => key,
    }
}