wxr
2023-08-04 20f70e3446df19bf5d0faaae9f7bd58fd0fc4bcc
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
[English]
1=Hello
2=All Devices
3=Lights
4=You need to switch residence to check its device list. Sure to switch?
5=Search Device
6=Wireless Network Parameters
7=Remote Access
8=Network Parameters
9=Gateway ID:
10=Wireless Devices Pairing
11=IP Address:
12=Subnet Mask:
13=Router IP:
14=Save
15=Project Name:
16=User Name:
17=Password:
18=Band:
19=Add New Room
20=Refresh
21=Add New Device
22=Dimmer:
23=ON/OFF Device:
24=Button:
25=Configured
26=Setting
27=Image
28=Room Name
29=Maximum:
30=Low Limit:
31=Test
32=Channel
33=Change Information
34=Panel
35=Device Name:
36=Delete
37=Confirm
38=Cancel
39=Are you sure to delete all information about this room?
40=Tip
41=TV
42=AC
43=Curtain
44=Music
45=Security
46=Camera
47=Projector
48=Are you sure to delete this device?
49=Gateway
50=Device
51=Room
52=Wireless IP Gateway
53=Cable IP Gateway
54=No response
55=Close
56=Please select device to configure
57=All Rooms 
58=Mode
59=Device Type:
60=Delay Time(s):
61=Please Enter Correct Data.
62=Assign Address for Device
63=Curtain Module
64=Running Time(s):
65=Failed.
66=Success.
67=Please Enter a Number Between 1 and 100.
68=Please Enter a Number Between 0 and 3600.
69=Please Select the Device to Delete.
70=Open
71=Stop
72=Curtain Device
73=Set Point --°C
74=AC Device 
75=Indoor
76=Mode
77=Name Exists, Fail to add.
78=Please Enter Room Name.
79=Add Scene
80=Scene Name
81=Select a mode
82=Scene
83=Please Enter Scene Name.
84=Unconfigured
85=FAN Speed
86=Search Online Gateway Device
87=Are You Sure to Delete All Information?
88=Please Enter Correct Data.
89=Alternative Server IP:
90=Server IP:
91=Group Name:
92=Are You Sure to Reassign Address for All Aevices? Warning: Current device address will be erased
93=Reassign ID for All Devices
94=Assign ID for New Devices
95=Panel Device
96=Find Device
97=Configure Network Parameters
98=Enable Remote Access, and Configure Related Parameters
99=Please configure related parameters for wireless network.
100=For new device installation, please select "Assign ID for All Devices". For adding new device after installation, please select "Assign ID for New Device". Warning: All Device ID Will Be Erased after selecting "Assign ID for All Devices".
101=Search for Devices Managed by This Gateway
102=Turn on/off wireless pairing
103=Turn on
104=Floor Heating
105=Remote control
106=Enable Remote
107=No New Device Found
108=AC Panel
109=Floor Heating Panel
110=Select the Target AC 
111=Setpoint
112=Dry Contact
113=Current Status
114=Select Type
115=Select Brand
116=Infrared Code
117=STB
118=Infrared Module
119=Infrared AC
120=Infrared Device
121=Overall Volume
122=Music Module
123=Playlist
124=No Reply From Remote Device
125=Remote Connection Succeeded
126=Remote Connection Failed,The remote password is incorrect.
127=User Name Does Not Exist
128=Connect To Remote Access Server Failed
129=Data Forwarding Failed
130=Curtain Width : 
131=Current Percentage: 
132=Test Curtain Width
133=Are you sure to re-measure?
134=Login
135=Login
136=Register
137=Account:
138=Confirm Password:
139=Country:
140=City:
141=Company:
142=Contact:
143=TEL:
144=No Network Connection.
145=Select Floorheating
146=Bind the device?
147=Version
148=Curtain Test
149=Take Photo
150=Album
151=Background image
152=Current Brightness
153=Device
154=Floor
155=Curtain Downward
156=System
157=Curtain Upward
158=MotorRightClothUp
159=Installation and commissioning
160=Motor Direction Setting
161=Initialize Settings
162=Start To Up
163=Start To Down
164=Momentary
165=Complete
166=Complete
167=Start Test
168=Up
169=Down
170=All Light(s)
171=All AC(s)
172=All Curtain(s)
173=All Scene(s)
174=Take Photo
175=Device List
176=Disconnect With Remote Access Server
177=Roller blinds
178=Curtain
179=FAN Speed
180=Invalid
181=Single ON/OFF
182=Single ON
183=Single OFF
184=Combination ON
185=Combination OFF
186=Combination ON/OFF
187=Curtain Percentage
188=Curtain Status
189=Light Status 
190=Light Brightness
193=All ON
194=All OFF
195=ON
196=OFF
197=Heating
198=Cooling
199=System Album
200=Delete
201=Are you sure to quit this application? 
202=Power
203=Mute
204=Channel +
205=Channel -
206=Vol +
207=Vol -
208=Home
209=Menu
210=Add Button
211=Volume
212=AV/TV
213=Return
214=Cancel Binding?
215=Failed
216=Channel
217=Remote Connection
218=Add Linghting Scenes
219=Remark
220=Target IP Address
221=Transmission
222=DownLoad
223=Download Failed
224=Download Complete,Please Restart the Application.
225=Data receiving
226=Area
227=Create
228=Update
229=Switch
230=Please Enter residence Name
231=Residence Management
232=Are You Sure To Delete This residence?
233=Are You Sure To Update This residence?
234=Dimming
235=Residence switched successfully.
236=Room Area
237=Global Scenes
238=Lighting Scene configuration
239=Fade Time
240=Fade In Time
241=Fade Out Time
242=Switch Motor Direction
243=Are you sure to Initialize Setting?
244=Configuration Complete
245=ON/OFF
246=Alarm
247=Clear messages
248=Auto Test
249=Are you sure to delete all messages?
250=New Message
251=Read
252=Interval Time: --s
253=Online
254=New Devices
255=Offline
256=Please log in
257=Hide Invalid Rooms
258=Show All Rooms
259=Turn ON All Lights
260=Turn OFF All Lights
261=Open All Curtains
262=Close All Curtains
263=:Fail to control
264=:Control Succeeded
265=Electric appliance
266=Fan
267=Delete?
268=Fine Tune
269=Long Press to Configure Height
270=Close
271=Do You Want To Delete this Device Category?
272=Turn OFF All Appliances
273=Turn ON All Appliances
274=Turn ON All Fans
275=Turn OFF All Fans
276=Music panel
277=Logic Module
278=Momentary 
279=please ensure no new device connected.
280=Refresh device list.
281=Continue
282=Gateway update failed.
283=Gateway address assignment failed.
284=Press the gateway programming button for 2 seconds to enter programming mode.
285=Non searchable device(s)
286=Mechanical Switch
287=Please connect the device to add.
288=Start address allocation
289=Multi-function
290=Ventilation
291=Auto
292=Dehumidify
293=High
294=Medium
295=Low
296=CLOSE
297=Channle Name:
298=Channel Number:
299=SHOW ALL
300=Login System
301=Change the password
302=Please select the type of action.
303=Download Data
304=Turn off Data Reception
305=Search
306=Theme
307=Theme changed successfully. Please restart the application.
308=Restore default skin
309=Favorite
310=Devices
311=Rooms
312=DoorLock List
313=TV List
314=Sensor
315=Phone number
316=A varification link has been sent to your email ID, please check. 
317=Network abnormal, unable to connect to the Internet.
318=Banned debugging account.
319=Mobile registration
320=Next
321=Mobile phone number error
322=Registered phone number
323=Fail to send SMS message
324=Mailbox registration
325=Verification Code
326=Wrong verification code
327=Invalid verification code
328=Add Gateway
329=HomePage
330=Gateway MAC
331=Subaccount
332=MAC has been used
333=Fail to add
334=Incorrect MAC
335=Enable debugging account
336=Debug Account
337=Add Subaccount
338=Are you sure to Delete sub account?
339=Password should contain 6 or more characters.
340=Password changed successfully
341=Password confirmation does not match, fail to change password.
342=Register succeeded
343=Version update, please backup the data in time.
344=Click menu button to add gateway
345=Email
346=Phone
347=Gateway MAC list
348=Please enter the sub account
349=Please enter the sub account remark
350=Please enter the correct 16 - bit MAC
351=Account exists, fail to add.
352=Delete successfully.
353=Delete failed.
354=Data Management
355=The results do not contain the gateway bounded to the area. Please check and search again.
356=Add
357=This device is not found locally, do you want to delete it?
358=Universal Device
359=Residence list
360=Vacation
361=Guest reception
362=Deactivate security
363=Security activation failed
364=Security activation succeeded
365=Sensor Status
366=History
367=Change password
368=Clear
369=Security deactivation failed
370=Security deactivation succeeded
371=Offline
372=Security Status
373=Door sensor and window sensor
374=Water senser
375=Power senser
376=Current senser
377=Voltage senser
378=Vibration senser
379=Velocity senser
380=Height/Length senser
381=Weight senser
382=Rainfall senser
383=Liquid Depth senser
384=Liquid Pressure senser
385=Liquid Flow senser
386=Wind Pressure senser
387=Wind Speed senser
388=Smoke senser
389=Natural gas sensor
390=Manufactured gas sensor
391=Liquified petroleum gas sensor
392=CO2 Sensor
393=PM2.5 sensor
394=TVOC sensor
395=Light sensor
396=Humidity sensro
397=Temperature sensor
398=Movement Detection
399=Excellent
400=Good
401=Lightly polluted
402=Heavily polluted
403=Humidity
404=PM2.5 reference data
405=PM2.5 daily average (μg/m³)
410=CO2 reference data
411=CO2 daily average (ppm)
412=Clear
413=Polluted
414=Low oxygen
415=Severely low oxygen
416=TVOC reference data
417=TVOC daily average (ppm)
418=Good
419=Lightly polluted
420=Moderately polluted
421=Heavily polluted
422=Temperature reference data
423=(Temperature unit °C)
424=Comfortable
425=Cool/Lightly hot
426=Cold/Hot
427=Very cold/hot
428=Humidity reference data
429=(Humidity unit %)
430=Moist
431=damp
432=Dry
433=Temperature
434=Temp.
435=Environment monitor
436=Connection failed, the account did not bind the gateway.
437=Please enter the password for HDL ON
438=White style
439=Black style
440=Automatic Setting
441=Remote password
442=Valve Status : --
443=Current Value : -- %
444=Residence list
445=Modification failed
446=Yes
447=Modification succeeded
448=Add new residence
449=Binding succeeded.
450=Gateway bounded successfully, search for gateway?
451=Delete area
452=All data and backup will be deleted. Please enter login password to confirm.
453=Bind Gateway 
454=Gateway configuration
455=Modify
456=Residence Name
457=No
458=Fresh Air
459=Manual
460=Constant Tempe.
461=Smart
462=Internal Circulation
463=Out Temp.
464=Video Intercom
465=Failed.
466=Automation setting
467=Fail to communicate with the database.
468=Overcooling
469=Overheat
470=Target List
471=Unnamed
472=Device Type
473=Please select device type
474=Please select device
475=Trigger temp.
476=Custom Condition 4;
477=Custom Condition 3;
478=Custom Condition 2;
479=Custom Condition 1;
480=SensorHadChoose
481=Push Closed
482=Push Open
483=Data History
484=Year
485=Trigger Condition
486=Day
487=7 Days
488=Target
489=No more target can be added!
490=Are you sure to delete this automation?
491=Condition Type
492=Name
493=Schedule
494=Help
495=Lable Name
496=Time
497=Repeat
498=Choose Room
 
