wxr
2021-07-01 43b0d5870d528f23ecd6aeceb6cfd4325188b46f
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
[English]
1=Log in
2=Phone number
3=Light
4=Email address
5=Please enter your account number
6=Password
7=Forgot
8=Sign up
9=Vercode login
10=Please wait…
11=Close
12=Get vercode
13=Password login
14=Sign up
15=Phone number
16=Please enter the password
17=Please enter your password again
18=Verification code.
19=The phone number is incorrect. Please re-enter.
20=The password and confirmation you typed do not match. Please re-enter your password.
21=The password format does not comply with the requirements, please enter again.
22=The user has existed, yo24-hour defenseu can sign in directly.
23=Incorrect verification code, please re-enter.
24=Incorrect account number, please enter the correct email address.
25=Email address
26=Residence
27=Member
28=Disarm
29=Arming
30=Data backupe
31=Auxiliary function
32=Add functions
33=Night mode
34=General settings
35=Get Support
36=Home
37=Category
38=Smart
39=Individual
40=Log-in failed, incorrect account number or password
41=Fail to send the verification code
42=Network error
43=Fail to sign up, please try again.
44=Confirm resetting
45=The account number does not exist, please make sure it is registered.
46=Invalid log-in receipt, please sign in again.
47=Personal Center
48=Name
49=QR code
50=Phone
51=Email
52=Not bound
53=Third party authorization
54=Change password
55=Unlock setting
56=Set password, gesture, fingerprint or face ID to protect your privacy.
57=Log out
58=Room
59=Device
60=Function
61=Brightness
62=Setting
63=Location
64=Share
65=Add desktop shortcut
66=Change name
67=Cancel
68=Confirm
69=All
70=Curtain
71=Name
72=Address
73=Floor Management
74=Room Management
75=Admin Migration
76=Privilege Migration
77=Debugging privilege
78=The administrator is migrated to other user.
79=All residence data are migrated to new user.
80=Allow the staff to visit your home remotely
81=Floor
82=Add floor
83=Change the name of the floor
84=Fail to add, the floor already existed.
85=Scene
86=Delete
87=Prompt
88=Delete the floor or not?
89=Add room
90=Change the information for the room
91=Room information
92=Name
93=Floor
94=Functional management
95=Save
96=Delete the room
97=Default gallery
98=Camera
99=Select from the gallery
100=Not assigned
101=Assigned
102=Uunassigned
103=Delete the room or not?
104=Transition time
105=Indoor temp.
106=AC
107=Video intercom
108=Sensor
109=Security monitor
110=Smart panel
111=Music
112=Fresh air
113=Environmental
114=Energy monitoring
115=Appliances
116=Smart lock
117=Floor heating
118=Open
119=Cooling
120=Heating
121=Dehumidify
122=Auto
123=Air Supply
124=High
125=Medium
126=Low
127=Mode
128=Fan speed
129=Are you sure to shut off all functions in the room?
130= already opened
131=Already added to favorites
132=Congratulations! Successful registration.
133=Automatic log-in soon…
134=The account number is not registered, please sign up then log in again.
135=Please get the verification code.
136=The password has been changed.
137=The residential address can not be blank.
138=The name of the residence can not be blank.
139=The name of the room can not be blank.
140=The name of the floor can not be blank.
141=Fail to revise, the floor has existed.
142=The name of the device can not be blank.
143=The name of the user can not be blank.
144=The name of user
145=Please select the page to lock.
146=You can multi-select the pages you would like to maintain.
147=Verification code error
148=No protect
149=When start
150=Arm/Disarm
151=Unlock remotely
152=No need for password/gesture while starting up the software
153=Regarding the log-in in 5 minutes after leaving the page, the corresponding unlock method is required.
154=Member center - used for unlocking the security function like arm/disarm
155=Used for unlocking the smart lock
156=Unlock setting
157=Only valid to host
158=Unlock with password
159=Unlock with gesture
160=Unlock with fingerprints
161=Unlock with face ID
162=Numeric password setting
163=Successful setting
164=Gesture setting
165=Please draw your unlock pattern.
166=It requires at least 4-point connection, please draw again.
167=The pattern and confirmation you drew do not match. Please draw again.
168=Please draw your unlock pattern again.
169=Unlock with fingerprints or not?
170=Unlock with face ID or not?
171=Verify the numeric password
172=Verify the gesture
173=Please enter the original gesture.
174=Please enter the original numeric password.
175=Vverification failure, password error
176=Change the numeric password
177=Change the gesture
178=Shut off the unlock setting or not?
179=Please verify the fingerprints.
180=Verification failure, gesture error
181=General
182=Day
183=Night
184=Leave
185=Please bind the floor.
186=Fan speed adjustment
187=Fan
188=Socket
189=Level
190=Chl
191=Vol
192=TV
193=The room has existed, fail to change.
194=Environment
195=Heavy pollution
196=Slight pollution
197=Good
198=Excellent
199=Freezing cold
200=Cold
201=Chilly
202=Comfort
203=Warm
204=Hot
205=Extremely hot
206=Up to the standard
207=Slight pollution
208=Medium pollution
209=Heavy pollution
210=Fresh
211=Turbidity
212=Hypoxia
213=Severe hypoxia
214=Humid
215=Moist
216=Dry
217=Temperature
218=Humidity
219=Range
220=Level
221=Color value
222=PM1.0
223=PM2.5
224=Noise
225=Wind force
226=CO2
227=TVOC
228=Day
229=Week
230=Month
231=Other region
232=Member Management
233=Nickname
234=Administrative Authority
235=Create a scene
236=The nickname can not be blank.
237=Edit the nickname
238=The region used
239=Add member
240=Please enter the member's account number.
'
241=Scan QR code
242=Confirm the invitation
243=Account number error, please check.
244=Successfully add the member
245=Data error, please try again.
246=Fail to add, the member's account number has not been registered.
'
247=Fail to add yourself.
248=The user does not exist in this residence.
249=The member's account number has been added, so it can not be added again.
'
250=Operation failure
251=Fail to add, invalid authority
252=Saved successfully
253=Saving…please wait.
254=Nickname editing
255=Remove this member
256=No favorites
257=Please enter the contents.
258=Welcome the new member.
259=Are you sure to remove this member?
260=Please enter the log-in password.
261=Ssuccessfully switch to the residence
262=Select all
263=Share the functional selection
264=Confirm sharing
265=Share to
266=Functional sharing failure
267=Successful functional sharing
268=Email address
269=Change the binding
270=Delete the binding
271=Email address
272=Change the binding email address
273=Change the verification method
274=The verification code is sent, please enter it.
275=re-send
276=Successful verification
277=Email address
278=Please enter new email address.
279=Successfully bind your email address to your account 
280=Fail to bind your email address to your account 
281=Remove the binding to your email address
282=Successful removal of the binding
283=Phone number
284=Phone number
285=Phone number
286=Successfully bind your cell phone number to your account 
287=Fail to bind your cell phone number to your account 
288=Change The Binding
289=Remove The Binding
290=Fail to get the history
291=No favorites
292=About ON+
293=Member
294=Administrator
295=Change password
296=Before changing the log-in password
297=Please verify the ID.
298=Phone verification
299=Email verification
300=Haven't bound to email address, fail to verify
301=Haven't bound to cell phone number, fail to verify
302=Proceed binding
303=Successfully remove the binding to your cell phone number
304=The verification code has been sent to:
305=Phone number
306=Email address
307=Received new data, are you sure to override?
308=Automation
309=Create Scene
310=Add Scene
311=Basic configuration
312=Name
313=Region
314=Complete
315=Full view of the residence
316=Select
317=Already added
318=Switch
319=Fan speed
320=Mode
321=On
322=Off
323=Scene
324=Scene delay
325=Delay setting
326=Delay
327=Catch Scene
328=Film scene
329=General
330=Automatic mode
331=Floor heating power 
332=Floor cooling
333=Floor cooling power 
334=Adjust the percentage
335=No delay
336=No scene available. Add one! 
337=Edit the scene
338=The name of the scene can not be blank.
339=The name of the scene has existed, please revise.
340=The name of the room has existed, please revise.
341=Delete this scene or not?
342=The gateway is off-line, remote connection failure.
343=MAC error, remote connection failure.
344=Rremote connection failure
345=Phone number
346=Email address
347=Please enter new cell phone number.
348=The cell phone number has been used.
349=The email address has been used.
350=The email address is the same as the current one, no need to change.
351=The cell phone number is the same as the current one, no need to change.
352=Floor assignment
353=Pull apart
354=Close
355=About
356=Version number
357=This function is not available!
358=Telephone:
359=Email:
360=Panel scene
361=Have not added
362=Select all
363=Can not communicate with the server, fail to edit the device information
364=Can not communicate with the server, fail to edit the room information
365=Can not communicate with the server, fail to edit the scene information
366=Can not communicate with the server, fail to delete the scene
367=Can not communicate with the server, fail to delete the floor
368=Welcome to enjoy ON+
369=Add new residence
370=Become family member
371=Can not use the function, please bind the gateway
372=Can not create the scene, please bind the gateway
373=Fail to add the floor
374=The residential data has been deleted, APP will automatically swift to another residence.
375=The gateway is not connected to the server, fail to create the scene.
376=Can not enter special character
377=The whole residence
378=Transition time
379=Transition speed
380=This function is not available!
381=Reload
400=Welcome home
401=Invalid barcode, please try again
402=Try again
403=Color temperature
404=Fast adjustment
405=Cozy
406=Meeting
407=Reading
408=Add
409=Function Brand
410=You have not added any platform device at present
411=Other platform devices are supported by third party service providers
412=Add
413=Controller not on
414=Controller on
415=Someone
416=Log
417=Water Leakage
418=In Alarm
419=Normal
420=Hot dry
421=Air dry
422=Disinfect
423=Lighting
424=Time
425=Hot dry time
426=Air dry time
427=Disinfect time
428=Anion Time
429=H
430=Min
431=You are currently adding any platform devices to
432=Other platform equipment is supported by third party service provider
433=Water valve
434=Time switch
435=Remote control
436=Added Devices
437=Device List
438=humidity:{0}%    air:{1}    wind:{2}
439=Real time: {0} kw
440=Next step
441=Please select all areas of capture status
442=Generate Scene
443=Custom deployment
444=SecurityCenter
445=House Defense
446=At Home Defense
447=Vacation Defense
448=Fixed deployment
449=*Undo defense does not affect
450=Disaster defense
451=24-hour defense
452=Burglar alarm
453=Alarm mute
454=Deployment information
455=The name can not be blank.
 
