#
zhou zhou
3 天以前 4d6b02dada557b4186cdcef843cd3859aeeaac01
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
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
{
  "httpMsg": {
    "unauthorized": "Unauthorized access, please login again",
    "forbidden": "Access to this resource is forbidden",
    "notFound": "The requested resource does not exist",
    "methodNotAllowed": "Request method not allowed",
    "requestTimeout": "Request timeout, please try again later",
    "internalServerError": "Internal server error, please try again later",
    "badGateway": "Bad gateway error, please try again later",
    "serviceUnavailable": "Service temporarily unavailable, please try again later",
    "gatewayTimeout": "Gateway timeout, please try again later",
    "requestCancelled": "Request cancelled",
    "networkError": "Network connection error, please check your connection",
    "requestFailed": "Request failed",
    "requestConfigError": "Request configuration error"
  },
  "topBar": {
    "search": {
      "title": "Search"
    },
    "user": {
      "userCenter": "User center",
      "docs": "Document",
      "github": "Github",
      "lockScreen": "Lock screen",
      "logout": "Log out"
    },
    "guide": {
      "title": "Click here to view",
      "theme": "Theme style",
      "menu": "Open top menu",
      "description": "More configurations"
    }
  },
  "common": {
    "tips": "Prompt",
    "cancel": "Cancel",
    "confirm": "Confirm",
    "close": "Close",
    "logOutTips": "Do you want to log out?",
    "count": "{count} items",
    "listSeparator": ", ",
    "actions": {
      "search": "Search",
      "reset": "Reset",
      "refresh": "Refresh",
      "reload": "Reload",
      "add": "Add",
      "batchDelete": "Batch Delete",
      "edit": "Edit",
      "delete": "Delete",
      "detail": "Detail",
      "items": "Items",
      "print": "Print",
      "export": "Export",
      "exporting": "Exporting...",
      "close": "Close",
      "complete": "Complete",
      "expand": "Expand",
      "collapse": "Collapse",
      "viewAll": "View All",
      "save": "Save",
      "submit": "Submit",
      "initialize": "Initialize"
    },
    "status": {
      "enabled": "Enabled",
      "disabled": "Disabled",
      "normal": "Normal",
      "frozen": "Frozen",
      "unknown": "Unknown",
      "yes": "Yes",
      "no": "No"
    },
    "placeholder": {
      "empty": "--"
    }
  },
  "crud": {
    "messages": {
      "createSuccess": "Created successfully",
      "updateSuccess": "Updated successfully",
      "deleteSuccess": "Deleted successfully",
      "batchDeleteSuccess": "Batch deleted successfully",
      "submitFailed": "Submit failed",
      "deleteFailed": "Delete failed",
      "batchDeleteFailed": "Batch delete failed",
      "exportSuccess": "Export succeeded",
      "exportFailed": "Export failed",
      "exportFailedWithStatus": "Export failed ({status})",
      "printFailed": "Print failed",
      "loadFailed": "Load failed"
    },
    "confirm": {
      "deleteTitle": "Delete confirmation",
      "deleteMessage": "Are you sure you want to delete {entity} \"{label}\"?",
      "batchDeleteTitle": "Batch delete confirmation",
      "batchDeleteMessage": "Are you sure you want to delete {count} selected {entity}?"
    }
  },
  "print": {
    "previewTitle": "Print Preview",
    "defaultReportTitle": "Report",
    "borderOn": "Border On",
    "borderOff": "Border Off",
    "portrait": "Portrait",
    "landscape": "Landscape",
    "reportDate": "Report Date",
    "operator": "Operator",
    "printedAt": "Printed At",
    "count": "Records",
    "previewLimited": "Preview shows the first {previewCount} records only. Printing will output all {totalCount} records.",
    "noData": "No printable data"
  },
  "table": {
    "form": {
      "reset": "Reset",
      "submit": "Submit"
    },
    "searchBar": {
      "reset": "Reset",
      "search": "Search",
      "expand": "Expand",
      "collapse": "Collapse",
      "searchInputPlaceholder": "Please enter",
      "searchSelectPlaceholder": "Please select"
    },
    "selection": "Select",
    "sizeOptions": {
      "small": "Compact",
      "default": "Default",
      "large": "Loose"
    },
    "column": {
      "selection": "Select",
      "expand": "Expand",
      "index": "Index"
    },
    "index": "Index",
    "unit": "Unit",
    "id": "ID",
    "name": "Name",
    "code": "Code",
    "keyword": "Keyword",
    "status": "Status",
    "type": "Type",
    "memo": "Remark",
    "remark": "Remark",
    "createBy": "Created By",
    "createTime": "Created At",
    "updateBy": "Updated By",
    "updateTime": "Updated At",
    "sort": "Sort",
    "route": "Route",
    "authority": "Authority",
    "operation": "Operation",
    "wcs": "WCS",
    "source": "Source",
    "supplier": "Supplier",
    "supplierBatch": "Supplier Batch",
    "batch": "Batch",
    "quantity": "Quantity",
    "materialCode": "Material Code",
    "materialName": "Material Name",
    "menuType": "Menu Type",
    "iconPreview": "Icon Preview",
    "componentKey": "Component Key",
    "permissionKey": "Permission Key",
    "zebra": "Zebra",
    "border": "Border",
    "headerBackground": "Header BG",
    "topLevelMenu": "Top Level Menu",
    "emptyText": "No data"
  },
  "search": {
    "placeholder": "Search page",
    "historyTitle": "Search history",
    "switchKeydown": "Navigate",
    "selectKeydown": "Select",
    "exitKeydown": "Close"
  },
  "setting": {
    "menuType": {
      "title": "Menu Layout",
      "list": [
        "Vertical",
        "Horizontal",
        "Mixed",
        "Dual"
      ]
    },
    "theme": {
      "title": "Theme Style",
      "list": [
        "Light",
        "Dark",
        "System"
      ]
    },
    "menu": {
      "title": "Menu Style"
    },
    "color": {
      "title": "Theme Color"
    },
    "box": {
      "title": "Box Style",
      "list": [
        "Border",
        "Shadow"
      ]
    },
    "container": {
      "title": "Container Width",
      "list": [
        "Full",
        "Boxed"
      ]
    },
    "basics": {
      "title": "Basic Config",
      "list": {
        "multiTab": "Show work tab",
        "accordion": "Sidebar opens accordion",
        "collapseSidebar": "Show sidebar button",
        "reloadPage": "Show reload page button",
        "fastEnter": "Show fast enter",
        "breadcrumb": "Show crumb navigation",
        "language": "Show multilingual selection",
        "progressBar": "Show top progress bar",
        "weakMode": "Color Weakness Mode",
        "watermark": "Global watermark",
        "menuWidth": "Menu width",
        "tabStyle": "Tab style",
        "pageTransition": "Page animation",
        "borderRadius": "Custom radius"
      }
    },
    "tabStyle": {
      "default": "Default",
      "card": "Card",
      "google": "Chrome"
    },
    "transition": {
      "list": {
        "none": "None",
        "fade": "Fade",
        "slideLeft": "Slide Left",
        "slideBottom": "Slide Bottom",
        "slideTop": "Slide Top"
      }
    },
    "actions": {
      "resetConfig": "Reset Config",
      "copyConfig": "Copy Config",
      "copySuccess": "Configuration copied to clipboard, paste it into src/config/setting.ts file",
      "copyFailed": "Copy failed, please try again",
      "resetFailed": "Reset failed, please refresh the page and try again"
    }
  },
  "notice": {
    "title": "Notice",
    "btnRead": "Mark as read",
    "bar": {
      "notice": "Notice",
      "message": "Message",
      "todo": "Todo"
    },
    "emptyPrefix": "No",
    "viewAll": "View all",
    "actions": {
      "viewAllNotice": "View all notice",
      "viewAllMessage": "View all message",
      "viewAllTodo": "View all todo"
    },
    "samples": {
      "notice": {
        "addI18n": "Internationalization added",
        "receiveMessage": "Lengyuedaidai sent you a message",
        "newFollower": "Xiaofeizhu followed you",
        "addDocs": "Usage documentation added",
        "receiveMail": "Xiaofeizhu sent you an email",
        "menuMock": "Menu mock switched to local real data"
      },
      "message": {
        "chibupang": "Chibupang followed you",
        "tangbuku": "Tangbuku followed you",
        "zhongxiaoyu": "Zhongxiaoyu followed you",
        "hexiaohe": "Hexiaohe followed you",
        "suixuinian": "Suixuinian followed you",
        "lengyuedaidai": "Lengyuedaidai followed you"
      }
    }
  },
  "components": {
    "fastEnter": {
      "quickLinks": "Quick Links",
      "invalidNavigation": "Invalid navigation config: missing route name or link"
    },
    "dragVerify": {
      "dragText": "Hold the slider and drag",
      "successText": "Verified"
    },
    "banner": {
      "card": {
        "viewDetails": "View Details",
        "cancel": "Cancel"
      },
      "basic": {
        "view": "View",
        "backgroundAlt": "Background Image"
      }
    },
    "cropper": {
      "chooseImage": "Choose Image",
      "clearImage": "Clear",
      "previewAlt": "Preview Image",
      "downloadImage": "Download Image",
      "coverImage": "Cover Image",
      "imageLoadFailed": "Image load failed:",
      "downloadLog": "Download image",
      "fileName": "image.png"
    }
  },
  "worktab": {
    "btn": {
      "refresh": "Refresh",
      "fixed": "Fixed",
      "unfixed": "Unfixed",
      "closeLeft": "Close left",
      "closeRight": "Close right",
      "closeOther": "Close other",
      "closeAll": "Close all"
    }
  },
  "login": {
    "leftView": {
      "title": "A backend system of beauty and efficiency",
      "subTitle": "A sleek and practical interface for a great user experience"
    },
    "title": "Welcome back",
    "subTitle": "Please enter your account and password to login",
    "roles": {
      "super": "Super Admin",
      "admin": "Admin",
      "user": "User"
    },
    "placeholder": {
      "username": "Please enter your account",
      "password": "Please enter your password",
      "tenant": "Please select a tenant",
      "slider": "Please slide to verify"
    },
    "sliderText": "Please slide to verify",
    "sliderSuccessText": "Verification successful",
    "rememberPwd": "Remember password",
    "forgetPwd": "Forgot password",
    "btnText": "Login",
    "noAccount": "No account yet?",
    "register": "Register",
    "success": {
      "title": "Login successful",
      "message": "Welcome back"
    }
  },
  "forgetPassword": {
    "title": "Forgot password?",
    "subTitle": "Enter your email to reset your password",
    "placeholder": "Please enter your email",
    "submitBtnText": "Submit",
    "backBtnText": "Back"
  },
  "register": {
    "title": "Create account",
    "subTitle": "Welcome to join us, please fill in the following information to complete the registration",
    "placeholder": {
      "username": "Please enter your account",
      "password": "Please enter your password",
      "confirmPassword": "Please enter your password again"
    },
    "rule": {
      "confirmPasswordRequired": "Please enter your password again",
      "passwordMismatch": "The two passwords are inconsistent!",
      "usernameLength": "The length is 3 to 20 characters",
      "passwordLength": "The password length cannot be less than 6 digits",
      "agreementRequired": "Please agree to the privacy policy"
    },
    "agreeText": "I agree",
    "privacyPolicy": "Privacy policy",
    "submitBtnText": "Register",
    "hasAccount": "Already have an account?",
    "toLogin": "To login"
  },
  "lockScreen": {
    "pwdError": "Password error",
    "avatarAlt": "User avatar",
    "devTools": {
      "title": "System Locked",
      "descriptionLine1": "Developer tools have been detected as open",
      "descriptionLine2": "For system security, please close developer tools before continuing",
      "footer": "Security Lock Activated"
    },
    "errors": {
      "decryptFailed": "Password decryption failed:",
      "validationFailed": "Form validation failed:",
      "updateStoreFailed": "Store update failed:"
    },
    "lock": {
      "inputPlaceholder": "Please input lock screen password",
      "btnText": "Lock"
    },
    "unlock": {
      "inputPlaceholder": "Please input unlock password",
      "btnText": "Unlock",
      "backBtnText": "Back to login"
    }
  },
  "greeting": {
    "dawn": "Good morning!",
    "morning": "Good morning!",
    "afternoon": "Good afternoon!",
    "evening": "Good evening!"
  },
  "exceptionPage": {
    "403": "Sorry, you do not have permission to access this page",
    "404": "Sorry, the page you are trying to access does not exist",
    "500": "Sorry, there was an error on the server",
    "gohome": "Go Home"
  },
  "menus": {
    "login": {
      "title": "Login"
    },
    "register": {
      "title": "Register"
    },
    "forgetPassword": {
      "title": "Forget Password"
    },
    "outside": {
      "title": "Outside"
    },
    "dashboard": {
      "title": "Dashboard",
      "console": "Console"
    },
    "result": {
      "title": "Result Page",
      "success": "Success",
      "fail": "Fail"
    },
    "exception": {
      "title": "Exception",
      "forbidden": "403",
      "notFound": "404",
      "serverError": "500"
    },
    "userLogin": "Login Logs",
    "system": {
      "title": "System Settings",
      "user": "User Manage",
      "userLogin": "Login Logs",
      "role": "Role Manage",
      "userCenter": "User Center",
      "menu": "Menu Manage"
    }
  },
  "menu": {
    "basStationArea": "BasStationArea",
    "dashboard": "Dashboard",
    "settings": "Settings",
    "basicInfo": "BasicInfo",
    "system": "System",
    "user": "User",
    "role": "Role",
    "menu": "Menu",
    "host": "Host",
    "department": "Department",
    "token": "Token",
    "operation": "Operation",
    "flowInstance": "FlowInstance",
    "flowStepInstance": "FlowStepInstance",
    "flowStepLog": "FlowStepLog",
    "taskInstance": "TaskInstance",
    "taskInstanceNode": "TaskInstanceNode",
    "config": "Config",
    "aiParam": "AI Params",
    "aiPrompt": "Prompts",
    "aiMcpMount": "MCP Mounts",
    "aiCallLog": "AI Observe",
    "tenant": "Tenant",
    "userLogin": "Token",
    "customer": "Customer",
    "shipper": "shipper",
    "matnr": "Matnr",
    "matnrGroup": "MatnrGroup",
    "warehouse": "Warehouse",
    "warehouseAreas": "WarehouseAreas",
    "loc": "Loc",
    "locItem": "LocItem",
    "locType": "LocType",
    "locArea": "locArea",
    "locAreaMat": "Logic Areas",
    "locAreaMatRela": "LocAreaMatRela",
    "locAreaRela": "LocAreaRela",
    "container": "Container",
    "contract": "Contract",
    "qlyInspect": "QlyInspect",
    "qlyIsptItem": "qlyIsptItem",
    "dictType": "DictType",
    "dictData": "DictData",
    "companys": "Companys",
    "serialRuleItem": "SerialRuleItem",
    "serialRule": "SerialRule",
    "asnOrder": "AsnOrder",
    "asnOrderItem": "AsnOrderItem",
    "asnOrderLog": "asnOrderLog",
    "asnOrderItemLog": "asnOrderItemLog",
    "purchase": "Purchase",
    "purchaseItem": "PurchaseItem",
    "preparationItem": "Preparation Item",
    "whMat": "Warehouse Mat",
    "fields": "Extend Fields",
    "fieldsItem": "Extend Fields Items",
    "warehouseAreasItem": "Temp Warehouse Areas Stock",
    "deviceSite": "deviceSite",
    "waitPakin": "WaitPakin",
    "waitPakinItem": "WaitPakinItem",
    "task": "Task",
    "taskItem": "TaskItem",
    "taskLog": "TaskLog",
    "taskItemLog": "TaskItemLog",
    "stock": "Stock Manage",
    "stockItem": "Stock Item",
    "locPreview": "LocItem",
    "histories": "Histories",
    "wareWork": "Warehouse Working",
    "statistics": "Stock Statistics",
    "stockManage": "Stock Manage",
    "logs": "Logs",
    "permissions": "Permissions",
    "delivery": "Delivery",
    "deliveryItem": "Delivery Item",
    "outStock": "Out Stock",
    "outStockItem": "Out Stock Item",
    "inStockPoces": "In Stock Pocess",
    "outStockPoces": "Out Stock Pocess",
    "warehouseStock": "Instant Inventory",
    "deviceBind": "Device Bind",
    "tasks": "Tasks",
    "wave": "Wave Manage",
    "waveItem": "Wave Item",
    "basStation": "BasStation",
    "basContainer": "BasContainer",
    "outBound": "Out Bound",
    "checkOutBound": "Check Out Bound",
    "stockTransfer": "Stock Transfer",
    "waveRule": "Wave Rules",
    "checkOrder": "Check Order",
    "checkItem": "Check Order Item",
    "checkDiffItem": "Check Diff Item",
    "checkDiff": "Check Diff",
    "transfer": "Transfer",
    "transferItem": "Transfer Item",
    "locRevise": "Loc Revise",
    "reviseLog": "Loc Revise Log",
    "reviseLogItem": "Loc Revise Log Item",
    "statisticReport": "Statistical Report",
    "locDeadReport": "Locs Dead Report",
    "stockStatistic": "Stock Statistic",
    "outStatistic": "Out Statistic",
    "inStatistic": "In Statistic",
    "inStatisticItem": "In Statistic Item",
    "outStatisticItem": "Out Statistic Item",
    "statisticCount": "Statistic Count",
    "preparation": "Preparation",
    "check": "Check",
    "abnormal": "Abnormal",
    "platform": "Platform",
    "freeze": "Freeze",
    "transferPoces": "Transfer Process",
    "menuPda": "MenuPda",
    "taskPathTemplate": "TaskPathTemplate",
    "taskPathTemplateNode": "TaskPathTemplateNode",
    "subsystemFlowTemplate": "SubsystemFlowTemplate",
    "flowStepTemplate": "FlowStepTemplate",
    "taskPathTemplateMerge": "TaskPathTemplateMerge",
    "missionFlowStepInstance": "Mission Flow Steps",
    "aiManagementCenter": "AI Management Center"
  },
  "ai": {
    "drawer": {
      "title": "WMS Assistant",
      "runtimeFailed": "Failed to load AI runtime",
      "sessionListFailed": "Failed to load AI sessions",
      "sessionDeleted": "Session deleted",
      "deleteSessionFailed": "Failed to delete AI session",
      "pinned": "Session pinned",
      "unpinned": "Session unpinned",
      "pinFailed": "Failed to update session pin state",
      "renamed": "Session renamed",
      "renameFailed": "Failed to rename session",
      "memoryCleared": "Session memory cleared",
      "clearMemoryFailed": "Failed to clear session memory",
      "retainLatestRoundSuccess": "Only the latest round was kept",
      "retainLatestRoundFailed": "Failed to keep only the latest round",
      "stopSuccess": "Current output stopped",
      "chatFailed": "AI chat failed",
      "newSession": "New Session",
      "sessionList": "Sessions",
      "searchPlaceholder": "Search session titles",
      "noSessions": "No history sessions",
      "sessionTitle": "Session {id}",
      "pinAction": "Pin session",
      "unpinAction": "Unpin session",
      "renameAction": "Rename session",
      "deleteAction": "Delete session",
      "activityTrace": "Thinking & Tool Trace",
      "traceExpand": "Show Trace",
      "traceCollapse": "Hide Trace",
      "noActivityTrace": "Thinking steps and tool traces will appear here by stage.",
      "thinkingEmpty": "Organizing the current stage information...",
      "thinkingStatusStarted": "Started",
      "thinkingStatusUpdated": "In Progress",
      "thinkingStatusCompleted": "Completed",
      "thinkingStatusFailed": "Failed",
      "thinkingStatusAborted": "Aborted",
      "unknownTool": "Unknown tool",
      "traceTypeThinking": "Thinking",
      "traceTypeTool": "Tool",
      "toolStatusFailed": "Failed",
      "toolStatusCompleted": "Completed",
      "toolStatusRunning": "Running",
      "collapseDetail": "Hide Details",
      "viewDetail": "View Details",
      "toolInput": "Input: {value}",
      "toolOutput": "Output summary: {value}",
      "toolError": "Error: {value}",
      "hasSummary": "Summary",
      "noSummary": "No Summary",
      "hasFacts": "Facts",
      "noFacts": "No Facts",
      "retainLatestRound": "Keep Latest Round",
      "clearMemory": "Clear Memory",
      "runtimeOverview": "Runtime Overview",
      "runtimeExpand": "Show Overview",
      "runtimeCollapse": "Hide Overview",
      "runtimePreviewExpand": "Show Runtime Preview",
      "runtimePreviewCollapse": "Collapse Runtime Preview",
      "loadingRuntime": "Loading AI runtime info...",
      "emptyHint": "AI responses stream back through SSE here. You can also maintain parameters, prompts, and MCP mounts from the quick links above.",
      "userRole": "You",
      "assistantRole": "AI",
      "thinking": "Thinking...",
      "inputPlaceholder": "Type your question. Press Enter to send, Shift + Enter for a new line",
      "inputHotkeyHint": "Enter to send, Shift + Enter for a new line",
      "clearInput": "Clear Input",
      "stop": "Stop",
      "send": "Send",
      "renameDialogTitle": "Rename Session",
      "sessionTitleField": "Session Title",
        "requestMetric": "Req: {value}",
        "sessionMetric": "Session: {id}",
        "promptMetric": "Prompt: {value}",
        "modelMetric": "Model: {value}",
        "promptLabel": "Prompt",
        "modelLabel": "Model",
        "modelSelectorLabel": "Chat Model",
        "modelSelectorHint": "Switching only affects subsequent replies in this session and does not change the global default model.",
        "modelSwitchFailed": "Failed to switch the chat model",
        "defaultModelSuffix": "(Default)",
        "mcpMetric": "MCP: {value}",
        "historyMetric": "History: {value}",
        "mcpLabel": "MCP",
        "historyLabel": "History",
        "recentMetric": "Recent: {value}",
      "elapsedMetric": "Elapsed: {value} ms",
      "firstTokenMetric": "First token: {value} ms",
      "tokenMetric": "Tokens: prompt {prompt} / completion {completion} / total {total}",
      "streaming": "Streaming"
    }
  },
  "message": {
    "requestTimeoutStopped": "Request timed out and waiting has stopped",
    "exportTimeoutStopped": "Export request timed out and waiting has stopped",
    "printTimeoutStopped": "Print data loading timed out and waiting has stopped",
    "routeRenderFailedTitle": "Page failed to load",
    "routeRenderFailed": "The page failed to render. Please try again later.",
    "systemUpgradeTitle": "System Upgrade Notice",
    "systemUpgradeIntro": "The system has been upgraded to version {version}. Please review the following updates:",
    "systemUpgradeRelogin": "This upgrade requires you to sign in again to apply the latest changes.",
    "exportInvalidDataType": "Data must be an array",
    "exportNoData": "No data available for export",
    "exportExceedMaxRows": "Row count exceeds the limit ({maxRows} rows)",
    "exportExcelFailed": "Excel export failed: {message}",
    "exportSuccessWithCount": "Successfully exported {count} records",
    "exportFailedUnknown": "Export failed: {message}",
    "exportWorkbookSubject": "Data Export",
    "exportWorkbookCompany": "System Export",
    "exportWorkbookCategory": "Data",
    "exportWorkbookKeywords": "excel,export,data",
    "exportWorkbookComments": "Generated automatically by the system"
  },
  "pages": {
    "systemDraft": {
      "aiParam": {
        "title": "AI Params",
        "subtitle": "Manage model connection parameters and default settings with cards.",
        "entity": "AI parameter",
        "reportTitle": "AI Parameter Report",
        "empty": "No AI parameters",
        "buttons": {
          "add": "Add Parameter"
        },
        "actions": {
          "setDefault": "Set Default"
        },
        "fields": {
          "baseUrl": "Base URL",
          "lastValidateTime": "Last Validation",
          "timeoutMs": "Timeout",
          "streamingEnabled": "Streaming",
          "maxTokens": "Max Tokens"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter parameter name",
          "providerType": "Provider",
          "providerTypePlaceholder": "Enter provider type",
          "model": "Model",
          "modelPlaceholder": "Enter model name",
          "status": "Default Status"
        },
        "status": {
          "default": "Default",
          "candidate": "Candidate"
        },
        "validation": {
          "valid": "Validated",
          "invalid": "Invalid",
          "notTested": "Not Tested"
        },
        "streaming": {
          "enabled": "Streaming",
          "disabled": "Non-streaming"
        },
        "table": {
          "name": "Name",
          "providerType": "Provider Type",
          "model": "Model",
          "status": "Default Status",
          "validateStatus": "Validation Status",
          "timeoutMs": "Timeout"
        },
        "summary": {
          "title": "Runtime Summary",
          "subtitle": "Overview of the active model, prompt and MCP mounts.",
          "refresh": "Refresh Summary",
          "activeModel": "Active Model",
          "activePrompt": "Active Prompt",
          "lastPromptUpdate": "Last updated {value}",
          "enabledMcp": "Enabled MCP",
          "enabledMcpCount": "{count}",
          "noMcp": "No mounts"
        },
        "dialog": {
          "titleCreate": "Create AI Param",
          "titleEdit": "Edit AI Param",
          "titleDetail": "AI Param Detail",
          "runtimeTitle": "Runtime Status",
          "runtimeDescription": "Run draft validation before saving. Runtime status comes from the backend.",
          "validateDraft": "Validate Draft",
          "labels": {
            "validateStatus": "Validation Status",
            "lastValidateElapsedMs": "Last Validation Elapsed",
            "lastValidateTime": "Last Validation Time",
            "updateBy": "Updated By",
            "updateTime": "Updated At",
            "lastValidateMessage": "Last Validation Message",
            "name": "Parameter Name",
            "providerType": "Provider Type",
            "baseUrl": "Base URL",
            "apiKey": "API Key",
            "model": "Model",
            "temperature": "Temperature",
            "topP": "Top P",
            "maxTokens": "Max Tokens",
            "timeoutMs": "Timeout (ms)",
            "streamingEnabled": "Streaming",
            "status": "Default Status",
            "memo": "Remark"
          },
          "placeholders": {
            "name": "Enter parameter name",
            "providerType": "Select provider type",
            "baseUrl": "Enter an OpenAI-compatible base URL",
            "apiKey": "Enter API key",
            "model": "Enter model name",
            "temperature": "Enter temperature",
            "topP": "Enter topP",
            "maxTokens": "Enter max token count",
            "timeoutMs": "Enter timeout",
            "status": "Select default status",
            "memo": "Enter remark"
          },
          "validation": {
            "name": "Please enter a parameter name",
            "providerType": "Please select a provider type",
            "baseUrl": "Please enter a base URL",
            "apiKey": "Please enter an API key",
            "model": "Please enter a model name"
          }
        },
        "messages": {
          "setDefaultSuccess": "Default parameter updated",
          "summaryTimeout": "Runtime summary timed out and waiting has stopped",
          "summaryUnavailable": "Runtime summary is currently unavailable"
        }
      },
      "aiPrompt": {
        "title": "Prompt Management",
        "subtitle": "Manage system prompts and scene-based user prompt templates with cards.",
        "entity": "Prompt",
        "reportTitle": "Prompt Report",
        "empty": "No prompts",
        "buttons": {
          "add": "Add Prompt"
        },
        "fields": {
          "sceneTag": "Scene {value}",
          "systemPrompt": "System Prompt",
          "userPromptTemplate": "User Prompt Template"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter prompt name",
          "code": "Prompt Code",
          "codePlaceholder": "Enter prompt code",
          "scene": "Scene",
          "scenePlaceholder": "Enter scene",
          "status": "Status"
        },
        "table": {
          "name": "Prompt Name",
          "code": "Prompt Code",
          "scene": "Scene",
          "status": "Status",
          "systemPrompt": "System Prompt",
          "userPromptTemplate": "User Prompt Template"
        },
          "dialog": {
            "titleCreate": "Create Prompt",
            "titleEdit": "Edit Prompt",
            "titleDetail": "Prompt Detail",
            "defaultPreviewInput": "Please summarize the current input",
            "previewTitle": "Render Preview",
          "previewDescription": "Input sample content and metadata to preview the final rendering.",
          "previewAction": "Render Preview",
          "previewResolvedVariables": "Resolved variables: {value}",
          "previewNoVariables": "None",
          "runtimeTitle": "Runtime Status",
          "labels": {
            "updateBy": "Updated By",
            "updateTime": "Updated At",
            "name": "Prompt Name",
            "code": "Prompt Code",
            "scene": "Scene",
            "systemPrompt": "System Prompt",
            "userPromptTemplate": "User Prompt Template",
            "status": "Status",
            "memo": "Remark"
          },
          "placeholders": {
            "previewInput": "Enter sample input",
            "metadata": "Enter JSON metadata, for example {\"path\":\"/system/aiPrompt\"}",
            "renderedSystemPrompt": "Rendered system prompt",
            "renderedUserPrompt": "Rendered user prompt",
            "name": "Enter prompt name",
            "code": "Enter prompt code",
            "scene": "Enter scene",
            "systemPrompt": "Enter system prompt",
            "userPromptTemplate": "Enter user prompt template",
            "status": "Select status",
            "memo": "Enter remark"
          },
          "validation": {
            "name": "Please enter a prompt name",
            "code": "Please enter a prompt code",
            "scene": "Please enter a scene",
            "systemPrompt": "Please enter the system prompt",
            "userPromptTemplate": "Please enter the user prompt template"
          }
        },
        "messages": {
          "previewFailed": "Render preview failed"
        }
      },
      "aiMcpMount": {
        "title": "MCP Mounts",
        "subtitle": "Manage MCP service mounts and runtime health in the current environment.",
        "entity": "MCP mount",
        "empty": "No MCP mounts",
        "buttons": {
          "add": "Add Mount"
        },
        "fields": {
          "target": "Target",
          "lastTestTime": "Last Test Time",
          "timeoutMs": "Request Timeout",
          "lastInitElapsedMs": "Last Init Elapsed"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter mount name",
          "transportType": "Transport Type",
          "status": "Status"
        },
        "actions": {
          "connectivityTest": "Connectivity Test",
          "toolsPreview": "Tools Preview"
        },
        "health": {
          "healthy": "Healthy",
          "unhealthy": "Unhealthy",
          "notTested": "Not Tested"
        },
        "groups": {
          "builtin": {
            "title": "Built-in Mounts",
            "description": "Platform built-in MCP capabilities."
          },
          "sse": {
            "title": "SSE / HTTP Mounts",
            "description": "Remote MCP services connected through HTTP/SSE."
          },
          "stdio": {
            "title": "STDIO Mounts",
            "description": "MCP services launched locally and communicated with through stdio."
          }
        },
        "dialog": {
          "titleCreate": "Create Mount",
          "titleEdit": "Edit Mount",
          "titleDetail": "Mount Detail",
          "draftTestTitle": "Draft Connectivity Test",
          "draftTestDescription": "Validate the current mount configuration before saving.",
          "draftTestAction": "Test Draft Connectivity",
          "runtimeTitle": "Runtime Status",
          "runtimeLabels": {
            "healthStatus": "Health Status",
            "lastTestTime": "Last Test Time",
            "lastInitElapsedMs": "Last Init Elapsed",
            "updateTime": "Updated At",
            "lastTestMessage": "Last Test Message"
          },
          "labels": {
            "name": "Name",
            "transportType": "Transport Type",
            "builtinCode": "Built-in MCP Code",
            "serverUrl": "Server URL",
            "endpoint": "SSE Endpoint",
            "headersJson": "Headers JSON",
            "command": "Command",
            "argsJson": "Args JSON",
            "envJson": "Environment JSON",
            "requestTimeoutMs": "Request Timeout (ms)",
            "sort": "Sort",
            "status": "Status",
            "memo": "Remark"
          },
          "placeholders": {
            "name": "Enter name",
            "transportType": "Select transport type",
            "builtinCode": "Enter built-in MCP code",
            "serverUrl": "Enter server URL",
            "endpoint": "Enter SSE endpoint",
            "headersJson": "Enter headers JSON",
            "command": "Enter command",
            "argsJson": "Enter command args JSON",
            "envJson": "Enter environment JSON",
            "requestTimeoutMs": "Enter request timeout",
            "sort": "Enter sort",
            "status": "Select status",
            "memo": "Enter remark"
          },
          "validation": {
            "name": "Please enter a name",
            "transportType": "Please select a transport type"
          }
        },
        "toolsDrawer": {
          "title": "MCP Tools Preview",
          "currentMount": "Current Mount",
          "description": "Preview the tool list and run debug tests for tool inputs.",
          "refreshTools": "Refresh Tools",
          "connectivityTest": "Connectivity Test",
          "empty": "No tools available",
          "toolTest": "Run Tool Test",
          "inputJson": "Input JSON",
          "inputJsonPlaceholder": "Enter JSON, for example {\"taskCode\":\"TK001\"}",
          "output": "Tool Output",
          "outputPlaceholder": "Tool output will be shown here",
          "inputSchema": "Input Schema",
          "toolInputRequired": "Please enter tool test input JSON",
          "toolTestSuccess": "Tool test succeeded",
          "toolTestFailed": "Tool test failed",
          "toolsLoadFailed": "Failed to load tool list"
        },
        "messages": {
          "connectivityTimeout": "Connectivity test timed out and waiting has stopped",
          "connectivitySuccess": "Connectivity test succeeded",
          "connectivityFailed": "Connectivity test failed",
          "draftConnectivitySuccess": "Draft connectivity test succeeded",
          "draftConnectivityFailed": "Draft connectivity test failed",
          "toolsTimeout": "Tool list timed out and waiting has stopped",
          "toolTestTimeout": "Tool test timed out and waiting has stopped",
          "initElapsedMs": "Initialization elapsed {value} ms"
        }
      },
      "role": {
        "entity": "Role",
        "reportTitle": "Role Report",
        "buttons": {
          "add": "Add Role"
        },
        "search": {
          "name": "Role Name",
          "namePlaceholder": "Enter role name",
          "code": "Role Code",
          "codePlaceholder": "Enter role code",
          "memo": "Remark",
          "memoPlaceholder": "Enter remark",
          "condition": "Keyword",
          "conditionPlaceholder": "Search by keyword",
          "status": "Status",
          "statusPlaceholder": "Select status"
        },
        "table": {
          "name": "Role Name",
          "code": "Role Code",
          "memo": "Remark",
          "status": "Status",
          "updateTime": "Updated At",
          "createTime": "Created At",
          "operation": "Operation"
        },
        "actions": {
          "scopeMenu": "Web Permissions",
          "scopePda": "PDA Permissions",
          "scopeMatnr": "Material Permissions",
          "scopeWarehouse": "Warehouse Permissions",
          "edit": "Edit Role",
          "delete": "Delete Role"
        },
        "scopes": {
          "menu": "Web Permissions",
          "pda": "PDA Permissions",
          "matnr": "Material Permissions",
          "warehouse": "Warehouse Permissions"
        },
        "dialog": {
          "addTitle": "Add Role",
          "editTitle": "Edit Role",
          "validationName": "Please enter the role name",
          "name": "Role Name",
          "namePlaceholder": "Enter role name",
          "code": "Role Code",
          "codePlaceholder": "Enter role code",
          "status": "Status",
          "statusPlaceholder": "Select status",
          "memo": "Remark",
          "memoPlaceholder": "Enter remark"
        },
        "permission": {
          "title": "Role Permissions",
          "currentRole": "Current Role: ",
          "unselected": "No role selected",
          "selectAll": "Select All",
          "clear": "Clear",
          "saveCurrent": "Save Current Permissions",
          "searchPlaceholder": "Search permission tree",
          "authButton": "Button",
          "scopeLoadTimeout": "{title} loading timed out and waiting has stopped",
          "scopeLoadFailed": "Failed to load {title}",
          "saveSuccess": "Permissions saved successfully",
          "saveFailed": "Failed to save permissions"
        }
      },
      "menu": {
        "title": "Menu Management",
        "addMenu": "Add Menu",
        "menuName": "Menu Name",
        "route": "Route Path",
        "iconPreview": "Icon Preview",
        "menuType": "Menu Type",
        "componentKey": "Component Key",
        "authority": "Authority",
        "sort": "Sort",
        "status": "Status",
        "memo": "Remark",
        "operation": "Operation",
        "types": {
          "button": "Button",
          "directory": "Directory",
          "menu": "Menu"
        },
        "addPermission": "Add Permission",
        "deleteMenuMessage": "Are you sure you want to delete menu \"{label}\"? This action cannot be undone.",
        "deleteAuthMessage": "Are you sure you want to delete permission \"{label}\"? This action cannot be undone.",
        "selfParentError": "The parent menu cannot be the current menu"
      }
    },
    "orders": {
      "common": {
        "orderCode": "Document Code",
        "trackCode": "Track Code"
      },
      "asnOrderItem": {
        "reportTitle": "Receiving Item Report",
        "sourceTitle": "Current Source",
        "sourceLabel": "ASN ID: {id}",
        "orderType": {
          "in": "Inbound",
          "out": "Outbound"
        },
        "ntyStatus": {
          "notReported": "Not Reported",
          "reported": "Reported"
        },
        "search": {
          "conditionPlaceholder": "Enter PO No./material code/material name/supplier",
          "poCode": "PO No.",
          "poCodePlaceholder": "Enter PO No.",
          "orderCode": "ASN No.",
          "orderCodePlaceholder": "Enter ASN No.",
          "platWorkCode": "Plan Track No.",
          "platWorkCodePlaceholder": "Enter plan track No.",
          "platItemId": "Line No.",
          "platItemIdPlaceholder": "Enter line No.",
          "matnrCodePlaceholder": "Enter material code",
          "maktxPlaceholder": "Enter material name",
          "splrBatchPlaceholder": "Enter supplier batch",
          "stockUnit": "Stock Unit",
          "stockUnitPlaceholder": "Enter stock unit",
          "ntyStatus": "Report Status",
          "createTimeRange": "Created At",
          "updateTimeRange": "Updated At",
          "startTime": "Start Time",
          "endTime": "End Time",
          "rangeSeparator": "To"
        },
        "table": {
          "poCode": "PO No.",
          "wkType": "Business Type",
          "type": "Document Type",
          "purchaseOrg": "Purchase Org",
          "purchaseUser": "Purchaser",
          "platWorkCode": "Plan Track No.",
          "platItemId": "Line No.",
          "stockUnit": "Stock Unit",
          "anfme": "Delivery Qty",
          "qty": "Received Qty",
          "targetWarehouseId": "Suggested Target Warehouse",
          "businessTime": "Business Time"
        },
        "detail": {
          "title": "Receiving Item Detail",
          "baseInfo": "Basic Information",
          "itemInfo": "Item Information",
          "auditInfo": "Audit Information",
          "extendFields": "Extended Fields",
          "poCode": "PO No.",
          "orderCode": "ASN No.",
          "wkType": "Business Type",
          "orderType": "Document Type",
          "purchaseOrg": "Purchase Org",
          "purchaseUser": "Purchaser",
          "supplierId": "Supplier ID",
          "supplierName": "Supplier Name",
          "businessTime": "Business Time",
          "targetWarehouseId": "Suggested Target Warehouse",
          "ntyStatus": "Report Status",
          "platItemId": "Plan Line No.",
          "platWorkCode": "Plan Track No.",
          "spec": "Specification",
          "model": "Model",
          "barcode": "Barcode",
          "qrcode": "QR Code",
          "packName": "Package Name",
          "stockUnit": "Stock Unit",
          "purUnit": "Purchase Unit",
          "anfme": "Delivery Qty",
          "qty": "Received Qty",
          "purQty": "Purchase Qty",
          "prodTime": "Production Date",
          "isptResult": "Inspection Result",
          "sourceWarehouseId": "Source Warehouse"
        },
        "messages": {
          "detailTimeout": "Receiving item detail timed out and waiting has stopped",
          "detailFailed": "Failed to load receiving item detail",
          "pageTimeout": "Receiving item loading timed out and waiting has stopped",
          "noExportData": "No data available for export"
        }
      },
      "asnOrder": {
        "reportTitle": "ASN Report",
        "entity": "ASN",
        "buttons": {
          "createByPo": "Create by PO"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter ASN No./PO No./Supplier",
          "code": "ASN No.",
          "codePlaceholder": "Enter ASN No.",
          "poCode": "PO No.",
          "poCodePlaceholder": "Enter PO No.",
          "wkType": "Business Type",
          "wkTypePlaceholder": "Enter business type",
          "exceStatus": "Document Status",
          "supplierName": "Supplier",
          "supplierPlaceholder": "Enter supplier",
          "purchaseUserName": "Purchaser",
          "purchaseUserPlaceholder": "Enter purchaser"
        },
        "placeholder": {
          "condition": "Enter ASN No./PO No./Supplier",
          "code": "Enter ASN No.",
          "poCode": "Enter PO No.",
          "wkType": "Enter business type",
          "supplierName": "Enter supplier",
          "purchaseUserName": "Enter purchaser"
        },
        "status": {
          "pending": "Pending",
          "running": "In Progress",
          "receiving": "Received",
          "taskRunning": "Task Running",
          "completed": "Completed",
          "cancelled": "Cancelled",
          "closed": "Closed"
        },
        "actions": {
          "view": "View Detail",
          "items": "Receiving Items",
          "print": "Print",
          "complete": "Complete"
        },
        "detail": {
          "title": "ASN Detail",
          "baseInfo": "Basic Information",
          "items": "Order Items",
          "asnCode": "ASN No.",
          "poCode": "PO No.",
          "wkType": "Business Type",
          "orderType": "Order Type",
          "status": "Document Status",
          "purchaseOrg": "Purchasing Org",
          "purchaseUser": "Purchaser",
          "supplier": "Supplier",
          "anfme": "Expected Qty",
          "qty": "Received Qty",
          "updateTime": "Updated At",
          "createTime": "Created At",
          "memo": "Remark",
          "count": "{count} items",
          "completeTitle": "Complete Confirmation",
          "completeConfirm": "Are you sure you want to complete ASN {code}?",
          "completeSuccess": "ASN completed",
          "actionFailed": "ASN action failed",
          "detailTimeout": "ASN detail items timed out and waiting has stopped",
          "itemsTimeout": "ASN detail items timed out and waiting has stopped"
        },
        "createByPoDialog": {
          "title": "Create by PO",
          "purchaseList": "Available PO List",
          "purchasePreview": "PO Item Preview",
          "purchaseSelected": "Selected: {code}",
          "purchaseEmpty": "Select a PO from the left first",
          "purchaseGenerateHint": "Generate ASN from {count} items of PO {code}",
          "purchaseGenerateEmpty": "Please select an available PO",
          "generate": "Generate ASN",
          "refreshItems": "Refresh Items",
          "messages": {
            "purchaseItemsTimeout": "PO items timed out and waiting has stopped",
            "purchaseItemsAllTimeout": "Full PO items timed out and waiting has stopped",
            "purchaseRequired": "Please select a PO first",
            "purchaseItemsEmpty": "The selected PO has no buildable items",
            "createByPoSuccess": "ASN created from PO successfully",
            "createByPoFailed": "Create ASN by PO failed"
          },
          "search": {
            "condition": "Keyword",
            "conditionPlaceholder": "Enter PO No./source/supplier",
            "code": "PO No.",
            "codePlaceholder": "Enter PO No.",
            "source": "Source",
            "sourcePlaceholder": "Enter source",
            "supplierName": "Supplier",
            "supplierNamePlaceholder": "Enter supplier"
          }
        },
        "table": {
          "poItemId": "PO Line No.",
          "expectedQty": "Expected Qty",
          "receivedQty": "Received Qty",
          "remainingQty": "Creatable Qty",
          "poStatus": "PO Status",
          "purchaseQty": "Purchase Qty",
          "generatedQty": "Generated ASN Qty",
          "receivedQtyTotal": "Received Qty"
        }
      },
      "asnOrderLog": {
        "table": {
          "poId": "PO ID",
          "type": "Order Type",
          "wkType": "Business Type",
          "anfme": "Delivery Qty",
          "qty": "Received Qty",
          "logisNo": "Logistics No.",
          "arrTime": "Estimated Arrival Time",
          "rleStatus": "Release Status",
          "exceStatus": "Execution Status"
        }
      },
      "asnOrderItemLog": {
        "reportTitle": "ASN Item Log Report",
        "table": {
          "asnCode": "ASN No.",
          "platItemId": "Platform Line No.",
          "poDetlId": "PO Item ID",
          "poCode": "PO No.",
          "fieldsIndex": "Dynamic Field Index",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "anfme": "Delivery Qty",
          "stockUnit": "Stock Unit",
          "purQty": "Purchase Qty",
          "purUnit": "Purchase Unit",
          "qty": "Received Qty",
          "splrCode": "Supplier Code",
          "splrBatch": "Supplier Batch",
          "splrName": "Supplier Name",
          "qrcode": "QR Code",
          "trackCode": "Track Code",
          "barcode": "Barcode",
          "packName": "Package Name",
          "ntyStatus": "Report Status"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter ASN No./PO No./material code",
          "logId": "Log ID",
          "logIdPlaceholder": "Enter log ID",
          "asnCodePlaceholder": "Enter ASN No.",
          "poCodePlaceholder": "Enter PO No.",
          "matnrCodePlaceholder": "Enter material code",
          "maktxPlaceholder": "Enter material name",
          "splrBatchPlaceholder": "Enter supplier batch"
        },
        "status": {
          "notReported": "Not Reported",
          "reported": "Reported",
          "partialReported": "Partially Reported"
        }
      },
      "outStock": {
        "reportTitle": "Out Stock Report",
        "entity": "Out Stock Order",
        "type": {
          "out": "Out Stock Order"
        },
        "businessType": {
          "salesOut": "Sales Outbound",
          "transferOut": "Transfer Outbound",
          "stockOut": "Stock Outbound",
          "preOut": "Preparation Outbound"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter out stock order / PO No. / customer",
          "code": "Out Stock Order",
          "codePlaceholder": "Enter out stock order",
          "poCode": "PO No.",
          "poCodePlaceholder": "Enter PO No.",
          "wkType": "Business Type",
          "wkTypePlaceholder": "Select business type",
          "exceStatus": "Document Status",
          "exceStatusPlaceholder": "Select document status",
          "rleStatus": "Release Status",
          "rleStatusPlaceholder": "Select release status",
          "logisNo": "Logistics No.",
          "logisNoPlaceholder": "Enter logistics No.",
          "customerName": "Customer Name",
          "customerNamePlaceholder": "Enter customer name",
          "saleOrgName": "Sales Org",
          "saleOrgNamePlaceholder": "Enter sales org",
          "memo": "Remark",
          "memoPlaceholder": "Enter remark"
        },
        "status": {
          "initialized": "Initialized",
          "pending": "Pending",
          "generated": "Generated Work File",
          "running": "Running",
          "completed": "Completed",
          "cancelled": "Cancelled",
          "released": "Released"
        },
        "actions": {
          "view": "View Detail",
          "items": "Items",
          "print": "Print",
          "complete": "Complete",
          "cancel": "Cancel",
          "delete": "Delete"
        },
        "table": {
          "code": "Out Stock Order",
          "poCode": "PO No.",
          "type": "Order Type",
          "wkType": "Business Type",
          "customerName": "Customer",
          "saleOrgName": "Sales Org",
          "anfme": "Required Qty",
          "workQty": "Execution Qty",
          "qty": "Outbound Qty",
          "logisNo": "Logistics No.",
          "rleStatus": "Release Status",
          "exceStatus": "Document Status",
          "updateTime": "Updated At"
        },
        "detail": {
          "title": "Out Stock Detail",
          "baseInfo": "Basic Information",
          "auditInfo": "Audit Information",
          "items": "Order Items",
          "count": "{count} items",
          "code": "Out Stock Order",
          "poCode": "PO No.",
          "type": "Order Type",
          "wkType": "Business Type",
          "exceStatus": "Document Status",
          "rleStatus": "Release Status",
          "logisNo": "Logistics No.",
          "businessTime": "Business Time",
          "saleOrgName": "Sales Org",
          "saleUserName": "Sales User",
          "customerId": "Customer Code",
          "customerName": "Customer Name",
          "stockOrgName": "Warehouse Org",
          "anfme": "Required Qty",
          "workQty": "Execution Qty",
          "qty": "Outbound Qty",
          "memo": "Remark",
          "createBy": "Created By",
          "createTime": "Created At",
          "updateBy": "Updated By",
          "updateTime": "Updated At"
        },
        "messages": {
          "detailTimeout": "Out stock detail timed out and waiting has stopped",
          "itemsTimeout": "Out stock items timed out and waiting has stopped",
          "detailLoadFailed": "Failed to load out stock detail",
          "completeTitle": "Complete Confirmation",
          "completeConfirm": "Are you sure you want to complete out stock order {code}?",
          "completeSuccess": "Completed successfully",
          "cancelTitle": "Cancel Confirmation",
          "cancelConfirm": "Are you sure you want to cancel out stock order {code}?",
          "cancelSuccess": "Cancelled successfully",
          "actionFailed": "Out stock action failed"
        }
      },
      "outStockItem": {
        "title": "Out Stock Item",
        "reportTitle": "Out Stock Item Report",
        "sourceSummary": {
          "title": "Current Source",
          "orderId": "Out stock order ID: {id}"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter out stock order / material code / material name",
          "orderCode": "Out Stock Order",
          "orderCodePlaceholder": "Enter out stock order",
          "poCode": "PO No.",
          "poCodePlaceholder": "Enter PO No.",
          "platItemId": "Platform Line No.",
          "platItemIdPlaceholder": "Enter platform line No.",
          "matnrCode": "Material Code",
          "matnrCodePlaceholder": "Enter material code",
          "maktx": "Material Name",
          "maktxPlaceholder": "Enter material name",
          "batch": "Batch",
          "batchPlaceholder": "Enter batch",
          "splrBatch": "Supplier Batch",
          "splrBatchPlaceholder": "Enter supplier batch",
          "barcode": "Barcode",
          "barcodePlaceholder": "Enter barcode",
          "fieldsIndex": "Field Index",
          "fieldsIndexPlaceholder": "Enter field index",
          "status": "Status",
          "statusPlaceholder": "Select status"
        },
        "detail": {
          "title": "Out Stock Item Detail",
          "orderCode": "Out Stock Order",
          "poCode": "PO No.",
          "platItemId": "Platform Line No.",
          "platOrderCode": "Platform Order No.",
          "platWorkCode": "Platform Work Order No.",
          "projectCode": "Project No.",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "spec": "Specification",
          "model": "Model",
          "batch": "Batch",
          "splrBatch": "Supplier Batch",
          "stockUnit": "Stock Unit",
          "purUnit": "Purchase Unit",
          "baseUnit": "Base Unit",
          "fieldsIndex": "Field Index",
          "barcode": "Barcode",
          "qrcode": "QR Code",
          "packName": "Package Name",
          "status": "Status",
          "anfme": "Quantity",
          "workQty": "Execution Qty",
          "qty": "Outbound Qty",
          "purQty": "Purchase Qty",
          "demandQty": "Demand Qty",
          "splrCode": "Supplier Code",
          "splrName": "Supplier Name",
          "sourceWarehouseId": "Source Warehouse",
          "targetWarehouseId": "Target Warehouse",
          "ownerName": "Owner",
          "keeperName": "Keeper",
          "memo": "Remark",
          "createBy": "Created By",
          "createTime": "Created At",
          "updateBy": "Updated By",
          "updateTime": "Updated At"
        },
        "table": {
          "orderCode": "Out Stock Order",
          "poCode": "PO No.",
          "platItemId": "Platform Line No.",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "batch": "Batch",
          "splrBatch": "Supplier Batch",
          "stockUnit": "Stock Unit",
          "anfme": "Quantity",
          "workQty": "Execution Qty",
          "qty": "Outbound Qty",
          "fieldsIndex": "Field Index",
          "status": "Status",
          "updateTime": "Updated At"
        },
        "messages": {
          "detailTimeout": "Out stock item detail timed out and waiting has stopped",
          "detailFailed": "Failed to load out stock item detail"
        }
      },
      "delivery": {
        "reportTitle": "DO Report",
        "detailReportTitle": "DO Item Report",
        "entity": "DO",
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter No./ERP master order/platform order",
          "code": "No.",
          "codePlaceholder": "Enter No.",
          "platId": "ERP Master Order ID",
          "platIdPlaceholder": "Enter ERP master order ID",
          "type": "Order Type",
          "typePlaceholder": "Enter order type",
          "wkType": "Business Type",
          "wkTypePlaceholder": "Enter business type",
          "source": "Order Source",
          "sourcePlaceholder": "Enter order source",
          "exceStatus": "Execution Status",
          "exceStatusPlaceholder": "Enter execution status",
          "memo": "Remark",
          "memoPlaceholder": "Enter remark"
        },
        "placeholder": {
          "condition": "Enter No./ERP master order/platform order",
          "code": "Enter No.",
          "platId": "Enter ERP master order ID",
          "type": "Enter order type",
          "wkType": "Enter business type",
          "source": "Enter order source",
          "exceStatus": "Enter execution status",
          "memo": "Enter remark"
        },
        "status": {
          "normal": "Normal",
          "disabled": "Disabled",
          "pending": "Pending",
          "running": "Running",
          "partial": "Partially Completed",
          "completed": "Completed"
        },
        "actions": {
          "view": "View Detail",
          "items": "Items",
          "delete": "Delete"
        },
        "detail": {
          "title": "Handover Order Detail",
          "baseInfo": "Basic Information",
          "auditInfo": "Audit Information",
          "items": "Handover Order Items",
          "code": "Handover No.",
          "platId": "ERP Master Order ID",
          "platCode": "Platform Order No.",
          "type": "Order Type",
          "wkType": "Business Type",
          "source": "Order Source",
          "anfme": "Expected Qty",
          "qty": "Received Qty",
          "workQty": "In-progress Qty",
          "status": "Status",
          "exceStatus": "Execution Status",
          "memo": "Remark",
          "startTime": "Planned Outbound Time",
          "endTime": "Planned Outbound End Time",
          "createBy": "Created By",
          "createTime": "Created At",
          "updateBy": "Updated By",
          "updateTime": "Updated At",
          "count": "{count} items"
        },
        "table": {
          "deliveryCode": "Handover No.",
          "platCode": "Platform Order No.",
          "platItemId": "Platform Line No.",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "fieldsIndex": "Dynamic Field Index",
          "anfme": "Qty",
          "workQty": "Working Qty",
          "qty": "Outbound Qty",
          "startTime": "Planned Outbound Time",
          "endTime": "Planned Outbound End Time",
          "nromQty": "Std. Pack",
          "printQty": "Print Qty",
          "splrName": "Supplier Name",
          "splrCode": "Supplier Code",
          "splrBatch": "Supplier Batch"
        },
        "messages": {
          "itemsTimeout": "DO items timed out and waiting has stopped",
          "detailTimeout": "DO detail timed out and waiting has stopped",
          "detailLoadFailed": "Failed to load DO detail"
        }
      },
      "deliveryItem": {
        "reportTitle": "DO Item Report",
        "sourceTitle": "Current Source",
        "sourceLabel": "DO ID: {id}",
        "search": {
          "conditionPlaceholder": "Enter DO No./material code/material name/supplier",
          "deliveryCode": "DO No.",
          "deliveryCodePlaceholder": "Enter DO No.",
          "platItemId": "Platform Line No.",
          "platItemIdPlaceholder": "Enter platform line No.",
          "matnrCodePlaceholder": "Enter material code",
          "maktxPlaceholder": "Enter material name",
          "supplierName": "Supplier Name",
          "supplierNamePlaceholder": "Enter supplier name",
          "supplierBatchPlaceholder": "Enter supplier batch"
        },
        "table": {
          "deliveryId": "DO ID",
          "deliveryCode": "DO No.",
          "platItemId": "Platform Line No.",
          "fieldsIndex": "Field Index",
          "workQty": "Execution Qty",
          "qty": "Outbound Qty",
          "nromQty": "Std. Pack",
          "printQty": "Print Qty",
          "supplierCode": "Supplier Code",
          "supplierName": "Supplier Name"
        },
        "detail": {
          "title": "DO Item Detail",
          "baseInfo": "Basic Information",
          "auditInfo": "Audit Information",
          "deliveryId": "DO ID",
          "deliveryCode": "DO No.",
          "platItemId": "Platform Line No.",
          "fieldsIndex": "Field Index",
          "workQty": "Execution Qty",
          "qty": "Outbound Qty",
          "nromQty": "Std. Pack",
          "printQty": "Print Qty",
          "supplierCode": "Supplier Code",
          "supplierName": "Supplier Name",
          "packName": "Package Name",
          "prodTime": "Production Date"
        },
        "messages": {
          "detailTimeout": "DO item detail timed out and waiting has stopped",
          "detailFailed": "Failed to load DO item detail"
        }
      },
      "transfer": {
        "reportTitle": "Transfer Report",
        "entity": "Transfer Order",
        "buttons": {
          "add": "Add Transfer",
          "publish": "Dispatch"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter No./remark/warehouse/area",
          "code": "Transfer No.",
          "codePlaceholder": "Enter transfer No.",
          "type": "Transfer Type",
          "source": "Source",
          "exceStatus": "Execution Status",
          "orgWareName": "Source Warehouse",
          "orgWareNamePlaceholder": "Enter source warehouse",
          "tarWareName": "Target Warehouse",
          "tarWareNamePlaceholder": "Enter target warehouse",
          "orgAreaName": "Source Area",
          "orgAreaNamePlaceholder": "Enter source area",
          "tarAreaName": "Target Area",
          "tarAreaNamePlaceholder": "Enter target area",
          "status": "Status",
          "memo": "Remark",
          "memoPlaceholder": "Enter remark"
        },
        "status": {
          "sourceErp": "ERP",
          "sourceWms": "WMS Generated",
          "sourceExcel": "Excel Import",
          "sourceQms": "QMS",
          "pending": "Pending",
          "running": "Running",
          "completed": "Completed",
          "normal": "Normal",
          "frozen": "Frozen"
        },
        "actions": {
          "add": "Add Transfer",
          "view": "View Detail",
          "items": "Items",
          "edit": "Edit",
          "publish": "Dispatch",
          "delete": "Delete"
        },
        "placeholder": {
          "condition": "Enter No./remark/warehouse/area",
          "code": "Enter transfer No.",
          "orgWareName": "Enter source warehouse",
          "tarWareName": "Enter target warehouse",
          "orgAreaName": "Enter source area",
          "tarAreaName": "Enter target area",
          "memo": "Enter remark"
        },
        "detail": {
          "title": "Transfer Detail",
          "baseInfo": "Basic Information",
          "auditInfo": "Audit Information",
          "source": "Source",
          "orgWareName": "Source Warehouse",
          "tarWareName": "Target Warehouse",
          "orgAreaName": "Source Area",
          "tarAreaName": "Target Area",
          "memo": "Remark",
          "createBy": "Created By",
          "createTime": "Created At",
          "updateBy": "Updated By",
          "updateTime": "Updated At",
          "relatedOrders": "Related Orders",
          "relatedCode": "Related Order No.",
          "code": "Transfer No.",
          "type": "Transfer Type",
          "wkType": "Business Type",
          "exceStatus": "Execution Status",
          "status": "Status",
          "workQty": "In-progress Qty",
          "qty": "Completed Qty",
          "stationId": "Station No.",
          "businessTime": "Business Time"
        },
        "dialog": {
          "titleAdd": "Add Transfer",
          "titleEdit": "Edit Transfer",
          "tip": "The transfer number is generated by the system. When creating a new record, only maintain the transfer type, source/target area, and remark.",
          "code": "Transfer No.",
          "type": "Transfer Type",
          "orgAreaId": "Source Area",
          "tarAreaId": "Target Area",
          "status": "Status",
          "memo": "Remark",
          "placeholderCode": "Generated after saving",
          "placeholderType": "Please select a transfer type",
          "placeholderOrgAreaId": "Please select a source area",
          "placeholderTarAreaId": "Please select a target area",
          "placeholderStatus": "Please select a status",
          "placeholderMemo": "Please enter a remark",
          "validation": {
            "type": "Please select a transfer type",
            "orgAreaId": "Please select a source area",
            "tarAreaId": "Please select a target area"
          }
        },
        "messages": {
          "detailTimeout": "Transfer detail timed out and waiting has stopped",
          "ordersTimeout": "Transfer items timed out and waiting has stopped",
          "ordersLoadFailed": "Failed to load transfer items",
          "detailLoadFailed": "Failed to load transfer detail",
          "publishConfirm": "Are you sure you want to dispatch transfer order \"{code}\"?",
          "publishTitle": "Dispatch Confirmation",
          "publishSuccess": "Dispatched successfully",
          "publishFailed": "Dispatch failed",
          "typeOptionsTimeout": "Transfer type options timed out and waiting has stopped",
          "areaOptionsTimeout": "Area options timed out and waiting has stopped"
        }
      },
      "transferItem": {
        "reportTitle": "Transfer Item Report",
        "sourceTitle": "Current Source",
        "sourceLabel": "Transfer ID: {id}",
        "search": {
          "conditionPlaceholder": "Enter transfer No./material code/material name",
          "transferId": "Transfer ID",
          "transferIdPlaceholder": "Enter transfer ID",
          "transferCode": "Transfer No.",
          "transferCodePlaceholder": "Enter transfer No.",
          "platItemId": "Platform Line No.",
          "platItemIdPlaceholder": "Enter platform line No.",
          "matnrId": "Material ID",
          "matnrIdPlaceholder": "Enter material ID",
          "matnrCodePlaceholder": "Enter material code",
          "maktxPlaceholder": "Enter material name",
          "spec": "Specification",
          "specPlaceholder": "Enter specification",
          "model": "Model",
          "modelPlaceholder": "Enter model",
          "batchPlaceholder": "Enter batch",
          "unitPlaceholder": "Enter unit",
          "workQty": "Execution Qty",
          "workQtyPlaceholder": "Enter execution qty",
          "qty": "Completed Qty",
          "qtyPlaceholder": "Enter completed qty",
          "anfmePlaceholder": "Enter planned qty",
          "fieldsIndex": "Field Index",
          "fieldsIndexPlaceholder": "Enter field index",
          "platOrderCode": "Platform Order No.",
          "platOrderCodePlaceholder": "Enter platform order No.",
          "platWorkCode": "Platform Work No.",
          "platWorkCodePlaceholder": "Enter platform work No.",
          "projectCode": "Project Code",
          "projectCodePlaceholder": "Enter project code",
          "splrId": "Supplier ID",
          "splrIdPlaceholder": "Enter supplier ID",
          "memoPlaceholder": "Enter remark",
          "timeStart": "Start Time",
          "timeStartPlaceholder": "Select start time",
          "timeEnd": "End Time",
          "timeEndPlaceholder": "Select end time"
        },
        "table": {
          "transferId": "Transfer ID",
          "transferCode": "Transfer No.",
          "platItemId": "Platform Line No.",
          "fieldsIndex": "Field Index",
          "spec": "Specification",
          "model": "Model",
          "workQty": "Execution Qty",
          "qty": "Completed Qty",
          "platOrderCode": "Platform Order No.",
          "platWorkCode": "Platform Work No.",
          "projectCode": "Project Code",
          "supplierCode": "Supplier Code",
          "supplierName": "Supplier Name"
        },
        "detail": {
          "title": "Transfer Item Detail",
          "baseInfo": "Basic Information",
          "materialInfo": "Material Information",
          "platformInfo": "Platform Information",
          "auditInfo": "Audit Information",
          "transferId": "Transfer ID",
          "transferCode": "Transfer No.",
          "platItemId": "Platform Line No.",
          "fieldsIndex": "Field Index",
          "matnrId": "Material ID",
          "spec": "Specification",
          "model": "Model",
          "workQty": "Execution Qty",
          "qty": "Completed Qty",
          "platOrderCode": "Platform Order No.",
          "platWorkCode": "Platform Work No.",
          "projectCode": "Project Code",
          "splrId": "Supplier ID",
          "supplierCode": "Supplier Code",
          "supplierName": "Supplier Name"
        },
        "messages": {
          "detailTimeout": "Transfer item detail timed out and waiting has stopped",
          "detailFailed": "Failed to load transfer item detail"
        }
      },
      "wave": {
        "reportTitle": "Wave Report",
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter wave No./remark",
          "code": "Wave No.",
          "codePlaceholder": "Enter wave No.",
          "type": "Wave Type",
          "exceStatus": "Wave Status",
          "status": "Status",
          "memo": "Remark",
          "memoPlaceholder": "Enter remark",
          "timeStart": "Start Time",
          "timeEnd": "End Time"
        },
        "status": {
          "type": {
            "0": "Manual",
            "1": "Automatic"
          },
          "exceStatus": {
            "0": "Pending",
            "1": "Running",
            "2": "Paused",
            "3": "Completed"
          }
        },
        "actions": {
          "view": "View Detail",
          "publicTask": "Dispatch Task",
          "pause": "Pause",
          "continue": "Continue",
          "stop": "Stop",
          "print": "Print"
        },
        "table": {
          "code": "Wave No.",
          "type": "Wave Type",
          "exceStatus": "Wave Status",
          "anfme": "Expected Qty",
          "workQty": "Running Qty",
          "qty": "Completed Qty",
          "orderNum": "Document Count",
          "progress": "Progress",
          "createTime": "Created At",
          "updateTime": "Updated At",
          "status": "Status"
        },
        "preview": {
          "waveCode": "Wave No.",
          "orderCode": "Document Code",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "batch": "Batch",
          "unit": "Unit",
          "anfme": "Required Qty",
          "workQty": "Allocated Qty",
          "stockQty": "Stock Qty",
          "splrBatch": "Supplier Batch",
          "stockLocs": "Location"
        },
        "detail": {
          "title": "Wave Detail",
          "code": "Wave No.",
          "type": "Wave Type",
          "exceStatus": "Wave Status",
          "status": "Status",
          "anfme": "Expected Qty",
          "workQty": "Running Qty",
          "qty": "Completed Qty",
          "orderNum": "Document Count",
          "groupQty": "Category Count",
          "targSite": "Target Site",
          "stationId": "Assigned Station",
          "locCode": "Assigned Location",
          "createBy": "Created By",
          "createTime": "Created At",
          "updateBy": "Updated By",
          "updateTime": "Updated At",
          "memo": "Remark",
          "previewTitle": "Wave Preview Items - Material Code"
        },
        "publicTask": {
          "title": "Dispatch Wave Task",
          "code": "Wave No.",
          "type": "Wave Type",
          "exceStatus": "Wave Status",
          "workQty": "Running Qty"
        },
        "messages": {
          "pauseSuccess": "Wave paused",
          "continueSuccess": "Wave resumed",
          "stopConfirm": "Are you sure you want to stop wave {code}?",
          "stopTitle": "Stop Confirmation",
          "stopSuccess": "Wave stopped",
          "actionFailed": "Wave action failed",
          "detailTimeout": "Wave detail timed out and waiting has stopped",
          "previewTimeout": "Wave preview timed out and waiting has stopped",
          "publicTaskTimeout": "Wave dispatch preview timed out and waiting has stopped",
          "publicTaskSuccess": "Wave dispatched",
          "publicTaskFailed": "Wave dispatch failed",
          "publicTaskWarning": "Wave preview data is unavailable. Please check location configuration first."
        }
      },
      "waveItem": {
        "reportTitle": "Wave Item Report",
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter wave No./material code/material name",
          "waveCode": "Wave No.",
          "waveCodePlaceholder": "Enter wave No.",
          "orderCode": "Document Code",
          "orderCodePlaceholder": "Enter document code",
          "matnrCode": "Material Code",
          "matnrCodePlaceholder": "Enter material code",
          "maktx": "Material Name",
          "maktxPlaceholder": "Enter material name",
          "batch": "Batch",
          "batchPlaceholder": "Enter batch",
          "splrBatch": "Supplier Batch",
          "splrBatchPlaceholder": "Enter supplier batch",
          "fieldsIndex": "Dynamic Field Index",
          "fieldsIndexPlaceholder": "Enter dynamic field index",
          "timeStart": "Start Time",
          "timeEnd": "End Time"
        },
        "status": {
          "exceStatus": {
            "0": "Pending",
            "1": "Running",
            "2": "Paused",
            "3": "Dispatched",
            "4": "Task Completed"
          }
        },
        "actions": {
          "view": "View Detail"
        },
        "table": {
          "waveCode": "Wave No.",
          "orderCode": "Document Code",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "batch": "Batch",
          "splrBatch": "Supplier Batch",
          "unit": "Unit",
          "anfme": "Required Qty",
          "workQty": "Allocated Qty",
          "stockQty": "Stock Qty",
          "fieldsIndex": "Dynamic Field Index",
          "exceStatus": "Execution Status",
          "updateTime": "Updated At",
          "stockLocs": "Location"
        },
        "detail": {
          "title": "Wave Item Detail",
          "waveCode": "Wave No.",
          "orderCode": "Document Code",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "batch": "Batch",
          "splrBatch": "Supplier Batch",
          "unit": "Unit",
          "fieldsIndex": "Dynamic Field Index",
          "anfme": "Required Qty",
          "workQty": "Allocated Qty",
          "stockQty": "Stock Qty",
          "exceStatus": "Execution Status",
          "createTime": "Created At",
          "updateTime": "Updated At",
          "stockLocs": "Location"
        },
        "messages": {
          "detailTimeout": "Wave item detail timed out and waiting has stopped"
        }
      }
    },
    "task": {
      "title": "Task Management",
      "buttons": {
        "autoRun": "Enable Auto Dispatch",
        "pauseAutoRun": "Pause Auto Dispatch"
      },
      "placeholder": {
        "condition": "Enter task No./location/pallet code",
        "taskCode": "Enter task No.",
        "orgLoc": "Enter source location",
        "targLoc": "Enter target location",
        "barcode": "Enter pallet code"
      },
      "search": {
        "condition": "Keyword",
        "conditionPlaceholder": "Enter task No./location/pallet code",
        "taskCode": "Task No.",
        "taskCodePlaceholder": "Enter task No.",
        "orgLoc": "Source Location",
        "orgLocPlaceholder": "Enter source location",
        "targLoc": "Target Location",
        "targLocPlaceholder": "Enter target location",
        "barcode": "Pallet Code",
        "barcodePlaceholder": "Enter pallet code"
      },
      "actions": {
        "view": "View Detail",
        "flowStep": "Flow Steps",
        "complete": "Complete Task",
        "check": "Check Outbound",
        "pick": "Pick Outbound",
        "top": "Pin Task",
        "remove": "Cancel Task"
      },
      "detail": {
        "title": "Task Detail",
        "taskCode": "Task No.",
        "baseInfo": "Basic Information",
        "pathInfo": "Execution Path",
        "items": "Task Items",
        "itemsHint": "View related orders, materials, and execution records of the current task",
        "flowStep": "Flow Steps",
        "taskStatus": "Task Status",
        "taskType": "Task Type",
        "warehType": "Device Type",
        "priority": "Priority",
        "status": "Status",
        "robotCode": "Robot Code",
        "createTime": "Created At",
        "updateTime": "Updated At",
        "memo": "Remark",
        "orgLoc": "Source Location",
        "orgSite": "Source Station",
        "targLoc": "Target Location",
        "targSite": "Target Station",
        "barcode": "Pallet Code"
      },
      "expand": {
        "title": "Task Items",
        "empty": "No task items",
        "orderType": "Order Type",
        "wkType": "Business Type",
        "platWorkCode": "Work Order No.",
        "platItemId": "Line No.",
        "anfme": "Quantity"
      },
      "flowStepDialog": {
        "title": "Flow Steps",
        "currentTask": "Current Task",
        "flowInstanceNo": "Flow Instance No.",
        "stepCode": "Step Code",
        "stepName": "Step Name",
        "stepType": "Step Type",
        "executeResult": "Execution Result",
        "startTime": "Start Time",
        "endTime": "End Time",
        "timeout": "Flow steps timed out and waiting has stopped"
      },
      "messages": {
        "completeConfirm": "Are you sure you want to complete task {code}?",
        "completeSuccess": "Task completed successfully",
        "removeConfirm": "Are you sure you want to cancel task {code}?",
        "removeSuccess": "Task canceled successfully",
        "checkConfirm": "Are you sure you want to execute check outbound task {code}?",
        "checkSuccess": "Check outbound completed successfully",
        "pickConfirm": "Are you sure you want to execute pick outbound task {code}?",
        "pickSuccess": "Pick outbound completed successfully",
        "topSuccess": "Task pinned successfully",
        "actionFailed": "Task action failed",
        "autoRunEnabled": "Auto dispatch enabled",
        "autoRunPaused": "Auto dispatch paused",
        "autoRunFailed": "Failed to update auto dispatch settings",
        "detailLoadFailed": "Failed to load task items",
        "listTimeout": "Task list timed out and waiting has stopped",
        "autoRunTimeout": "Auto dispatch config timed out and waiting has stopped",
        "autoRunOnSuccess": "Auto dispatch enabled",
        "autoRunOffSuccess": "Auto dispatch paused",
        "autoRunUpdateFailed": "Failed to update auto dispatch settings",
        "itemsTimeout": "Task items timed out and waiting has stopped"
      }
    },
    "basicInfo": {
      "basStationArea": {
        "reportTitle": "Station Area Report",
        "entity": "Station Area",
        "buttons": {
          "add": "Add Station Area",
          "batchDelete": "Batch Delete"
        },
        "actions": {
          "add": "Add Station Area"
        },
        "placeholder": {
          "condition": "Enter station area name/code/remark",
          "timeStart": "Select start time",
          "timeEnd": "Select end time",
          "stationAreaName": "Enter station area name",
          "stationAreaId": "Enter station area code",
          "crossZoneArea": "Enter cross-zone area",
          "wcsData": "Enter WCS data",
          "containerType": "Enter container type",
          "barcode": "Enter barcode",
          "stationAlias": "Enter station alias",
          "memo": "Enter remark"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter station area name/code/remark",
          "timeStart": "Start Time",
          "timeStartPlaceholder": "Select start time",
          "timeEnd": "End Time",
          "timeEndPlaceholder": "Select end time",
          "stationAreaName": "Station Area Name",
          "stationAreaNamePlaceholder": "Enter station area name",
          "stationAreaId": "Station Area Code",
          "stationAreaIdPlaceholder": "Enter station area code",
          "type": "Station Type",
          "area": "Warehouse Area",
          "useStatus": "Usage Status",
          "inAble": "Inbound Allowed",
          "outAble": "Outbound Allowed",
          "isCrossZone": "Cross Zone",
          "crossZoneArea": "Cross-zone Area",
          "crossZoneAreaPlaceholder": "Enter cross-zone area",
          "isWcs": "WCS Enabled",
          "wcsData": "WCS Data",
          "wcsDataPlaceholder": "Enter WCS data",
          "containerType": "Container Type",
          "containerTypePlaceholder": "Enter container type",
          "autoTransfer": "Auto Transfer",
          "barcode": "Barcode",
          "barcodePlaceholder": "Enter barcode",
          "stationAlias": "Station Alias",
          "stationAliasPlaceholder": "Enter station alias",
          "status": "Status",
          "memo": "Remark",
          "memoPlaceholder": "Enter remark"
        },
        "type": {
          "smart": "Smart Station",
          "normal": "Normal Station"
        },
        "table": {
          "crossZoneArea": "Cross-zone Area",
          "inAble": "Inbound Allowed",
          "outAble": "Outbound Allowed",
          "isCrossZone": "Cross Zone"
        },
        "detail": {
          "title": "Station Area Detail",
          "baseInfo": "Basic Information",
          "auditInfo": "Audit Information",
          "stationAreaName": "Station Area Name",
          "stationAreaId": "Station Area Code",
          "type": "Station Type",
          "area": "Warehouse Area",
          "crossZoneArea": "Cross-zone Area",
          "containerType": "Container Type",
          "stationAlias": "Station Alias",
          "inAble": "Inbound Allowed",
          "outAble": "Outbound Allowed",
          "isCrossZone": "Cross Zone",
          "isWcs": "WCS Enabled",
          "autoTransfer": "Auto Transfer",
          "useStatus": "Usage Status",
          "barcode": "Barcode",
          "status": "Status",
          "wcsData": "WCS Data",
          "memo": "Remark",
          "createBy": "Created By",
          "createTime": "Created At",
          "updateBy": "Updated By",
          "updateTime": "Updated At"
        },
        "dialog": {
          "titleAdd": "Add Station Area",
          "titleEdit": "Edit Station Area",
          "stationAreaName": "Station Area Name",
          "stationAreaId": "Station Area Code",
          "type": "Station Type",
          "area": "Warehouse Area",
          "crossZoneArea": "Cross-zone Area",
          "containerType": "Container Type",
          "stationAlias": "Station Alias",
          "inAble": "Inbound Allowed",
          "outAble": "Outbound Allowed",
          "isCrossZone": "Cross Zone",
          "isWcs": "WCS Enabled",
          "autoTransfer": "Auto Transfer",
          "useStatus": "Usage Status",
          "wcsData": "WCS Data",
          "barcode": "Barcode",
          "status": "Status",
          "memo": "Remark",
          "validation": {
            "stationAreaName": "Please enter the station area name",
            "stationAreaId": "Please enter the station area code",
            "type": "Please select a station type",
            "area": "Please select a warehouse area",
            "containerType": "Please select container types",
            "stationAlias": "Please select station aliases"
          }
        },
        "messages": {
          "detailLoadFailed": "Failed to load station area detail",
          "detailTimeout": "Station area detail timed out and waiting has stopped",
          "stationAliasTimeout": "Station alias options timed out and waiting has stopped",
          "areaOptionsTimeout": "Area options timed out and waiting has stopped",
          "containerTypeTimeout": "Container type options timed out and waiting has stopped",
          "useStatusTimeout": "Usage status options timed out and waiting has stopped"
        }
      },
      "basContainer": {
        "table": {
          "containerType": "Container Type",
          "code": "Unique Code",
          "codeType": "Barcode Type",
          "areas": "Inbound Areas"
        }
      },
      "companys": {
        "title": "Companies",
        "entity": "Company",
        "reportTitle": "Company Report",
        "buttons": {
          "add": "Add Company"
        },
        "table": {
          "code": "Company Code",
          "name": "Company Name",
          "nameEn": "English Alias",
          "briefCode": "Mnemonic Code",
          "type": "Company Type",
          "contact": "Contact",
          "tel": "Phone",
          "email": "Email",
          "postCode": "Post Code",
          "province": "Province",
          "city": "City",
          "address": "Address"
        },
        "search": {
          "conditionPlaceholder": "Enter company name/code/contact/phone",
          "codePlaceholder": "Enter company code",
          "namePlaceholder": "Enter company name",
          "nameEnPlaceholder": "Enter English alias",
          "briefCodePlaceholder": "Enter mnemonic code",
          "contactPlaceholder": "Enter contact",
          "telPlaceholder": "Enter phone",
          "emailPlaceholder": "Enter email",
          "postCodePlaceholder": "Enter post code",
          "provincePlaceholder": "Enter province",
          "cityPlaceholder": "Enter city",
          "addressPlaceholder": "Enter address",
          "memoPlaceholder": "Enter remark"
        },
        "placeholders": {
          "code": "Leave blank to auto-generate",
          "name": "Enter company name",
          "nameEn": "Enter English alias",
          "briefCode": "Enter mnemonic code",
          "type": "Select company type",
          "contact": "Enter contact",
          "tel": "Enter phone",
          "email": "Enter email",
          "postCode": "Enter post code",
          "province": "Enter province",
          "city": "Enter city",
          "address": "Enter address",
          "status": "Select status",
          "memo": "Enter remark"
        },
        "validation": {
          "name": "Please enter the company name",
          "briefCode": "Please enter the mnemonic code",
          "type": "Please select the company type"
        },
        "dialog": {
          "titleCreate": "Create Company",
          "titleEdit": "Edit Company",
          "titleDetail": "Company Detail"
        },
        "detail": {
          "sections": {
            "basic": "Basic Information",
            "audit": "Audit Information"
          }
        },
        "messages": {
          "detailTimeout": "Company detail loading timed out and waiting has stopped",
          "detailFailed": "Failed to load company detail",
          "typeOptionsTimeout": "Company type loading timed out and waiting has stopped"
        }
      },
      "contract": {
        "table": {
          "code": "Contract Code",
          "name": "Contract Name",
          "projectName": "Project Name"
        }
      },
      "whMat": {
        "title": "Materials",
        "labels": {
          "allMaterials": "All Materials"
        },
        "search": {
          "groupKeywordPlaceholder": "Search material groups",
          "keyword": "Keyword",
          "keywordPlaceholder": "Enter material code/name",
          "condition": "Keyword",
          "conditionPlaceholder": "Enter material code/name",
          "code": "Material Code",
          "codePlaceholder": "Enter material code",
          "name": "Material Name",
          "namePlaceholder": "Enter material name",
          "spec": "Specification",
          "specPlaceholder": "Enter specification",
          "barcode": "Barcode",
          "barcodePlaceholder": "Enter barcode"
        },
        "messages": {
          "emptyGroups": "No material groups",
          "groupTimeout": "Material groups loading timed out and waiting has stopped",
          "groupLoadFailed": "Failed to load material groups",
          "listTimeout": "Material list loading timed out and waiting has stopped",
          "listLoadFailed": "Failed to load material list",
          "detailTimeout": "Material detail timed out and waiting has stopped",
          "detailLoadFailed": "Failed to load material detail"
        },
        "table": {
          "code": "Material Code",
          "name": "Material Name",
          "groupName": "Material Group",
          "group": "Material Group",
          "barcode": "Barcode",
          "spec": "Specification",
          "model": "Model"
        },
        "detail": {
          "title": "Material Detail",
          "sections": {
            "basic": "Basic Information",
            "stock": "Stock Information",
            "audit": "Audit Information",
            "extend": "Extended Information"
          },
          "code": "Material Code",
          "name": "Material Name",
          "groupName": "Material Group",
          "shipperName": "Shipper",
          "shipper": "Shipper",
          "barcode": "Barcode",
          "spec": "Specification",
          "model": "Model",
          "color": "Color",
          "size": "Size",
          "description": "Description",
          "unit": "Unit",
          "purUnit": "Purchase Unit",
          "purchaseUnit": "Purchase Unit",
          "stockUnit": "Stock Unit",
          "stockLevel": "Stock Level",
          "flagLabelManage": "Label Management",
          "flagCheck": "Review Management",
          "safeQty": "Safety Stock",
          "minQty": "Minimum Stock",
          "maxQty": "Maximum Stock",
          "stagn": "Stagnation Days",
          "valid": "Valid",
          "validWarn": "Validity Warning",
          "baseUnit": "Base Unit",
          "useOrgName": "Using Organization",
          "erpClsId": "ERP Class"
        }
      },
      "warehouse": {
        "table": {
          "name": "Warehouse Name",
          "code": "Warehouse Code",
          "factory": "Factory",
          "address": "Warehouse Address"
        }
      },
      "warehouseAreas": {
        "title": "Warehouse Areas",
        "entity": "Warehouse Area",
        "reportTitle": "Warehouse Area Report",
        "search": {
          "conditionPlaceholder": "Enter warehouse area name/code/remark",
          "codePlaceholder": "Enter warehouse area code",
          "namePlaceholder": "Enter warehouse area name"
        },
        "placeholders": {
          "warehouse": "Select warehouse",
          "code": "Enter warehouse area code",
          "name": "Enter warehouse area name",
          "type": "Select business type",
          "shipper": "Select shipper",
          "supplier": "Select supplier",
          "flagMinus": "Select negative stock option",
          "flagLabelManage": "Select label management option",
          "flagMix": "Select mixed storage option",
          "status": "Select status",
          "memo": "Enter remark"
        },
        "validation": {
          "warehouse": "Please select warehouse",
          "code": "Please enter warehouse area code",
          "name": "Please enter warehouse area name",
          "type": "Please select business type",
          "flagMinus": "Please select negative stock option",
          "flagMix": "Please select mixed storage option"
        },
        "dialog": {
          "titleCreate": "Add Warehouse Area",
          "titleEdit": "Edit Warehouse Area"
        },
        "detail": {
          "title": "Warehouse Area Detail",
          "sections": {
            "basic": "Basic Information",
            "audit": "Audit Information"
          }
        },
        "messages": {
          "detailTimeout": "Warehouse area detail loading timed out and has stopped waiting.",
          "detailFailed": "Failed to get warehouse area detail",
          "companyOptionsTimeout": "Company options loading timed out and has stopped waiting.",
          "warehouseOptionsTimeout": "Warehouse options loading timed out and has stopped waiting.",
          "typeOptionsTimeout": "Business type loading timed out and has stopped waiting."
        },
        "table": {
          "warehouseName": "Warehouse",
          "code": "Area Code",
          "name": "Area Name",
          "type": "Business Type",
          "shipperName": "Shipper",
          "supplierName": "Supplier",
          "flagMix": "Mixed Storage",
          "flagMinus": "Negative Stock",
          "flagLabelManage": "Label Management",
          "sort": "Sort"
        }
      },
      "deviceSite": {
        "table": {
          "type": "Station Type",
          "site": "Work Site",
          "name": "Name",
          "target": "Target Site",
          "label": "Station Label",
          "deviceType": "Device Type",
          "deviceCode": "Device Code",
          "deviceSite": "Device Site",
          "channel": "Channel",
          "areaStart": "Source Area",
          "areaEnd": "Target Area"
        }
      },
      "basStation": {
        "table": {
          "stationCode": "Station Code",
          "stationName": "Station Name",
          "type": "Station Type",
          "useStatus": "Usage Status",
          "area": "Warehouse Area",
          "crossZoneArea": "Cross-zone Area",
          "containerTypes": "Inbound Container Types",
          "barcode": "Barcode",
          "inAble": "Inbound Allowed",
          "outAble": "Outbound Allowed",
          "isCrossZone": "Cross Zone",
          "isWcs": "WCS Enabled",
          "autoTransfer": "Auto Transfer"
        }
      },
      "loc": {
        "table": {
          "code": "Location Code",
          "warehouseName": "Warehouse",
          "areaName": "Area",
          "typeIds": "Location Type",
          "row": "Row",
          "col": "Column",
          "lev": "Level",
          "channel": "Channel",
          "useStatus": "Usage Status",
          "flagLogic": "Virtual Location",
          "flagLabelManage": "Label Management",
          "barcode": "Container Code"
        }
      },
      "taskPathTemplate": {
        "actions": {
          "flow": "Flow Diagram"
        },
        "table": {
          "templateCode": "Template Code",
          "templateName": "Template Name",
          "sourceType": "Source Type",
          "targetType": "Target Type",
          "conditionDesc": "Condition Description",
          "version": "Version",
          "isCurrent": "Current Version",
          "effectiveTime": "Effective Time",
          "expireTime": "Expire Time",
          "priority": "Priority",
          "timeoutMinutes": "Timeout (min)",
          "stepSize": "Step Length",
          "maxRetryTimes": "Max Retries",
          "retryIntervalSeconds": "Retry Interval (sec)"
        }
      },
      "taskPathTemplateNode": {
        "table": {
          "templateId": "Template ID",
          "templateCode": "Template Code",
          "nodeOrder": "Node Order",
          "nodeCode": "Node Code",
          "nodeName": "Node Name",
          "nodeType": "Node Type",
          "systemCode": "System Code",
          "systemName": "System Name",
          "mandatory": "Mandatory Node",
          "parallelExecutable": "Parallel",
          "timeoutMinutes": "Timeout (min)"
        }
      },
      "taskPathTemplateMerge": {
        "table": {
          "templateCode": "Template Code",
          "templateName": "Template Name",
          "sourceType": "Source Type",
          "targetType": "Target Type",
          "conditionExpression": "Condition Expression",
          "conditionDesc": "Condition Description",
          "version": "Version",
          "isCurrent": "Current Version",
          "effectiveTime": "Effective Time",
          "expireTime": "Expire Time",
          "priority": "Priority",
          "timeoutMinutes": "Timeout (min)",
          "maxRetryTimes": "Max Retries",
          "retryIntervalSeconds": "Retry Interval (sec)",
          "stepSize": "Step Length"
        }
      },
      "locArea": {
        "table": {
          "area": "Area"
        }
      },
      "locAreaMat": {
        "table": {
          "code": "Logical Code",
          "warehouseName": "Warehouse",
          "areaName": "Area",
          "depict": "Description"
        }
      },
      "locAreaRela": {
        "table": {
          "locAreaId": "Zone ID",
          "locId": "Location ID"
        }
      },
      "locAreaMatRela": {
        "table": {
          "areaMatId": "Parent Record",
          "areaId": "Area",
          "code": "Code",
          "matnrId": "Material",
          "groupId": "Material Group",
          "locTypeId": "Location Type",
          "locId": "Location",
          "relationType": "Relation Type"
        }
      },
      "locType": {
        "table": {
          "uuid": "Identifier",
          "regex": "Barcode Rule"
        }
      },
      "matnrGroup": {
        "table": {
          "code": "Group Code",
          "parentCode": "Parent Code",
          "name": "Group Name"
        }
      },
      "deviceBind": {
        "table": {
          "currentRow": "Current Row",
          "startRow": "Start Row",
          "endRow": "End Row",
          "deviceQty": "Device Qty",
          "startDeviceNo": "Start Device No.",
          "endDeviceNo": "End Device No.",
          "staList": "Station List",
          "typeId": "Area Type",
          "beSimilar": "Material Similar",
          "emptySimilar": "Empty Board Nearby"
        }
      },
      "manager": {
        "menuPda": {
          "actions": {
            "add": "Add PDA Menu"
          },
          "search": {
            "name": "Menu Name",
            "namePlaceholder": "Enter menu name",
            "route": "Route",
            "routePlaceholder": "Enter route"
          },
          "table": {
            "name": "Menu Name",
            "iconPreview": "Icon Preview",
            "menuType": "Menu Type"
          },
          "tree": {
            "topLevel": "Top Level Menu"
          },
          "type": {
            "menu": "Menu",
            "button": "Button",
            "directory": "Directory"
          },
          "dialog": {
            "titleAddMenu": "Add Menu",
            "titleEditMenu": "Edit Menu",
            "titleAddButton": "Add Button",
            "titleEditButton": "Edit Button",
            "menuType": "Menu Type",
            "parentMenu": "Parent Menu",
            "menuName": "Menu Name",
            "permissionName": "Permission Name",
            "route": "Route",
            "component": "Component Key",
            "authority": "Authority",
            "icon": "Icon",
            "sort": "Sort",
            "status": "Status",
            "placeholder": {
              "parentMenu": "Select parent menu",
              "menuName": "Enter menu name",
              "permissionName": "Enter permission name",
              "route": "Enter route",
              "component": "Enter component key",
              "authority": "Enter authority",
              "icon": "Enter icon name",
              "status": "Select status",
              "memo": "Enter remark"
            },
            "validation": {
              "menuName": "Please enter menu name",
              "permissionName": "Please enter permission name",
              "route": "Please enter route",
              "authority": "Please enter authority"
            }
          },
          "messages": {
            "listTimeout": "PDA menu timed out and waiting has stopped",
            "loadFailed": "Failed to load PDA menu",
            "parentSelf": "Parent menu cannot be the current menu",
            "deleteConfirm": "Are you sure you want to delete PDA menu \"{title}\"? This action cannot be undone."
          }
        }
      }
    },
    "manager": {
      "menuPda": {
        "actions": {
          "add": "Add PDA Menu"
        },
        "search": {
          "name": "Menu Name",
          "namePlaceholder": "Enter menu name",
          "route": "Route",
          "routePlaceholder": "Enter route"
        },
        "table": {
          "name": "Menu Name",
          "iconPreview": "Icon Preview",
          "menuType": "Menu Type"
        },
        "tree": {
          "topLevel": "Top Level Menu"
        },
        "type": {
          "menu": "Menu",
          "button": "Button",
          "directory": "Directory"
        },
        "dialog": {
          "titleAddMenu": "Add Menu",
          "titleEditMenu": "Edit Menu",
          "titleAddButton": "Add Button",
          "titleEditButton": "Edit Button",
          "menuType": "Menu Type",
          "parentMenu": "Parent Menu",
          "menuName": "Menu Name",
          "permissionName": "Permission Name",
          "route": "Route",
          "component": "Component Key",
          "authority": "Authority",
          "icon": "Icon",
          "sort": "Sort",
          "status": "Status",
          "placeholder": {
            "parentMenu": "Select parent menu",
            "menuName": "Enter menu name",
            "permissionName": "Enter permission name",
            "route": "Enter route",
            "component": "Enter component key",
            "authority": "Enter authority",
            "icon": "Enter icon name",
            "status": "Select status",
            "memo": "Enter remark"
          },
          "validation": {
            "menuName": "Please enter menu name",
            "permissionName": "Please enter permission name",
            "route": "Please enter route",
            "authority": "Please enter authority"
          }
        },
        "messages": {
          "listTimeout": "PDA menu timed out and waiting has stopped",
          "loadFailed": "Failed to load PDA menu",
          "parentSelf": "Parent menu cannot be the current menu",
          "deleteConfirm": "Are you sure you want to delete PDA menu \"{title}\"? This action cannot be undone."
        }
      },
      "waveRule": {
        "entity": "Wave Rule",
        "reportTitle": "Wave Rule Report",
        "actions": {
          "add": "Add Wave Rule"
        },
        "table": {
          "type": "Type"
        },
        "search": {
          "conditionPlaceholder": "Enter code or name",
          "codePlaceholder": "Enter code",
          "namePlaceholder": "Enter rule name"
        },
        "dialog": {
          "titleCreate": "Add Wave Rule",
          "titleEdit": "Edit Wave Rule",
          "validation": {
            "type": "Please select a rule type",
            "name": "Please enter a rule name"
          },
          "placeholder": {
            "code": "Generated after creation",
            "type": "Select rule type",
            "name": "Enter rule name",
            "status": "Select status",
            "memo": "Enter remark"
          }
        },
        "detail": {
          "title": "Wave Rule Detail"
        },
        "messages": {
          "typeTimeout": "Wave rule types timed out and waiting has stopped",
          "detailFailed": "Failed to get wave rule detail"
        }
      },
      "taskLog": {
        "reportTitle": "Task Log Report",
        "table": {
          "taskCode": "Task Code",
          "taskStatus": "Task Status",
          "taskType": "Task Type",
          "orgLoc": "Source Location",
          "orgSite": "Source Station",
          "targLoc": "Target Location",
          "targSite": "Target Station",
          "barcode": "Pallet Code",
          "robotCode": "Robot Code",
          "startTime": "Start Time",
          "endTime": "End Time"
        },
        "search": {
          "conditionPlaceholder": "Enter task code, pallet code, or robot code",
          "taskCodePlaceholder": "Enter task code",
          "orgLocPlaceholder": "Enter source location",
          "targLocPlaceholder": "Enter target location",
          "barcodePlaceholder": "Enter pallet code",
          "robotCodePlaceholder": "Enter robot code",
          "timeStart": "Start Date",
          "timeEnd": "End Date"
        },
        "detail": {
          "title": "Task Log Detail",
          "taskId": "Task ID",
          "exceStatus": "Execution Status",
          "sort": "Priority",
          "expDesc": "Exception Description",
          "expCode": "Exception Code"
        }
      },
      "inStatisticItem": {
        "title": "Inbound Statistic Item",
        "table": {
          "dayTime": "Statistic Date",
          "locCode": "Location",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "anfme": "Quantity",
          "batch": "Batch",
          "barcode": "Pallet Code"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter material name/code/batch",
          "dayTime": "Statistic Date",
          "maktx": "Material Name",
          "maktxPlaceholder": "Enter material name",
          "matnrCode": "Material Code",
          "matnrCodePlaceholder": "Enter material code",
          "batch": "Batch",
          "batchPlaceholder": "Enter batch"
        },
        "detail": {
          "title": "{title} Detail",
          "taskType": "Task Type",
          "taskStatus": "Task Status",
          "fieldsIndex": "Field Index"
        }
      },
      "freeze": {
        "table": {
          "locCode": "Location Code",
          "wareArea": "Area",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "batch": "Batch",
          "trackCode": "Track Code",
          "anfme": "Available Qty",
          "qty": "Stock Qty",
          "workQty": "Working Qty"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter location code/material code",
          "locCode": "Location Code",
          "locCodePlaceholder": "Enter location code",
          "matnrCode": "Material Code",
          "matnrCodePlaceholder": "Enter material code",
          "maktx": "Material Name",
          "maktxPlaceholder": "Enter material name",
          "batch": "Batch",
          "batchPlaceholder": "Enter batch",
          "trackCode": "Track Code",
          "trackCodePlaceholder": "Enter track code",
          "dynamicPlaceholder": "Enter {label}"
        },
        "detail": {
          "title": "Freeze Stock Detail"
        },
        "messages": {
          "fieldsTimeout": "Extended fields timed out and waiting has stopped",
          "pageTimeout": "Frozen stock timed out and waiting has stopped",
          "detailTimeout": "Frozen stock detail timed out and waiting has stopped"
        }
      },
      "locItem": {
        "table": {
          "locId": "Location ID",
          "wareArea": "Area",
          "locCode": "Location Code",
          "type": "Business Type",
          "wkType": "Workstation Type",
          "orderId": "Order ID",
          "orderItemId": "Order Item ID",
          "matnrId": "Material ID",
          "matnrCode": "Material Code",
          "maktx": "Material Name",
          "spec": "Spec",
          "model": "Model",
          "batch": "Batch",
          "trackCode": "Track Code",
          "anfme": "Available Qty",
          "qty": "Stock Qty",
          "workQty": "Working Qty"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter location code/material code/track code",
          "timeStart": "Start Date",
          "timeEnd": "End Date",
          "locId": "Location ID",
          "locIdPlaceholder": "Enter location ID",
          "orderId": "Order ID",
          "orderIdPlaceholder": "Enter order ID",
          "type": "Business Type",
          "typePlaceholder": "Enter business type",
          "wkType": "Workstation Type",
          "wkTypePlaceholder": "Enter workstation type",
          "matnrCode": "Material Code",
          "matnrCodePlaceholder": "Enter material code",
          "maktx": "Material Name",
          "maktxPlaceholder": "Enter material name",
          "trackCode": "Track Code",
          "trackCodePlaceholder": "Enter track code",
          "batch": "Batch",
          "batchPlaceholder": "Enter batch",
          "splrBatch": "Supplier Batch",
          "splrBatchPlaceholder": "Enter supplier batch"
        },
        "detail": {
          "title": "Stock Item Detail",
          "extendFields": "Extended Fields",
          "emptyExtendFields": "No extended fields"
        },
        "messages": {
          "pageTimeout": "Stock item loading timed out and waiting has stopped",
          "detailFailed": "Failed to get stock item detail",
          "fieldsTimeout": "Extended fields timed out and waiting has stopped"
        }
      },
      "locPreview": {
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter location code or barcode",
          "code": "Location Code",
          "codePlaceholder": "Enter location code",
          "barcode": "Barcode",
          "barcodePlaceholder": "Enter barcode"
        },
        "table": {
          "locCode": "Location Code",
          "warehouseLabel": "Warehouse",
          "areaLabel": "Area",
          "typeLabel": "Location Type",
          "barcode": "Barcode",
          "useStatusLabel": "Usage Status",
          "row": "Row",
          "col": "Column",
          "lev": "Level",
          "channel": "Channel"
        },
        "detail": {
          "title": "Location Detail",
          "stockItems": "Stock Items"
        },
        "messages": {
          "fieldsTimeout": "Loading extended fields timed out and waiting has stopped",
          "pageTimeout": "Loading location details timed out and waiting has stopped",
          "detailTimeout": "Loading location detail timed out and waiting has stopped",
          "itemPageTimeout": "Loading location stock details timed out and waiting has stopped"
        }
      }
    },
    "system": {
      "config": {
        "title": "Config",
        "entity": "config",
        "buttons": {
          "add": "Add Config"
        },
        "table": {
          "flag": "Flag",
          "type": "Type",
          "value": "Value",
          "content": "Content"
        },
        "search": {
          "conditionPlaceholder": "Enter config name",
          "flagPlaceholder": "Enter config flag"
        },
        "types": {
          "boolean": "Boolean",
          "number": "Number",
          "string": "String",
          "json": "JSON",
          "date": "Date"
        },
        "placeholders": {
          "uuid": "Generated after creation",
          "name": "Enter config name",
          "flag": "Enter config flag",
          "type": "Select type",
          "value": "Enter config value",
          "content": "Enter config content",
          "status": "Select status",
          "memo": "Enter remark"
        },
        "validation": {
          "name": "Please enter config name",
          "flag": "Please enter config flag"
        },
        "dialog": {
          "titleCreate": "Create Config",
          "titleEdit": "Edit Config",
          "titleDetail": "Config Detail"
        },
        "messages": {
          "detailFailed": "Failed to fetch config detail"
        }
      },
      "dictType": {
        "title": "Dictionary Type",
        "entity": "Dictionary Type",
        "buttons": {
          "add": "Add Dictionary Type"
        },
        "search": {
          "conditionPlaceholder": "Enter code or name",
          "codePlaceholder": "Enter dictionary code",
          "namePlaceholder": "Enter dictionary name"
        },
        "table": {
          "description": "Description"
        },
        "placeholders": {
          "code": "Enter dictionary code",
          "name": "Enter dictionary name",
          "status": "Select status",
          "description": "Enter dictionary description",
          "memo": "Enter remark"
        },
        "validation": {
          "code": "Please enter dictionary code",
          "name": "Please enter dictionary name"
        },
        "dialog": {
          "titleCreate": "Add Dictionary Type",
          "titleEdit": "Edit Dictionary Type",
          "titleDetail": "Dictionary Type Detail"
        },
        "messages": {
          "detailFailed": "Failed to fetch dictionary type detail"
        }
      },
      "dept": {
        "title": "Department",
        "entity": "department",
        "buttons": {
          "add": "Add Department"
        },
        "table": {
          "parent": "Parent Department",
          "name": "Department Name",
          "fullName": "Department Full Name",
          "leader": "Leader"
        },
        "search": {
          "conditionPlaceholder": "Enter department name"
        },
        "placeholders": {
          "parentId": "Select parent department",
          "name": "Enter department name",
          "fullName": "Enter full department name",
          "leader": "Enter leader",
          "status": "Select status",
          "memo": "Enter remark"
        },
        "validation": {
          "name": "Please enter department name"
        },
        "dialog": {
          "titleCreate": "Create Department",
          "titleEdit": "Edit Department"
        },
        "messages": {
          "pageTimeout": "Department loading timed out and waiting has stopped",
          "detailFailed": "Failed to fetch department detail",
          "parentSelfInvalid": "Parent department cannot be the current department"
        }
      },
      "userLogin": {
        "title": "Login Logs",
        "search": {
          "token": "Token",
          "tokenPlaceholder": "Enter token",
          "ip": "IP",
          "ipPlaceholder": "Enter IP",
          "system": "System",
          "systemPlaceholder": "Enter system identifier",
          "type": "Type",
          "typePlaceholder": "Select type"
        },
        "table": {
          "user": "User",
          "token": "Token",
          "ip": "IP",
          "system": "System"
        },
        "types": {
          "loginSuccess": "Login Success",
          "loginFailed": "Login Failed",
          "logout": "Logout",
          "tokenRenew": "Token Renew"
        }
      },
      "operationRecord": {
        "title": "Operation Log",
        "entity": "Operation Log",
        "reportTitle": "Operation Log Report",
        "search": {
          "conditionPlaceholder": "Enter namespace",
          "urlPlaceholder": "Enter API URL",
          "clientIpPlaceholder": "Enter client IP",
          "timeStart": "Start Date",
          "timeEnd": "End Date"
        },
        "table": {
          "namespace": "Namespace",
          "url": "API URL",
          "user": "User",
          "clientIp": "Client IP",
          "spendTime": "Latency (ms)",
          "result": "Result",
          "timestamp": "Operation Time"
        },
        "result": {
          "success": "Success",
          "failed": "Failed"
        },
        "detail": {
          "appkey": "App Key",
          "error": "Error",
          "request": "Request Content",
          "response": "Response Content"
        },
        "dialog": {
          "titleDetail": "Operation Log Detail"
        },
        "messages": {
          "detailFailed": "Failed to load operation log detail"
        }
      },
      "aiParam": {
        "title": "AI Params",
        "subtitle": "Manage the current user's model access settings and defaults with cards.",
        "entity": "AI Params",
        "reportTitle": "AI Params Report",
        "empty": "No AI parameters yet",
        "buttons": {
          "add": "Add Param"
        },
        "actions": {
          "setDefault": "Set Default"
        },
        "fields": {
          "baseUrl": "Base URL",
          "lastValidateTime": "Last Validation",
          "timeoutMs": "Timeout",
          "streamingEnabled": "Streaming",
          "maxTokens": "Max Tokens"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter parameter name",
          "providerType": "Provider",
          "providerTypePlaceholder": "Enter provider type",
          "model": "Model",
          "modelPlaceholder": "Enter model name",
          "status": "Default Status"
        },
        "status": {
          "default": "Default",
          "candidate": "Candidate"
        },
        "validation": {
          "valid": "Validated",
          "invalid": "Invalid",
          "notTested": "Not Tested"
        },
        "streaming": {
          "enabled": "Streaming",
          "disabled": "Non-streaming"
        },
        "table": {
          "name": "Name",
          "providerType": "Provider Type",
          "model": "Model",
          "status": "Default Status",
          "validateStatus": "Validation Status",
          "timeoutMs": "Timeout"
        },
        "summary": {
          "title": "Runtime Summary",
          "subtitle": "Overview of the active model, prompt, and MCP mounts",
          "refresh": "Refresh Summary",
          "activeModel": "Active Model",
          "activePrompt": "Active Prompt",
          "lastPromptUpdate": "Last updated {value}",
          "enabledMcp": "Enabled MCP",
          "enabledMcpCount": "{count} enabled",
          "noMcp": "No mounts"
        },
        "dialog": {
          "titleCreate": "Create AI Param",
          "titleEdit": "Edit AI Param",
          "titleDetail": "AI Param Detail",
          "runtimeTitle": "Runtime Status",
          "runtimeDescription": "Run a draft validation before saving. Runtime status is returned from the backend.",
          "validateDraft": "Validate Draft",
          "labels": {
            "validateStatus": "Validation Status",
            "lastValidateElapsedMs": "Validation Duration",
            "lastValidateTime": "Last Validation Time",
            "updateBy": "Updated By",
            "updateTime": "Updated At",
            "lastValidateMessage": "Validation Message",
            "name": "Name",
            "providerType": "Provider Type",
            "baseUrl": "Base URL",
            "apiKey": "API Key",
            "model": "Model",
            "temperature": "Temperature",
            "topP": "Top P",
            "maxTokens": "Max Tokens",
            "timeoutMs": "Timeout (ms)",
            "streamingEnabled": "Streaming",
            "status": "Default Status",
            "memo": "Remark"
          },
          "placeholders": {
            "name": "Enter parameter name",
            "providerType": "Select provider type",
            "baseUrl": "Enter OpenAI-compatible base URL",
            "apiKey": "Enter API key",
            "model": "Enter model name",
            "temperature": "Enter temperature",
            "topP": "Enter topP",
            "maxTokens": "Enter max tokens",
            "timeoutMs": "Enter timeout",
            "status": "Select default status",
            "memo": "Enter remark"
          },
          "validation": {
            "name": "Please enter a parameter name",
            "providerType": "Please select a provider type",
            "baseUrl": "Please enter a base URL",
            "apiKey": "Please enter an API key",
            "model": "Please enter a model name"
          }
        },
        "messages": {
          "setDefaultSuccess": "Default parameter updated",
          "summaryTimeout": "Runtime summary timed out and waiting has stopped",
          "summaryUnavailable": "Runtime summary is currently unavailable"
        }
      },
      "aiPrompt": {
        "title": "Prompts",
        "subtitle": "Manage system prompts and scene-based user prompt templates with cards.",
        "entity": "Prompt",
        "reportTitle": "Prompt Report",
        "empty": "No prompts yet",
        "buttons": {
          "add": "Add Prompt"
        },
        "fields": {
          "sceneTag": "Scene {value}",
          "systemPrompt": "System Prompt",
          "userPromptTemplate": "User Prompt Template"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter prompt name",
          "code": "Prompt Code",
          "codePlaceholder": "Enter prompt code",
          "scene": "Scene",
          "scenePlaceholder": "Enter scene",
          "status": "Status"
        },
        "table": {
          "name": "Prompt Name",
          "code": "Prompt Code",
          "scene": "Scene",
          "status": "Status",
          "systemPrompt": "System Prompt",
          "userPromptTemplate": "User Prompt Template"
        },
        "dialog": {
          "titleCreate": "Create Prompt",
          "titleEdit": "Edit Prompt",
          "titleDetail": "Prompt Detail",
          "defaultPreviewInput": "Please summarize the current input",
          "previewTitle": "Render Preview",
          "previewDescription": "Enter sample input and metadata to preview the rendered output.",
          "previewAction": "Render Preview",
          "previewResolvedVariables": "Resolved variables: {value}",
          "previewNoVariables": "None",
          "runtimeTitle": "Runtime Status",
          "labels": {
            "updateBy": "Updated By",
            "updateTime": "Updated At",
            "name": "Prompt Name",
            "code": "Prompt Code",
            "scene": "Scene",
            "systemPrompt": "System Prompt",
            "userPromptTemplate": "User Prompt Template",
            "status": "Status",
            "memo": "Remark"
          },
          "placeholders": {
            "previewInput": "Enter sample input",
            "metadata": "Enter JSON metadata, e.g. {\"path\":\"/system/aiPrompt\"}",
            "renderedSystemPrompt": "Rendered system prompt",
            "renderedUserPrompt": "Rendered user prompt",
            "name": "Enter prompt name",
            "code": "Enter prompt code",
            "scene": "Enter scene",
            "systemPrompt": "Enter system prompt",
            "userPromptTemplate": "Enter user prompt template",
            "status": "Select status",
            "memo": "Enter remark"
          },
          "validation": {
            "name": "Please enter a prompt name",
            "code": "Please enter a prompt code",
            "scene": "Please enter a scene",
            "systemPrompt": "Please enter a system prompt",
            "userPromptTemplate": "Please enter a user prompt template"
          }
        },
        "messages": {
          "previewFailed": "Failed to render preview"
        }
      },
      "aiMcpMount": {
        "title": "MCP Mounts",
        "subtitle": "Maintain MCP mounts and health status for the current environment.",
        "entity": "MCP Mount",
        "empty": "No MCP mounts yet",
        "buttons": {
          "add": "Add Mount"
        },
        "fields": {
          "target": "Target",
          "lastTestTime": "Last Test Time",
          "timeoutMs": "Timeout",
          "lastInitElapsedMs": "Last Init Duration"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter mount name",
          "transportType": "Transport Type",
          "status": "Status"
        },
        "actions": {
          "connectivityTest": "Connectivity Test",
          "toolsPreview": "Tools Preview"
        },
        "health": {
          "healthy": "Healthy",
          "unhealthy": "Unhealthy",
          "notTested": "Not Tested"
        },
        "groups": {
          "builtin": {
            "title": "Built-in Mount",
            "description": "Platform built-in MCP capabilities."
          },
          "sse": {
            "title": "SSE / HTTP Mount",
            "description": "Remote MCP service connected through HTTP/SSE."
          },
          "stdio": {
            "title": "STDIO Mount",
            "description": "MCP service started and communicated through local commands."
          }
        },
        "dialog": {
          "titleCreate": "Create MCP Mount",
          "titleEdit": "Edit MCP Mount",
          "titleDetail": "MCP Mount Detail",
          "runtimeTitle": "Runtime Status",
          "draftTestTitle": "Draft Connectivity Test",
          "draftTestDescription": "Test current draft settings before saving.",
          "draftTestAction": "Test Current Settings",
          "runtimeLabels": {
            "healthStatus": "Health Status",
            "lastTestTime": "Last Test Time",
            "lastTestMessage": "Last Test Message",
            "lastInitElapsedMs": "Last Init Duration",
            "updateTime": "Updated At"
          },
          "labels": {
            "name": "Mount Name",
            "transportType": "Transport Type",
            "status": "Status",
            "serverUrl": "Server URL",
            "endpoint": "SSE/HTTP Path",
            "command": "Command",
            "argsJson": "Command Args (JSON)",
            "envJson": "Environment JSON",
            "headersJson": "Headers JSON",
            "builtinCode": "Built-in Code",
            "requestTimeoutMs": "Request Timeout (ms)",
            "sort": "Sort",
            "memo": "Remark"
          },
          "placeholders": {
            "name": "Enter mount name",
            "transportType": "Select transport type",
            "status": "Select status",
            "serverUrl": "Enter server URL",
            "endpoint": "Enter endpoint path",
            "command": "Enter command",
            "argsJson": "Enter JSON array, e.g. [\"server.js\"]",
            "envJson": "Enter JSON object, e.g. {\"NODE_ENV\":\"production\"}",
            "headersJson": "Enter JSON object, e.g. {\"Authorization\":\"Bearer ...\"}",
            "builtinCode": "Enter built-in code",
            "requestTimeoutMs": "Enter request timeout",
            "sort": "Enter sort value",
            "memo": "Enter remark"
          },
          "validation": {
            "name": "Please enter a mount name",
            "transportType": "Please select a transport type"
          }
        },
        "toolsDrawer": {
          "title": "MCP Tools Preview",
          "currentMount": "Current Mount",
          "description": "Preview tools exposed by the current mount and test them online.",
          "refreshTools": "Refresh Tools",
          "connectivityTest": "Connectivity Test",
          "empty": "No tools available for the current mount",
          "toolTest": "Test Tool",
          "toolInputRequired": "Please enter tool input JSON",
          "toolTestSuccess": "Tool call succeeded",
          "toolTestFailed": "Tool call failed",
          "toolsLoadFailed": "Failed to load tools",
          "toolsTimeout": "Tool loading timed out and waiting has stopped",
          "toolTestTimeout": "Tool call timed out and waiting has stopped",
          "inputSchema": "Input Schema",
          "inputJson": "Input JSON",
          "inputJsonPlaceholder": "Enter JSON, e.g. {\"keyword\":\"task\"}",
          "output": "Output",
          "outputPlaceholder": "No output yet"
        },
        "messages": {
          "connectivitySuccess": "Connectivity test succeeded",
          "connectivityFailed": "Connectivity test failed",
          "connectivityTimeout": "Connectivity test timed out and waiting has stopped",
          "draftConnectivitySuccess": "Draft connectivity test succeeded",
          "draftConnectivityFailed": "Draft connectivity test failed",
          "toolsTimeout": "Tool list timed out and waiting has stopped",
          "toolTestTimeout": "Tool call timed out and waiting has stopped",
          "initElapsedMs": "Init duration {value} ms"
        }
      },
      "aiObserve": {
        "title": "AI Observe",
        "summaryTitle": "AI Observe Summary",
        "summaryDescription": "Observe AI call status, latency, token usage, and MCP tool execution.",
        "reportTitle": "AI Observe Report",
        "stats": {
          "callCount": "Calls",
          "avgElapsed": "Average Latency",
          "totalTokens": "Total Tokens",
          "toolSuccessRate": "Tool Success Rate",
          "successFailure": "Success {success} / Failure {failure}",
          "firstTokenLatency": "First token {value} ms",
          "avgTokens": "Average {value} Tokens",
          "toolCallFailure": "Calls {callCount} / Failure {failureCount}"
        },
        "search": {
          "condition": "Keyword",
          "conditionPlaceholder": "Enter request ID or prompt",
          "requestId": "Request ID",
          "requestIdPlaceholder": "Enter request ID",
          "promptCode": "Prompt Code",
          "promptCodePlaceholder": "Enter prompt code",
          "user": "User",
          "userPlaceholder": "Enter user ID",
          "status": "Status",
          "statusPlaceholder": "Select status"
        },
        "status": {
          "running": "Running",
          "completed": "Completed",
          "failed": "Failed",
          "aborted": "Aborted"
        },
        "detail": {
          "title": "AI Observe Detail",
          "requestId": "Request ID",
          "sessionId": "Session ID",
          "prompt": "Prompt",
          "model": "Model",
          "user": "User",
          "status": "Status",
          "mountedMcp": "Mounted MCP",
          "configuredMcpCount": "Configured MCP Count",
          "toolCallCount": "Tool Calls",
          "toolSuccessFailure": "Success / Failure",
          "elapsed": "Total Latency",
          "firstTokenLatency": "First Token Latency",
          "createTime": "Created At",
          "updateTime": "Updated At",
          "errorCategory": "Error Category",
          "errorStage": "Error Stage",
          "errorMessage": "Error Message",
          "mcpLogs": "MCP Call Logs",
          "inputSummary": "Input Summary",
          "outputSummary": "Output Summary",
          "emptyMcpLogs": "No MCP call logs"
        },
        "table": {
          "requestId": "Request ID",
          "prompt": "Prompt",
          "model": "Model",
          "user": "User",
          "status": "Status",
          "elapsed": "Latency",
          "totalTokens": "Total Tokens",
          "createTime": "Created At"
        },
        "messages": {
          "detailTimeout": "AI observe detail timed out and waiting has stopped",
          "mcpLogsTimeout": "MCP call logs timed out and waiting has stopped",
          "detailFailed": "Failed to load AI observe detail",
          "statsTimeout": "AI observe summary timed out and waiting has stopped",
          "statsFailed": "Failed to load AI observe summary"
        }
      },
      "role": {
        "entity": "Role",
        "reportTitle": "Role Report",
        "buttons": {
          "add": "Add Role"
        },
        "search": {
          "name": "Role Name",
          "namePlaceholder": "Enter role name",
          "code": "Role Code",
          "codePlaceholder": "Enter role code",
          "memo": "Remark",
          "memoPlaceholder": "Enter remark",
          "condition": "Keyword",
          "conditionPlaceholder": "Search by keyword",
          "status": "Status",
          "statusPlaceholder": "Select status"
        },
        "table": {
          "name": "Role Name",
          "code": "Role Code",
          "memo": "Remark",
          "status": "Status",
          "updateTime": "Updated At",
          "createTime": "Created At",
          "operation": "Operation"
        },
        "actions": {
          "scopeMenu": "Web Permissions",
          "scopePda": "PDA Permissions",
          "scopeMatnr": "Material Permissions",
          "scopeWarehouse": "Warehouse Permissions",
          "edit": "Edit Role",
          "delete": "Delete Role"
        },
        "scopes": {
          "menu": "Web Permissions",
          "pda": "PDA Permissions",
          "matnr": "Material Permissions",
          "warehouse": "Warehouse Permissions"
        },
        "dialog": {
          "addTitle": "Add Role",
          "editTitle": "Edit Role",
          "validationName": "Please enter the role name",
          "name": "Role Name",
          "namePlaceholder": "Enter role name",
          "code": "Role Code",
          "codePlaceholder": "Enter role code",
          "status": "Status",
          "statusPlaceholder": "Select status",
          "memo": "Remark",
          "memoPlaceholder": "Enter remark"
        },
        "permission": {
          "title": "Role Permissions",
          "currentRole": "Current Role: ",
          "unselected": "No role selected",
          "selectAll": "Select All",
          "clear": "Clear",
          "saveCurrent": "Save Current Permissions",
          "searchPlaceholder": "Search permission tree",
          "authButton": "Button",
          "scopeLoadTimeout": "{title} loading timed out and waiting has stopped",
          "scopeLoadFailed": "Failed to load {title}",
          "saveSuccess": "Permissions saved successfully",
          "saveFailed": "Failed to save permissions"
        }
      },
      "menu": {
        "title": "Menu Management",
        "entities": {
          "permission": "Permission"
        },
        "buttons": {
          "add": "Add Menu"
        },
        "actions": {
          "addAuth": "Add Permission",
          "expand": "Expand",
          "collapse": "Collapse"
        },
        "types": {
          "button": "Button",
          "directory": "Directory",
          "menu": "Menu"
        },
        "search": {
          "name": "Menu Name",
          "route": "Route"
        },
        "messages": {
          "menuSelfParent": "Parent menu cannot be the current menu",
          "loadFailed": "Failed to load menu",
          "loadTimeout": "Menu loading timed out and waiting has stopped",
          "submitFailed": "Submit failed",
          "authCount": "{count} permission keys",
          "deleteMenuConfirm": "Are you sure you want to delete menu \"{title}\"? This action cannot be undone",
          "deleteAuthConfirm": "Are you sure you want to delete permission \"{title}\"? This action cannot be undone"
        },
        "form": {
          "typeMenu": "Menu",
          "typeButton": "Button",
          "titleAddMenu": "Create Menu",
          "titleEditMenu": "Edit Menu",
          "titleAddButton": "Create Permission",
          "titleEditButton": "Edit Permission",
          "menuType": "Menu Type",
          "parentId": "Parent Menu",
          "nameMenu": "Menu Name",
          "nameButton": "Permission Name",
          "route": "Route",
          "component": "Component Key",
          "authority": "Authority",
          "icon": "Icon",
          "sort": "Sort",
          "status": "Status",
          "memo": "Remark",
          "placeholderParent": "Please select a parent menu",
          "placeholderMenuName": "Please enter a menu name",
          "placeholderButtonName": "Please enter a permission name",
          "placeholderRoute": "Please enter a route",
          "placeholderComponent": "Please enter a component key",
          "placeholderAuthority": "Please enter an authority",
          "placeholderIcon": "Please enter an icon name",
          "placeholderStatus": "Please select a status",
          "placeholderMemo": "Please enter a remark",
          "validationMenuName": "Please enter a menu name",
          "validationButtonName": "Please enter a permission name",
          "validationRoute": "Please enter a route",
          "validationAuthority": "Please enter an authority"
        }
      }
    }
  }
}