1000=Music Source
1001=Music Player
1002=FD optical fiber
1003=Bluetooth
1004=FM Radio
1005=USB
1006=Local Music
1007=DLNA Server Music
1008=Network Streaming Music
1009=My Playlists
1010=My Favorite
1011=My Setup
1012=CD
1013=Playlists
1014=Local Music
1015=Songs
1016=Album
1017=Singer
1018=Delete
1019=Media Player 
1020=DLNA Server Music
1021=My playlists
1022=Save To Music Player
1023=Device List
1024=My Favorite
1025=Prompt 
1026=No Supported Device found
1027=OK
1028=Popular
1029=Folk
1030=Rock
1031=Classic
1032=Network Streaming Music
1033=SD Card
1034=NAS
1035=Online Radio
1036=Favorite Music
1037=Favorite Radio
1038=Online Music
1039=Single Cycle
1040=Shuffle
1041=List Loop
1042=PANDORA
1043=P
1044=Log in via Pandora account
1045=Please register an account on www.pandora.com first.
1046=Log in
1047=Invalid account or wrong password.
1048=Network error
1049=Switch account
1050=Success
1051=Pandora
1052=QQ Music
1053=Spotify
1054=No application installed
1055=Loading
1056=Rename
1057=Return
1058=Rename Device
1059=Finish
1060=Edit room name
1061=Input device name
1062=Cancel
1063=Sure
1064=Radio station
1065=Podcast
1066=AudioBoom
1067=Palcom
1068=TIDAL
1069=Empty list name
1070=List name already exists
1071=New list added successfully
1072=New list
1073=Delete current Music Player
1074=Tips
1075=Configuring
1076=Enter Password
1077=Next
1078=Please connect your cellphone to 2.4G wireless network (Select corresponding 2.4GHz SSID if the router is dual mode)
1079=User Name
1080=Password
1081=Bedroom
1082=Study Room
1083=Office
1084=Living Room
1085=Meeting Room
1086=Kitchen
1087=Toilet
1088=Dissolved Group
1089=Are you sure to dissolve this group?
1090=New
1091=TIDAL Rising
1092=Playlists
1093=Genres
1094=My Muisc
1095=Search
1096=Signout
1097=Operating steps : Input WiFi password, press WPS button on the device, then click "next" to continue.
1098=Line In
1099=Device Wi-Fi off. Please turn on WiFi and search again.
1100=Go to wireless network setting.
1101=Please connect to Wi-Fi that begins with HDL.
1102=Select the network
1103=Select the network to connect.
1104=Tips: No password set for the Wi-Fi, press "next" directly.
1105=Enter Wi-Fi password.
1106=Please select a WiFi to connect.
1107=Please enter password
1108=Music player name
1109=Please enter new name for bluetooth.
1110=Please enter the name
1111=Equalizer
1112=Equalizer setting
1113=Treble
1114=Bass
1115=Connection Succeeded
1116=Connection Time Out
1117=Incorrect Password
1118=Select the Wi-Fi that begins with "HDL***" in the wireless LAN network setup page.
1119=Device information
1120=LAN network
1121=Hotspot
1122=Others
1123=Speaker name
1124=Firmware version
1125=Compilation time
1126=Language of prompt sound
1127=Restore factory settings
1128=Wi-Fi password:
1129=Language setting
1130=Chinese
1131=English
1132=Password must be 8 characters or above.
 