456=Canvas
457=Energy consumption
458=Date
459=Real time energy consumption
460=Energy consumption of this month
461=Outdoor/Indoor
462=You haven't added any devices yet
'
463=Please input the SN code of the device
464=Can start using Zhaoguan millimeter wave
465=Delete device
466=STB
467=Projector
468=Someone fell
469=Someone's in
'
470=Under protection
471=Millimeter wave sensor
472=Outdoor
473=Swing
474=Swing up and down
475=Swing left and right
476=Add residence
477=Swing
478=Pattern
479=Speed
 
 
 
1000=Room Humidity
1001=V-chip
1002=Anion
1003=Sterilization
1004=Humidify
1005=Filter Element Reset
1006=Lighting
1007=Automatic
1008=Manual
1009=Strong
1010=Sleep
1011=Timing
1012=Wind Speed
1013=Gear
1014=Please confirm whether the filter element has been reset and operate the equipment according to the instruction manual for the filter element life to be timed again
1015=Low Gear
1016=Mid Gear
1017=High Gear
1018=Timing Setting
1019=Hour
1020=Filter Element Time:
1021=Air Cleaner
1022=Current wind speed
1023=Cancel Timing
1024=Floor Sweeping Robot
1025=Suction
1026=1st Gear
1027=2nd Gear
1028=3rd Gear
1029=Charge
1030=Voice
1031=Mute
1032=Cleaning Mode
1033=Consumables Management
1034=History
1035=Automatic
1036=Random
1037=Wall
1038=Spiral
1039=Total Clean Area
1040=Total Clean Time
1041=Remaining life of side brush
1042=Residual life of roller brush
1043=Remaining life of filter screen
1044=Reset edge brush
1045=Reset roll brush
1046=Reset screen
1047=Confirm to Reset edge brush?
1048=Confirm to Reset roll brush?
1049=Confirm to Reset screen?
1050=Add Device
1051=Mini Intelligent Remote Control
1052=Add Infrared Remote Control
1053=Press the infrared remote control button{0}for 10 seconds and the indicator light{0}flashes blue quickly
1054=Please make sure your Bluetooth{0}is on and searchable
1055=Next Step
1056=Device searching...
1057=No infrared remote control found
1058=1.Please check whether the device is{0}   powered on normally{0}2.Please check whether the Bluetooth{0}   function is turned on normally{0}3.Please check whether the indicator{0}    light is flashing blue
1059=Search Again
1060=Connect WiFi
1061=At present,it only supports 2.4G WiFi network{0}and does not support WiFi names{0}with Chinese characters
1062=Password
1063=Connecting...
1064=Please make infrared remote control{0}as close as possible to WiFi router
1065=Network Link
1066=Upload to cloud
1067=Connect success
1068=1.Please check whether the device is{0}   powered on normally{0}2.Please turn on the Bluetooth function{0}3.Press the button for 10s and the indicator{0}   light will be on
1069=Add Fail
1070=Add Success
1071=You can start using the infrared{0}remote control!
1072=Start using
1073=Please turn on Bluetooth
1074=Location information(GBS) unavailable
1075=Network unavailable
1076=Select infrared remote control
1077=Air Fresh
1078=Residual filter screen
1079=Energy
1080=Ventilated
;别看下面都一样,都是UI特殊要求整的,再加上考虑英文长度
1081=1st Gear
1082=2nd Gear
1083=3rd Gear
1084=1st Gear
1085=2nd Gear
1086=3rd Gear
1087=Unlock
1088=Temp. Password
1089=Connected
1090=Disconnected
1091=Generate
1092=Effective time
1093=Expire time
1094=Select time
1095=Select Date
1096=Generate
1097=Temporary password has been copied
1098=Clear Password?
1099=The expire time must be later than the effective time
1100=Unlock Method
1101=It'll synchronize with actual lock, confirm to delete?
1102=Delete
1103=Remark
1104=The remark can not be blank.
1105=Assign to
1106=Target Scene Not Exist
1107=Select Scene
1108=Unlock
1109=Always On
1110=Setting
1111=Automation
1112=Turn on "Always On" Mode
1113=Turn off "Always On" Mode
1114=Edit
1115=Always On will be off at {0}
1116=Condition
1117=Motion
1118=Always On
1119=Lock
1120=User
1121=Unlock Method
1122=Fingerprint
1123=Card
1124=Key
1125=Information
1126=Unlock
1127=Alarm
1128=Offline
1129=For first user, Please bind lock password
1130=Please enter admin password
1131=Bind Successfully
1132=Skip to personal password for unlock
1133=Skip
1134=Please draw your pattern
1135=Lock will be always on after setting, confirm to proceed
1136=Confirm
1137=Expire
1138=Always On will expire after {0} hours
1139=Please enter expire time
1140=Expire time should not be more than 72 hours
1141=Expire time should not be less than 1 hour
1142=Fail to set, please try again
1143=Fail to verify administrator ID, please log in again account
1144=Your residence is being migrated to other HDL 
1145=Note:
1146=1. All of your residence data will be migrate to new user.{0}2. After migration, original member will be{0}automatically unbound from this residence.{0}3. The new account is a valid HDL one.{0}4. The account from receiver cannot be the same{0}as that from migration side.
1147=Confirm
1148=Input receiver's account
1149=Profile
1150=Confirm admin migration from {0} to {1}
1151=The account does not exist.
1152=Fail to Transfer Ownership to Yourself
1153=Terminate
1154=Transferring to User, Please Wait…
1155={0} has become a residential administrator
1156=The residence data will be deleted from your account
1157=Fail to transfer
1158=Please try again
 
 
 
 
 
 
4000=Video intercom
4001=Call record
4002=*Cloud photos are only kept for 30 days
4003=Door phone call
4004=Answered
4005=Unlocked
4006=year
4007=From
4008=Call
4009=Unlocked
4010=Missed
4011=Rejected
4012=The configuration parameters are abnormal!
4013=Access Control QR Code
4014=Temporary password
 
 
 
 
 
5000=Music
5001=Group
5002=Setting
5003=General information
5004=Media player
5005=Bluetooth
5006=Region
5007=Song list
5008=My favorites
5009=My list
5010=Select source
5011=Local
5012=USB
5013=Online radio
5014=QQ music
5015=Bluetooth
5016=Line input
5017=Revise the name
5018=Single
5019=Random play
5020=List
5021=Has shifted to
5022=Cancel
5023=Delete
5024=Edit
5025=The name of the list are the same.
5026=The name of the list is blank.
5027=Please enter the name of the list.
5028=Add new list
5029=Prompt
5030=Delete the folder or not?
5031=Confirm
5032=The name is blank.
5033=Aadded to the song list
5034=Radio
5035=Select group
5036=Play
5037=Select at least more than 2 media players
5038=Can not select 2 or more than 2 main media players to become a group 
5039=Have not selected the media player
5040=Select to remove the media player
5041=Have not selected to remove the media player
5042=Configuring…
5043=Deleting…
5044=Volume
5045=General volume
5046=Adjust volume
5047="QQ music" has not installed in your cell phone, please proceed in App center.
 
6000=normal
6001=Device status
6002=pcs
6003=Current IR control device
6004=Remote controller has been added
6005=AC
6006=TV
6007=Fan
6008=Set-top box
6009=DVD
6010=Projector
6011=Custom
6012=IR control
6013=Device Management
6014=Add remote controller
6015=Online
6016=Offline
6017=Version number
6018=Please enter the name of the remote controller
6019=Reminder: After the remote controller is created, it can be found and used in Function-Electrical Category{\r\n}
6020=Recommended button
6021=Please enter the button name
6022=Next
6023=Power
6024=Volume+
6025=Volume-
6026=channel+
6027=Channel-
6028=up
6029=down
6030=Left
6031=right
6032=Mute
6034=Confirm
6035=Play
6037=Exit
6038=Menu
6039=Pause
6040=Back
6041=Stop
6042=Homepage
6043=Fast forward
6044=Rewind
6045=Timing
6046=Copy remote control function
6047=Aim at the center of the remote controller and press the same button
6048=Smart remote controller
6049=Add button
6050=*Long press for custom sorting
6051=Done
6052=Added successfully
6053=Can be classified-function-electrical operation and use
6054=Classification
6055=Remote controller name
6056=Region
6057=Continue to add
6058=Electrical
6059=Failed to add
6060=Retry
6061=Match the remote control
6062=Please click the button below
6063=Confirm whether the device is responding
6064=Control failed
6065=Control success
6066=Power on
6067=Mode cooling
6068=Wind speed stroke
6069=Temperature 26℃
6070=Delete device
6071=Modify name
6072=Confirm deletion
6073=Cancel
6074=The remote controller cannot exceed 10 pcs
6075=The area where the remote control belongs:
6076=Edit information
6077=Version upgrade
6078=System is under maintenance~Please try again later~
6079=Failed to get data
6080=This function is temporarily not supported
6081=Select IR brand
6082=Shaking
6083=Low speed
6084=Medium speed
6085=High speed
6086=Auto
6087=Temperature+
6088=Temperature-
6089=Air purifier
6090=Water heater
6091=Product that does not exist
6092=The device does not exist
6093=The device is not online
6094=The gateway device does not exist
 
 
7108=Leak/No Leak
7109=Leak
7110=No leak
7111=Water leaking/no water leaking
7112=Water leaking
7113=No water leaking
7114=Someone/Nobody
7115=Someone
7116=Nobody
7117=Open/Close
7118=On
7119=Close
7120=Anti-dismantling function
7121=Online
7122=Not online
7123=Air quality
7124=Excellent
7125=Good
7126=Poor
7127=Send notification
7128=Notification content
7129=(within 100 characters)
7130=Account selection
7131=App push
7132=Automation
7133=Executed
7134=Target State
7135=Tumble
 
 
6000=Rename
6001=Please enter a name
6002=Xiaodu
6003=aispeech
6004="Unbind requires a third-party APP for operation", "transfer to a third-party APP"
6005=Unbind
6006=Smart speaker
6007=Control content
6008=Failed to upload data
6009=Failed to configure data
6010="There is no speaker yet,", "Please go to the third-party APP to bind the smart speaker."
6011=Modification of remarks is unsuccessful!
6012=Do you want to unbind?
6013=Unbinding...
6014=transfer to third-party APP
6015=Add speakers
 
    
7000=Create automation
7001=Edit automation
7002=If
7003=When it meets the following conditions at the same time
7004=when it meets one of the following conditions
7005=Proceed execution
7006=The following action
7007=Recycle method
7008=Execute once
7009=Every day
7010=Every week
7011=Every month
7012=Save
7013=proceed recommendation
7014=Send notification
7015=Select the condition
7016=Moment
7017=Select the time condition
7018=Hour
7019=Time range
7020=Hour
7021=Minute
7022=Second
7023=Cancel
7024=Sure
7025=*It must execute the automation you set once during the time range you set. 
7026=Start time
7027=End time
7028=Function
7029=Select functional condition
7030=All region
7031=All function
7032=On
7033=Off
7034=Switch
7035=Complete
7036=Add execute
7037=Monday
7038=Tuesday
7039=Wednesday
7040=Thursday
7041=Friday
7042=Saturday
7043=Sunday
7044=Meet the condition
7045=Setting
7046=Name
7047=Change the name
7048=The name of automation has existed.
7049=Delete automation or not?
7050=Add scene
7051=Delay
7052=Fail to save, please try again.
7053=Fail to delete, please try again.
7054=Pause
7055=Brightness
7056=Percentage
7057=Mode
7058=Cooling
7059=Heating
7060=Automatic
7061=Dehumidify
7062=Temperature
7063=Fan speed
7064=Day
7065=Night
7066=Leave
7067=General
7068=Time
7069=Have not set automation, please proceed setting.
7070=Nothing is here.
7071=Start time has not been set, please set.
7072=End time has not been set, please set.
7073=Start time and end time should not be the same.
7074=Start time should not be greater than end time.
7075=The condition should not be blank.
7076=Target should not be blank.
7077=Time has not been set, please set.
7078=Condition or target should not be blank.
7079=The gateway is off-line.
7080=Sunrise/Sunset/Noon
7081=Sunrise
7082=Sunset
7083=Noon
7084=On time
7085=Advance
7086=Minutes
7087=Outdoor change
7088=Select outdoor change condition
7089=Outdoor temperature, humidity, PM2.5 change
7090=Wweather change (Urban weather)
7091=Outdoor environment change
7092=Temperature higher than
7093=Temperature below
7094=Humidity higher than
7095=Humidity below
7096=PM2.5 higher than
7097=PM2.5 below
7098=Sunny day
7099=Cloudy
7100=Tain
7101=*Please set the value in this range (1 ~ 100).
7102=No set value.
7103=Excellent: 0 ~ 35ug/m3
7104=Good: 35 ~ 75ug/m3
7105=Light pollution: 75 ~ 115ug/m3
7106=Moderate pollution: 115 ~ 150ug/m3
7107=Heavy pollution: > 150ug/m3
    