11000=Channel Name  
10000=All Floor Heatings
10001=Current
10002=Day
10003=Away
10004=Normal
10005=Night
10006=Timer
10007=Channel No.
10008=Please Enter Channel Name and No.
10009=Password
10010=OK 
10011=Sign In
10012=Reset 
10013=Current Password       
10014=New Password  
10015=Confirm New Password 
10016=Set Password
10017=Reset Password 
10018=Please Enter New Password
10019=New Password Is Empty 
10020=The password confirmation does not match. 
10021=Current password incorrect
10022=Incorrect Password
10023=Please enter password
10024=Please Bind STB 
10025=Bind STB 
10026=Enter Current Password      
10027=Enter New Password        
10028=Confirm New Password        
10029=Password        
10030=Please enter Pasword       
10031=Please Confirm Password 
10032=Register 
10033=Forgot?
10034=Email 
10035=User ID/Email ID
10036=District
10037=Phone number      
10038=Contacts 
10039=Type        
10040=Send 
10041=Confirm Password 
10042=Account
10043=Register
10044=Account 
10045=Log out
10046=Account not activated
10047=Incorrect Account name or Password!
10048=Please Fill in All required Information
10049=Incorrect Email Address
10050=This email is already registered
10051=Fail to send email
10052=The password confirmation does not match, please enter again.
10053=Network error
10054=Do you want to delete all local data?
10055=Check Mailbox And Reset Password
10056=Backup list
10057=Please enter a backup name
10058=New
10059=Backup
10060=Detailed Information
10061=Are you sure to delete this Backup?
10062=File Name Exists
10063= Delete File?
10064=Please Log in
10065=Delete File failed
10066=Add File failed
10067=Backup Data?
10068=Data Backup Succeeded
10069= Download and Restore Data?
10070=Restore Succeeded
10071=Please Log in
10072=Contact
10073=Company
10074=City
10075=Country
10076=Backup Failed
1077=Temperature 
10078=Initializing
10079=Video surveillance 
10080=Camera Type
10081=Http
10082=Type Selection
10083=EZVIZ Camera
10084=PW:
10085=Please enter Camera Name
10086=Please enter URL
10087=Please enter User Name
10088=Please enter Password
10089=User:
10090=URL
10091=EZVIZ
10092=Camera Type
10093=URL Camera  
10094=Name:
10104=Doorlock
10105=User Management 
10106=Generate Temporary Password  
10107=Remotely Unlock
10108=Add New User
10109=(Change) avatar
10110=Unlock history
10111=Edited
10113=Fingerprint List
10114=Unedit Password
10115=Unedit Proximity Card
10116=Scence configuration
10117=UnEdited Scene       
10118=New Name 
10119=Current Name 
10120=Notification Setting 
10121=System Setting  
10122=Password List
10123=Edit Remark
10124=Temporary Password 
10125=Proximity Card  
10126=Empty remark
10127=Vertify Succeeded
10128=Vertify too fast. Please Try Again after 5s.
10134=Maximum valid times: 15
10130=Valid duration:
10131=Valid times
10132=Maximum valid time: 65532 minutes
10133=Times
10134=This Temporary Password Can be used twice
10135=Generate Temporary Password
10136=  Date
10137=Month
10138=Time calibration
10139=Auto Time calibration
10140=Manual Time calibration
10141=Minute
10142=Succeeded
10143=Failed
10144=Dynamic Password 
10145=Are you sure to Generate another Temporary Dynamic Password?
10146=All Notifications
10147=Door open/close notification
10148=Low power Alarm
10149=Intrusion Alarm
10150=Door slightly open alarm
10151=Error Alarm
10152=Notification
10153=Push alarm message
10154=Do not receive alarm notification
10155=Type
10156=User   
10157=Fingerprint  
10158=Password  
10159=Proximity Card  
10160=Key  
10161=Remote
10162=Temporary Password  
10163=Key
10164=Incorrect Password
10165=Door not locked tightly
10166=Hijack  
10167=Low power
10168=Invalid Fingerprint    
10169=Invalid Proximity Card    
10170=Unlock:
10171=Alarm:
10172=Unlock Notification
10173=Alarm
10175=Scene activation
10176=Optional Scenes
10177=No Targets found in this scene
10178=Configuring target ...
10179=Target Configuration Succeeded
10180=Alarm Scene Setting
10181=Please enter Password (6 digits)
10182=Press Device Key to set password.
10183=Please enter Password
10184=Failed to Send Password
10185=Enter current password before changing it
10186=Press Device Key for 5s to change password
10187=Enter current password and then Press Device Key for 5s to change password
10188=Time Setting
10189=Vertify too fast.Please Try Again after 15 seconds.
10190=Device Offline
10191=Set Passwords
10192=User Name
10193=All doorlocks
10194=No password set. It is highly recommended to set new password.
10195=Are you sure to Change Password?
10196=All History
10197=Set Password
10198=Forgot Password
10199=Account Password
10200=Incorrect Password
10201=All history
10202=Set/change Password for remote unclock
10203=No Password set for remote unclock
10204=Password for remote unclock set succeeded
10205=Welcome to Remote Unlock
10206=Please Set Password For remote unlock as this is your first use.
10207=Set
10208=Later
10209=Please go to System Setting to set or change password
10210=Please set Password (6 digits)
10210=Please set new Password (6 digits)
10212=No password set for the account
10213=Scene Alarm Setting
10214=Target setting failed. Please Add Logic Modules to the Scene
10215=Control failed
10216=Unnamed fingerprint
10217=Unnamed Password
10218=Unnamed Proximity card
10219=Turn on Alarm?
10220=Turn off Alarm?
10221=Fingerprint
10222=Password
10223=Proximity
10224=Remote
10225=Push notification
10226=User 
10227=Please Input Push Content
10228=Current scene will be deleted, are you sure to switch scene?
10229=This Scene is already in use. 
10230=No Gateway Found
10231=Notification synchronized Successfully
10231=Failed to synchronize notification
10233=Send Notification?
10234=Doorlock Alarm turned on Successfully
10235=Failed to turn on doorlock Alarm   
10236=Doorlock Alarm turned off Successfully
10237=Failed to turn off doorlock Alarm  
10238=Notification sent Successfully
10239=Failed to Send Notification 
 