9000=Please sign in with new cell phone number.
9001=Please sign in with new email address.
9002=New cell phone number is revised.
9003=New cell phone number is bound.
9004=New email address is revised.
9005=New email address is bound.
9006=The verification code may be sent later, please wait.
9007=Please wait.
9008=Back
9009=The user who does not want to be named
9010=New password
9011=Enter new password again
9012=Agree
9013=User agreement
9014=Privacy agreement
9015=and
9016=Please read and agree on User Agreement and Privacy Agreement.
9017=Are you sure to log out?
9018=Please select country/region.
9019=Update now
9020=Not now
9021=Country/Region
9022=Server information
9023=Current server:
9024=*The server refers to the database for the cloud, without any necessary, it is not recommended to make data migration.
9025=If data migration is needed, please dial
9026=Function introduction
9027=Complaints
9028=Version update
9029=(please indicate "complaints" in the title, then we will process in priority.)
9030=Copy done
9031=Nothing is here.
9032=Get new version
9033=Latest version
9034=What can I do for you?
9035=Function Issue
9036=Scene Problem
9037=App Support
9038=(Frequently Asked Questions)
9039=Share and function
9040=Alerts
9041=System info
9042=Information Center
9043=Please note that your account number is logged in elsewhere. If it is not made by yourself, please change the password immediately.
9044=Successfully uploaded
9045=Fail to upload
9046=Successfully revised
9047=The password you revised has come into effect, please log in again.
9048=Sign in with the password of account number
9049=Incorrect password for many times, the account number is locked!
9050=Verify the face ID
9051=Fail to save the user's face ID
'
9052=The push notification of registration is available.
9053=The push notification of registration is abnormal.
9054=Numeric password verification
9055=Gesture verification
9056=Year
9057=No regional function
9058=Save or not?
9059=No sharing now
9060=Uses-permission
9061=Find your password by clicking on "Forgot Password", or try again in {0} minute.
9062=Check
9063=You still have {0} times.
9064=Smart speaker
9065=Data management
9066=Remarks
9067=Remarks cannot be blank.
9068=Do you want to unbind?
    
10000=Invalid password, please log in again.
10001=Fail to request server, please try again later.
10002=System maintaining, please try again later.
10003=Fail to log in, please add the residence at first.
10004=The account number has existed.
10005=You send the verification code too frequently, please try again later.
10006=Signature error
10007=System busy, please try again later!
10008=Invalid password for log-in
10009=The user has been disabled.
10010=Original password error
10011=The sub-account number has existed.
10012=The sub-account number has not existed.
10013=It is not allowed to add yourself as member.
10014=The current residence does not belong to this account number.
10015=The name of the residence has existed.
10016=The residence has not existed.
10017=Request error, parameter abnormal!
10018=The number you bound is duplicate.
10019=Please bind the gateway at first.
10020=The gateway does not exist.
10021=The gateway is off-line.
10022=The device is off-line.
10023=Control failure
10024=The scene has existed.
10025=The automation has existed.
10026=Spk does not support this function.
10027=Spk does not support this functional value.
10028=You don't have permission.
10029=The device target is duplicate.
10030=You don't have permission for remote control.
10031=The device should not be blank.
10032=The user does not have permission.
10033=The device does not exist.
 
 
 
[Chinese]
1=登录
2=手机号登录
3=灯光
4=邮箱登录
5=请输入账号
6=请输入密码
7=忘记密码
8=注册
9=验证码登录
10=请等待...
11=关闭
12=获取验证码
13=密码登录
14=注册
15=请输入您的手机号
16=请输入6-13个字符的密码
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=设置密码、手势、指纹或face ID保护您的隐私
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=离开5分钟之后再进入,需要使用对应方式解锁
154=个人中心-安防功能布防/撤防时解锁使用
155=智能门锁功能解锁使用
156=设置解锁方式
157=仅对本机有效
158=密码解锁
159=手势解锁
160=指纹解锁
161=面容ID解锁
162=设置数字密码
163=设置成功
164=设置手势密码
165=请绘制解锁图案
166=至少连接4个点,请重新绘制
167=2次绘制点图案不一致,请重新绘制
168=请再次绘制解锁图案
169=是否开启指纹解锁?
170=是否开启面容ID解锁?
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=PM1.0
223=PM2.5
224=噪音
225=风力
226=CO2
227=TVOC
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=关于ON+
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=MAC错误,远程连接失败。
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=欢迎使用ON+
369=添加新住宅
370=成为家庭成员
371=功能无法使用,请绑定网关
372=无法创建场景,请绑定网关
373=添加楼层失败。
374=住宅数据已被删除,APP将自动切换到另一住宅。
375=网关未连接服务器,无法创建场景。
376=无法输入特殊字符
377=全宅区域
378=变化时间
379=变化速度
380=此处功能暂未开放~
381=重新加载
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=湿度:{0}%    空气:{1}    风速:{2}级
439=实时功耗: {0}kW
440=下一步
441=请选择捕捉状态的区域
442=生成场景
443=自定义布防
444=安防中心
445=全宅布防
446=在家布防
447=假期布防
448=固定布防
449=*不受撤防影响
450=灾害报警
451=24小时不撤防
452=防盗报警
453=报警静音
454=布防信息
455=名称不能为空。
456=画布
457=能耗
458=日期
459=实时能耗
460=本月能耗
461=室外/室内
462=您当前还未添加任何设备
463=请输入设备机上的sn码
464=可以开始使用兆观毫米波了
465=删除设备
466=机顶盒
467=投影仪
468=有人跌倒
469=有人进入
470=防护中
471=毫米波传感器
472=室外
473=扫风
474=上下扫风
475=左右扫风
476=添加住宅
477=摆动
478=模式
479=风速
 
 
1000=室内湿度
1001=童锁
1002=负离子
1003=杀菌
1004=加湿
1005=滤芯复位
1006=灯光
1007=自动模式
1008=手动模式
1009=强劲模式
1010=睡眠模式
1011=定时
1012=选择风速
1013=档
1014=请确认是否已实际重置滤芯并按{0}照说明书要求操作设备进行滤芯{0}寿命重新计时
1015=低档
1016=中档
1017=高档
1018=定时设置
1019=小时
1020=滤芯使用:
1021=空气净化器
1022=当前风速
1023=取消定时
1024=扫地机器人
1025=吸力调节
1026=吸力1档
1027=吸力2档
1028=吸力3档
1029=充电
1030=声音
1031=静音
1032=清扫模式
1033=耗材管理
1034=历史记录
1035=自动清扫
1036=随机清扫
1037=沿墙清扫
1038=螺旋清扫
1039=总清洁面积
1040=总清洁时间
1041=边刷剩余寿命
1042=滚刷剩余寿命
1043=滤网剩余寿命
1044=重置边刷
1045=重置滚刷
1046=重置滤网
1047=是否重置边刷?
1048=是否重置滚刷?
1049=是否重置滤网?
1050=添加设备
1051=mini智能遥控器
1052=添加红外遥控
1053=长按红外遥控器按钮10秒,指示灯蓝色快闪
1054=请确保您的蓝牙已开启并处于可以被搜索状态
1055=下一步
1056=设备搜索中...
1057=没有发现红外遥控器
1058=1、请检查设备是否正常通电{0}2、请检查蓝牙功能是否正常开启{0}3、请检查指示灯是否蓝色快闪状态
1059=重新搜索
1060=连接WiFi
1061=目前只支持2.4G WiFi网络{0}暂不支持带有中文字符的WiFi名称
1062=密码
1063=正在连接中...
1064=请让红外遥控尽量接近WIFI路由器
1065=网络链接中
1066=上传到云
1067=连接成功
1068=1、请检查设备是否正常通电{0}2、请开启蓝牙功能{0}3、并长按按钮10s,指示灯常亮
1069=添加失败
1070=添加成功
1071=可以开始使用红外遥控功能!
1072=开始使用
1073=请打开蓝牙
1074=位置信息(GBS)不可用
1075=网络不可用
1076=选择红外遥控器
1077=新风
1078=当前滤网剩余
1079=节能
1080=通风
1081=1档
1082=2档
1083=3档
1084=风速1档
1085=风速2档
1086=风速3档
1087=一键开锁
1087=Unlock
1088=临时密码开锁
1088=Temp. Password
1089=已连接
1089=Connected
1090=未连接
1090=Disconnected
1091=生成临时密码
1091=Generate
1092=生效时间
1092=Effective time
1093=失效时间
1093=
1094=选择时间
1095=选择日期
1096=Generate
1097=临时密码已经复制
1098=清除当前临时密码?
1099=生效时间必须大于失效时间
1100=开锁方式管理
1101=删除操作将被同步于实体锁上{0}是否还需要删除?
1102=确认删除
1103=修改备注名称
1104=备注名称不能为空
1105=分配至
1106=检测不到可供选择的场景
1107=选择场景
1108=锁已打开
1109=常开
1110=时效性常开设置
1111=常开自动化
1112=打开常开模式
1113=关闭常开模式
1114=编辑
1115=常开模式将于{0}关闭
1116=条件
1117=动作
1118=常开模式
1119=锁
1120=用户
1121=开锁方式
1122=指纹
1123=卡
1124=钥匙
1125=信息类型
1126=开锁信息
1127=报警类信息
1128=设备不在线
1129=第一次使用,请先绑定门锁密码
1130=请输入门锁管理员密码
1131=门锁绑定成功
1132=为了安全,请跳转至个人中心{0}设置个人密码,并应用于门锁开锁
1133=跳转
1134=请绘制图案
1135=设置常开模式后{0}您的门锁将处于打开状态{0}是否继续开启
1136=确认开启
1137=失效设置
1138=常开模式将于{0}小时后失效
1139=请输入失效时间
1140=失效时间不能大于72小时
1141=失效时间不能小于1小时
1142=常开模式关闭设置失效,请重试
1143=管理员身份验证失败,请重新登录
1144=您的住宅将过户给其他HDL账号
1145=请注意:
1146=1.该住宅您的数据(云端数据)将全部转移给新的户主{0}2.过户后,原有的成员将自动解绑该住宅{0}3.新户主账号为有效的HDL账号{0}4.接收方账号与转移方账号不可为同一个账号
1147=确认过户
1148=请输入接收方账号
1149=个人资料
1150=确认过户{0}的管理员账号给账号{1}
1151=目标账号并不存在
1152=不能自己过户给自己
1153=终止
1154=正在过户给用户,请稍后...
1155=用户{0}已经成为住宅行管理员
1156=该住宅的信息将在您的账号中删除
1157=过户失败
1158=请重新尝试
 
 
 