[Chinese]
1=你好
2=所有设备
3=灯光
4=需要切换区域才能查看该住宅的设备列表,是否确认切换?
5=搜索设备
6=无线网络参数
7=远程访问
8=网络参数
9=网关ID:
10=配对无线设备
11=IP地址:
12=子网掩码:
13=路由IP:
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=请输入范围在1-100的数字。
68=请输入范围在0-4600的数字。
69=请选择你要删除的设备。
70=开
71=停
72=窗帘设备
73=设置温度  --°C
74=空调设备
75=室内温度
76=模 式
77=名称已经存在,添加失败。
78=请输入房间名称。
79=添加场景
80=场景名称
81=模式选择
82=场景
83=请输入场景名称。
84=未配置
85=风 速
86=搜索网关设备
87=确定要删除所有信息吗?
88=请输入正确的数据.
89=备用服务器IP:
90=服务器IP:
91=组 名:
92=确定要重新分配地址吗?
93=全部重新分配地址
94=分配新增设备地址
95=面板设备
96=发现设备
97=配置相关的网络参数
98=使能远程访问,配置相关的参数
99=配置无线网络相关参数
100=新项目安装请选择 “全部重新分配ID”,需要添加新设备请选择“分配新增设备ID”。 注意:当选择“全部重新分配地址”时所有的ID都会被擦除!
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=灯光亮度
193=全开
194=全关
195=开
196=关
197=制热
198=制冷
199=系统图库 
200=删除
201=是否要关闭程序?
202=电源
203=静音
204=频道+
205=频道-
206=音量+
207=音量-
208=主页
209=菜单
210=新增按键
211=音量
212=AV/TV
213=返回
214=是否要取消绑定?
215=操作失败!
216=通道
217=远程连接
218=添加灯光场景
219=备 注
220=目标IP地址
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=间隔时间:--s
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=请长按网关编程按钮2秒进入编程模式。
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=网关MAC
331=子账号
332=MAC已被使用
333=添加失败
334=MAC错误
335=启用调试帐号
336=调试帐号
337=添加子账号
338=确定删除子帐号吗?
339=密码应为6位或以上
340=密码修改成功
341=两次输入不一致,修改失败。
342=注册成功
343=版本更新,请及时备份数据。
344=添加网关请点击菜单按钮
345=邮箱账号
346=手机账号
347=网关MAC列表
348=请输入子帐号
349=请输入子帐号备注
350=请输入正确的16位MAC地址
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=PM2.5
394=TVOC
395=光照
396=湿度
397=温度
398=移动探测
399=优
400=良
401=轻度污染
402=重度污染
403=湿度
404=PM2.5参考数据
405=(日均浓度值μg/m³)
410=CO2参考数据
411=(日均浓度值ppm)
412=空气清新
413=空气浑浊
414=空气缺氧
415=严重缺氧
416=TVOC参考数据
417=(日均浓度值ppm)
418=符合标准
419=轻度污染
420=中度污染
421=重度污染
422=温度参考数据
423=(温度单位 °C)
424=舒适
425=微冷/微热
426=冷/热
427=极冷/极热
428=湿度参考数据
429=(湿度单位 %)
430=湿润
431=潮湿
432=干燥
433=温度
434=温度
435=环境监测
436=连接失败,帐号未绑定该网关。
437=请输入HDL ON的密码
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=自定义条件4;
477=自定义条件3;
478=自定义条件2;
479=自定义条件1;
480=自动化也经选择此等级,无法再次选择。
481=推送使能:关
482=推送使能:开
483=历史数据
484=今年
485=触发条件
486=今日
487=最近7天
488=目标
489=控制目标已达上限。
490=是否要删除该自动化?
491=请选择类型
492=名 称
493=定时器
494=帮助
495=名 称
496=时 间
497=周 期
498=选择房间
 