4000=可视对讲
4001=通话记录
4002=*云端照片只保留30天
4003=门口机呼叫
4004=已接听
4005=已开锁
4006=年
4007=来自
4008=呼叫
4009=未开锁
4010=未接听
4011=已拒绝
4012=配置参数有异常!
4013=门禁二维码
4014=临时密码
 
5000=音乐
5001=组合
5002=设置
5003=基础信息
5004=播放器名称
5005=蓝牙名称
5006=区域
5007=歌单
5008=我的最爱
5009=我的列表
5010=选择音源
5011=本地音乐
5012=USB
5013=在线电台
5014=QQ音乐
5015=蓝牙
5016=线路输入
5017=修改名称
5018=单曲播放
5019=随机播放
5020=列表播放
5021=已切换到
5022=取消
5023=删除
5024=编辑
5025=列表名称相同
5026=列表名为空
5027=请输入列表名
5028=添加新的列表
5029=提示
5030=是否确认删除文件夹
5031=确认
5032=名称为空
5033=已添加到歌单:
5034=电台
5035=选择组合
5036=需要播放
5037=至少选中两个以上播放器
5038=不能选中两个或两个以上主播放器进行组合
5039=还没选中播放器
5040=选中解除播放器 
5041=还没有选择解除组播放器
5042=配置中...
5043=解除中...
5044=音量
5045=总音量
5046=调节音量
5047=你手机暂未安装"QQ音乐"{\r\n}请前往手机商场安装
 
 
6000=正常
6001=设备状态
6002=个
6003=当前红外遥控设备
6004=已添加遥控器
6005=空调
6006=电视
6007=风扇
6008=机顶盒
6009=DVD
6010=投影仪
6011=自定义
6012=红外遥控
6013=设备管理
6014=添加遥控器
6015=在线
6016=离线
6017=版本号
6018=请输入遥控器名称
6019=提示:遥控器创建后可在功能-电器分类{\r\n}查找使用
6020=推荐按键
6021=请输入按键名称
6022=下一步
6023=电源
6024=音量+
6025=音量-
6026=频道+
6027=频道-
6028=上
6029=下
6030=左
6031=右
6032=静音
6034=确认
6035=播放
6037=退出
6038=菜单
6039=暂停
6040=返回
6041=停止
6042=主页
6043=快进
6044=快退
6045=定时
6046=复制遥控功能
6047=对准遥控器中心按下相同按键
6048=智能遥控器
6049=添加按键
6050=*长按可进行自定义排序
6051=完成
6052=添加成功
6053=可到分类-功能-电器操作使用
6054=所属分类
6055=遥控器名称
6056=所属区域
6057=继续添加
6058=电器
6059=添加失败
6060=重试
6061=匹配遥控器
6062=请点击以下按钮
6063=确认设备是否有响应
6064=控制失败
6065=控制成功
6066=电源开
6067=模式制冷
6068=风速中风
6069=温度26℃
6070=删除设备
6071=修改名字
6072=确认删除
6073=取消
6074=遥控器不能超过10个
6075=遥控器所属区域:
6076=编辑信息
6077=版本升级
6078=系统维护中~请稍后再试~
6079=获取数据失败
6080=暂时不支持该功能
6081=选择红外品牌
6082=摇头
6083=低速
6084=中速
6085=高速
6086=自动
6087=温度+
6088=温度-
6089=空气净化器
6090=热水器
6091=不存在的产品
6092=设备不存在
6093=设备不在线
6094=网关设备不存在
 
 
 
7000=新建自动化
7001=编辑自动化
7002=如果
7003=同时满足以下条件时
7004=任一满足以下条件时
7005=就执行
7006=以下动作
7007=循环方式
7008=执行一次
7009=每天
7010=每周
7011=每月
7012=保存
7013=执行推送
7014=发送通知
7015=选择条件
7016=时间
7017=选择时间条件
7018=时刻
7019=时间范围
7020=时
7021=分
7022=秒
7023=取消
7024=确定
7025=*在您所设置的时间段内必定会执行一次您所设置的自动化
7026=开始时间
7027=结束时间
7028=功能
7029=选中功能条件
7030=全部区域
7031=全部功能
7032=开
7033=关
7034=开关
7035=完成
7036=添加执行动作
7037=周一
7038=周二
7039=周三
7040=周四
7041=周五
7042=周六
7043=周日
7044=满足条件
7045=设置
7046=名称
7047=修改名称
7048=名称已存在
7049=是否要删除自动化?
7050=添加场景
7051=延时
7052=保存失败,请重试
7053=删除失败,请重试
7054=暂停
7055=亮度
7056=百分比
7057=模式
7058=制冷
7059=制热
7060=自动
7061=除湿
7062=温度
7063=风速
7064=白天
7065=夜晚
7066=离开
7067=一般
7068=时间
7069=暂未设置自动化,请前往设置!
7070=此处空空如也~
7071=开始时间未设置,请设置开始时间。
7072=结束时间未设置,请设置结束时间。
7073=开始时间和结束时间不能一样。
7074=开始时间不能大于结束时间。
7075=条件不能为空。
7076=目标不能为空。
7077=时间未设置,请设置时间。
7078=条件或者目标为空。
7079=网关不在线
7080=日出/日落/正午
7081=日出
7082=日落
7083=正午
7084=正点
7085=提前
7086=分钟
7087=室外变化
7088=选择室外变化条件
7089=室外温、湿度、PM2.5变化
7090=天气变化(城市天气)
7091=室外环境变化
7092=温度高于
7093=温度低于
7094=湿度高于
7095=湿度低于
7096=PM2.5高于
7097=PM2.5低于
7098=晴天
7099=多云
7100=下雨
7101=*请在这个范围(1~100)设置值。
7102=还没有设置值。
7103=优:0~35ug/m³
7104=良:35~75ug/m³
7105=轻度污染:75~115ug/m³
7106=中度污染:115~150ug/m³
7107=重度污染:>150ug/m³
7108=泄漏/无泄漏
7109=泄漏
7110=无泄漏
7111=漏水/无漏水
7112=漏水
7113=无漏水
7114=有人/无人
7115=有人
7116=无人
7117=开启/闭合
7118=开启
7119=闭合
7120=防拆功能
7121=在线
7122=不在线
7123=空气质量
7124=优
7125=良
7126=差
7127=发送通知
7128=通知内容
7129=(100字内)
7130=账号选择
7131=App推送
7132=自动化
7133=已执行
7134=目标状态
7135=跌倒
 