1000=音乐源
1001=播放器音乐
1002=FD光纤
1003=蓝牙
1004=FM收音机
1005=USB
1006=本地音乐
1007=DLNA服务器音乐
1008=网络流媒体音乐
1009=我的列表
1010=我的最爱
1011=我的设置
1012=CD
1013=播放列表
1014=本地音乐
1015=歌曲
1016=专辑
1017=歌手
1018=删除
1019=媒体播放器
1020=DLNA服务器音乐
1021=我的列表
1022=保存到音乐播放器
1023=设备列表
1024=收藏列表
1025=提示
1026=暂时找不到可支持的设备
1027=OK
1028=流行
1029=民歌
1030=摇滚
1031=古典
1032=网络流媒体音乐
1033=内存卡
1034=NAS
1035=在线电台
1036=喜爱音乐
1037=喜爱电台
1038=网络音乐
1039=单曲循环
1040=随机播放
1041=列表循环
1042=PANDORA
1043=P
1044=用Pandora账号登录
1045=如果没有账号,请到www.pandora.com进行注册
1046=登录
1047=账号或密码错误
1048=网络错误
1049=切换用户
1050=成功
1051=Pandora
1052=QQ音乐
1053=Spotify
1054=没有安装应用程序
1055=加载中
1056=重命名
1057=返回
1058=设备命名
1059=完成
1060=自定义房间名称
1061=请输入设备别名
1062=取消
1063=确定
1064=广播电台
1065=播客
1066=AudioBoom
1067=Palco MP3
1068=TIDAL
1069=列表名为空
1070=列表名相同
1071=添加成功
1072=新增列表
1073=删除当前音乐播放器
1074=提示
1075=配置中
1076=输入密码
1077=下一步
1078=请将手机连接至2.4G无线路由器网络(如果是双模的路由器,请连接对应2.4GHz的Wi-Fi SSID名)
1079=用户名
1080=密码
1081=卧室
1082=书房
1083=办公室
1084=客厅
1085=会议室
1086=厨房
1087=卫生间
1088=解散组
1089=是否要解除绑定
1090=新
1091=新星
1092=播放列表
1093=类型
1094=我的音乐
1095=搜索
1096=登出
1097=操作步骤:输入WiFi密码,请点击设备的WPS按键连接网络,然后按“下一步”按钮继续。
1098=线路输入
1099=WiFi未开启,请开启WiFi重新搜索.
1100=前往手机的无线局域网界面,
1101=选择以HDL***开头的Wi-Fi进行连接. 
1102=选择网络
1103=选择你将要连接的无线网络
1104=提示:Wi-Fi没有设置密码直接按下一步.
1105=输入Wi-Fi密码
1106=还没有选择将要连接的WiFi.
1107=请输入密码
1108=播放器名称
1109=请输入蓝牙新名称
1110=请输入名称
1111=均衡器
1112=均衡器设置
1113=高音:
1114=低音:
1115=连接成功
1116=连接超时
1117=密码不正确
1118=前往手机的无线局域网界面,选择以HDL***开头的Wi-Fi进行连接.
1119=设备信息 
1120=LAN网络信息 
1121=Hotspot信息
1122=其他信息 
1123=音箱名称 
1124=固件版本 
1125=编译时间 
1126=提示音语言 
1127=恢复出厂设置 
1128=Wi-Fi密码:
1129=更改设备语言 
1130=中文
1131=英文 
1132=提示:密码长度需要大于8位。
 