9000=请使用新的手机账号登录APP
9001=请使用新的邮箱账号登录APP
9002=登录手机修改完成
9003=登录手机绑定完成
9004=登录邮箱修改完成
9005=登录邮箱绑定完成
9006=验证码可能会延迟,请再等一会
9007=再等一会
9008=返回
9009=不愿意透露姓名的用户
9010=新密码
9011=再次输入新密码
9012=同意
9013=用户协议
9014=隐私政策
9015=和
9016=请先阅读并同意《用户协议》和《隐私政策》
9017=确认退出登录?
9018=请选择国家/区域
9019=立即更新
9020=以后再说
9021=国家/地区
9022=服务器信息
9023=当前账号服务器所属:
9024=*服务器是您当前云端数据存储的所在区域,无需必要,我们不建议发生迁移
9025=若需要迁移服务器,请拨打
9026=功能介绍
9027=投诉
9028=版本更新
9029=(标题请带投诉字样,我们会优先处理)
9030=复制成功
9031=空空如也
9032=发现新版本
9033=已经是最新版本
9034=我们能为你提供什么帮助?
9035=功能问题
9036=场景问题
9037=APP使用辅助
9038=常见问题
9039=分享与功能
9040=报警类
9041=系统信息
9042=信息中心
9043=您的账号已在别处登录,如果不是您本人操作,请立即修改密码!
9044=上传成功
9045=上传失败
9046=修改成功!
9047=您的密码已经修改生效,请重新登录
9048=使用账号密码登录
9049=密码错误次数过多,账号被锁定!
9050=验证面容ID
9051=保存用户头像失败
9052=推送注册正常
9053=推送注册异常
9054=数字密码验证
9055=绘制手势验证
9056=年
9057=无区域功能
9058=是否需要保存
9059=暂无分享
9060=使用权限
9061=请通过忘记密码找回密码或{0}分钟后重试.
9062=查看
9063=还有{0}次机会。
9064=智能音箱
9065=数据管理
9066=备注
9067=备注不能为空
9068=是否解除绑定?
 
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=spk不支持该功能
10027=spk功能不支持此功能值
10028=没有权限
10029=设备目标重复
10030=没有远程控制权限
10031=设备不能为空
10032=用户没有设备的权限
10033=设备不存在