11000=频道名称 
10000=全部地热
10001=当前 
10002=白天
10003=离开
10004=普通
10005=夜晚
10006=定时
10007=频道编号
10008=请输入电视的频道名称和编号
10009=密码
10010=确 认 
10011=登 陆
10012=重 置 
10013=原密码       
10014=新密码    
10015=确认新密码
10016=设置密码
10017=重置密码 
10018=请输入新密码
10019=新密码为空
10020=新密码与确认密码不一致!
10021=旧密码错误 
10022=密码错误 
10023=请输入密码
10024=请绑定机顶盒  
10025=绑定机顶盒  
10026=请输入旧密码      
10027=请设置新密码        
10028=请确认新密码       
10029=密码
10030=请设置密码      
10031=请确认密码
10032=注册 
10033=忘记密码
10034=邮件 
10035=邮箱地址              
10036=地域 
10037=手机号码      
10038=联系人 
10039=类型        
10040=发送 
10041=确认密码 
10042=账 号
10043=用户注册
10044=账号
10045=退出账号
10046=邮箱帐号未激活
10047=账号或者密码错误
10048=请填写全部信息。
10049=邮件地址格式错误。
10050=该邮箱已被注册
10051=邮件发送失败 
10052=密码不相同,请重新输入  
10053=网络异常
10054=是否需要删除本地的所有数据 ?
10055=查看邮箱并重置密码
10056=备份列表
10057=请输入备份名称
10058=新建
10059=备份
10060=详细信息
10061=确定删除此备份吗?
10062=文件名已经存在 
10063=确定删除文件吗?
10064=请登录系统
10065=删除文件失败
10066=添加文件失败
10067=确定备份数据吗?
10068=备份数据成功
10069=是否要下载并恢复数据?
10070=恢复文件成功
10071=请登录系统
10072=联系人  
10073=公司  
10074=城市
10075=国家
10076=备份文件失败 
10077=温 度
10078=正在初始化
10079=视频监控
10080=摄像头类型
10081=Http
10082=类型选择
10083=萤石摄像头
10084=密码:
10085=请输入摄像头名称
10086=请输入URL
10087=请输入用户名
10088=请输入密码
10089=用户:
10090=URL
10091=EZVIZ
10092=摄像头类型
10093=网络摄像头
10094=名称:
10104=门锁
10105=用户管理
10106=临时密码生成
10107=远程开锁
10108=新增用户
10109=头像
10110=开锁记录
10111=已编辑
10113=指纹列表
10114=未命名密码
10115=未编辑感应卡
10116=配置场景
10117=未编辑场景  
10118=新名字 
10119=原名字 
10120=提醒设置
10121=系统设置
10122=密码列表
10123=修改备注
10124=临时密码
10125=感应卡  
10126=备注为空
10127=验证成功
10128=验证频繁,请5秒后重新操作
10129=最大有效次数为15次
10130=有效时段:
10131=有效次数:
10132=有效时间最长为65532分钟
10133= 次
10134=该临时密码可使用2次
10135=生成临时密码
10136=日  期
10137=月
10138=校正时间
10139=自动校正时间
10140=手动校正时间
10141=分 
10142=设置成功
10143=设置失败
10144=动态密码
10145=确定要重新生成临时动态密码吗
10146=所有通知提醒
10147=开关门提醒
10148=低电量报警
10149=防撬报警
10150=门未关报警
10151=错误报警
10152=通知提醒
10153=手机推送报警信息
10154=不接收报警推送
10155=类型
10156=用户
10157=指纹
10158=密码
10159=感应卡
10160=钥匙
10161=远程
10162=临时密码
10163=钥匙
10164=密码错误
10165=门未锁好
10166=劫持
10167=电量不足
10168=指纹错误
10169=卡片错误
10170=开锁:
10171=报警:
10172=开锁通知
10173=报警通知
10175=场景触发
10176=可选场景
10177=场景中没有目标,控制失败
10178=目标配置中
10179=目标配置成功
10180=报警场景设置
10181=请输入6位数字密码
10182=设置密码需要按设备按键
10183=请输入6位密码
10184=密码发送失败
10185=请输入原密码再更改密码
10186=设置密码需要按设备键5s
10187=更改密码时先输入原密码然后长按设备按键5s才能更改密码
10188=时间设置
10189=验证频繁,请15秒后再操作
10190=设备不在线
10191=设置密码
10192=用户名
10193=所有门锁
10194=密码不存在。建议设置新密码
10195=确定要更改密码吗 
10196=所有历史记录 
10197=设置密码
10198=找回密码
10199=账户密码
10200=账户密码错误 
10201=所有记录
10202=远程开锁密码设置/更改 
10203=还没设置密码
10204= 远程开锁密码已经设置
10205= 欢迎使用远程开锁
10206=首次使用请设置远程开锁密码
10207=现在设置
10208=稍后设置
10209=稍后请前往系统设置中设置或者更改密码
10210=设置6位密码
10211=请设置6位新密码
10212=账户密码为空
10213=场景报警设置
10214=设置目标失败,请在场景中添加逻辑模块
10215=控制失败 
10216=未知指纹 
10217=未知密码
10218=未知感应卡
10219=确定打开报警提醒?
10220=确定关闭报警提醒?
10221=指纹记录 
10222=密码记录
10223=感应卡记录
10224=远程记录
10225=推送设置
10226=用户
10227=请输入推送内容
10228=切换场景将导致当前场景被删除,是否确定切换?
10229=该场景在使用中
10230=没有发现网关
10231=同步通知成功
10232=同步通知失败
10233=确定发送通知吗?
10234=打开门锁报警成功
10235=打开门锁报警失败
10236=关闭门锁报警成功
10237=关闭门锁报警失败
10238=发送通知成功
10239=发送通知失败