app_localizations.dart
127 KB
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
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:intl/intl.dart' as intl;
import 'app_localizations_en.dart';
import 'app_localizations_zh.dart';
// ignore_for_file: type=lint
/// Callers can lookup localized strings with an instance of AppLocalizations
/// returned by `AppLocalizations.of(context)`.
///
/// Applications need to include `AppLocalizations.delegate()` in their app's
/// `localizationDelegates` list, and the locales they support in the app's
/// `supportedLocales` list. For example:
///
/// ```dart
/// import 'gen/app_localizations.dart';
///
/// return MaterialApp(
/// localizationsDelegates: AppLocalizations.localizationsDelegates,
/// supportedLocales: AppLocalizations.supportedLocales,
/// home: MyApplicationHome(),
/// );
/// ```
///
/// ## Update pubspec.yaml
///
/// Please make sure to update your pubspec.yaml to include the following
/// packages:
///
/// ```yaml
/// dependencies:
/// # Internationalization support.
/// flutter_localizations:
/// sdk: flutter
/// intl: any # Use the pinned version from flutter_localizations
///
/// # Rest of dependencies
/// ```
///
/// ## iOS Applications
///
/// iOS applications define key application metadata, including supported
/// locales, in an Info.plist file that is built into the application bundle.
/// To configure the locales supported by your app, you’ll need to edit this
/// file.
///
/// First, open your project’s ios/Runner.xcworkspace Xcode workspace file.
/// Then, in the Project Navigator, open the Info.plist file under the Runner
/// project’s Runner folder.
///
/// Next, select the Information Property List item, select Add Item from the
/// Editor menu, then select Localizations from the pop-up menu.
///
/// Select and expand the newly-created Localizations item then, for each
/// locale your application supports, add a new item and select the locale
/// you wish to add from the pop-up menu in the Value field. This list should
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
/// property.
abstract class AppLocalizations {
AppLocalizations(String locale)
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
final String localeName;
static AppLocalizations? of(BuildContext context) {
return Localizations.of<AppLocalizations>(context, AppLocalizations);
}
static const LocalizationsDelegate<AppLocalizations> delegate =
_AppLocalizationsDelegate();
/// A list of this localizations delegate along with the default localizations
/// delegates.
///
/// Returns a list of localizations delegates containing this delegate along with
/// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
/// and GlobalWidgetsLocalizations.delegate.
///
/// Additional delegates can be added by appending to this list in
/// MaterialApp. This list does not have to be used at all if a custom list
/// of delegates is preferred or required.
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
<LocalizationsDelegate<dynamic>>[
delegate,
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
];
/// A list of this localizations delegate's supported locales.
static const List<Locale> supportedLocales = <Locale>[
Locale('en'),
Locale('zh')
];
/// App名称
///
/// In zh, this message translates to:
/// **'Double Feel'**
String get appName;
/// No description provided for @confirm.
///
/// In zh, this message translates to:
/// **'确认'**
String get confirm;
/// No description provided for @cancel.
///
/// In zh, this message translates to:
/// **'取消'**
String get cancel;
/// No description provided for @continueButton.
///
/// In zh, this message translates to:
/// **'继续'**
String get continueButton;
/// No description provided for @loading.
///
/// In zh, this message translates to:
/// **'加载中...'**
String get loading;
/// No description provided for @success.
///
/// In zh, this message translates to:
/// **'成功'**
String get success;
/// No description provided for @error.
///
/// In zh, this message translates to:
/// **'错误'**
String get error;
/// No description provided for @loginTitle.
///
/// In zh, this message translates to:
/// **'登录'**
String get loginTitle;
/// No description provided for @username.
///
/// In zh, this message translates to:
/// **'用户名'**
String get username;
/// No description provided for @password.
///
/// In zh, this message translates to:
/// **'密码'**
String get password;
/// No description provided for @loginBtn.
///
/// In zh, this message translates to:
/// **'立即登录'**
String get loginBtn;
/// No description provided for @usernameEmptyHint.
///
/// In zh, this message translates to:
/// **'用户名不能为空'**
String get usernameEmptyHint;
/// No description provided for @passwordEmptyHint.
///
/// In zh, this message translates to:
/// **'密码不能为空'**
String get passwordEmptyHint;
/// No description provided for @homeTitle.
///
/// In zh, this message translates to:
/// **'首页'**
String get homeTitle;
/// No description provided for @tabToday.
///
/// In zh, this message translates to:
/// **'今日'**
String get tabToday;
/// No description provided for @tabTrend.
///
/// In zh, this message translates to:
/// **'趋势'**
String get tabTrend;
/// No description provided for @tabFriends.
///
/// In zh, this message translates to:
/// **'好友'**
String get tabFriends;
/// No description provided for @tabMy.
///
/// In zh, this message translates to:
/// **'我的'**
String get tabMy;
/// No description provided for @switchLanguage.
///
/// In zh, this message translates to:
/// **'切换语言'**
String get switchLanguage;
/// No description provided for @settings.
///
/// In zh, this message translates to:
/// **'设置'**
String get settings;
/// No description provided for @onboardingIntroTitle.
///
/// In zh, this message translates to:
/// **'DoubleFeel 是专为 Apple Watch 打造的健康陪伴app'**
String get onboardingIntroTitle;
/// No description provided for @onboardingIntroBody.
///
/// In zh, this message translates to:
/// **'我们希望可以帮助你\n<em>关注自己的身心变化,也让爱你的人</em>及时发现你的<em>疲惫与需要</em>'**
String get onboardingIntroBody;
/// No description provided for @onboardingStateQuestion.
///
/// In zh, this message translates to:
/// **'请问以下哪些描述,经常发生在你身上?'**
String get onboardingStateQuestion;
/// No description provided for @onboardingStateStressAnxiety.
///
/// In zh, this message translates to:
/// **'经常压力焦虑'**
String get onboardingStateStressAnxiety;
/// No description provided for @onboardingStateTired.
///
/// In zh, this message translates to:
/// **'容易感到疲惫'**
String get onboardingStateTired;
/// No description provided for @onboardingStatePoorRest.
///
/// In zh, this message translates to:
/// **'睡醒但感觉没休息好'**
String get onboardingStatePoorRest;
/// No description provided for @onboardingStateNeedStimulants.
///
/// In zh, this message translates to:
/// **'需要摄入烟、酒、咖啡等刺激物保持精神'**
String get onboardingStateNeedStimulants;
/// No description provided for @onboardingStateNone.
///
/// In zh, this message translates to:
/// **'以上都没有'**
String get onboardingStateNone;
/// No description provided for @onboardingStressGoalQuestion.
///
/// In zh, this message translates to:
/// **'关于压力,你想通过了解它,获得什么信息?'**
String get onboardingStressGoalQuestion;
/// No description provided for @onboardingStressGoalSource.
///
/// In zh, this message translates to:
/// **'理解压力来源'**
String get onboardingStressGoalSource;
/// No description provided for @onboardingStressGoalReminder.
///
/// In zh, this message translates to:
/// **'有压力及时被提醒'**
String get onboardingStressGoalReminder;
/// No description provided for @onboardingStressGoalLovedOnes.
///
/// In zh, this message translates to:
/// **'让关心自己的人知道压力情况'**
String get onboardingStressGoalLovedOnes;
/// No description provided for @onboardingStressGoalRelax.
///
/// In zh, this message translates to:
/// **'理解压力,让自己变轻松'**
String get onboardingStressGoalRelax;
/// No description provided for @onboardingStressGoalBodyTalk.
///
/// In zh, this message translates to:
/// **'与身体可以更好地对话'**
String get onboardingStressGoalBodyTalk;
/// No description provided for @onboardingReliefQuestion.
///
/// In zh, this message translates to:
/// **'以下哪种方式你认为可以缓解压力?'**
String get onboardingReliefQuestion;
/// No description provided for @onboardingReliefSleep.
///
/// In zh, this message translates to:
/// **'规律的睡眠'**
String get onboardingReliefSleep;
/// No description provided for @onboardingReliefCare.
///
/// In zh, this message translates to:
/// **'亲近的人对自己的关心'**
String get onboardingReliefCare;
/// No description provided for @onboardingReliefExercise.
///
/// In zh, this message translates to:
/// **'多运动'**
String get onboardingReliefExercise;
/// No description provided for @onboardingReliefSun.
///
/// In zh, this message translates to:
/// **'多晒太阳'**
String get onboardingReliefSun;
/// No description provided for @onboardingReliefWater.
///
/// In zh, this message translates to:
/// **'多喝水'**
String get onboardingReliefWater;
/// No description provided for @onboardingReliefMeditation.
///
/// In zh, this message translates to:
/// **'正念冥想'**
String get onboardingReliefMeditation;
/// No description provided for @onboardingKeyDataTitle.
///
/// In zh, this message translates to:
/// **'你知道吗?'**
String get onboardingKeyDataTitle;
/// No description provided for @onboardingKeyDataSubtitle.
///
/// In zh, this message translates to:
/// **'每个人都有一项神奇且关键的身体数据,可以帮助我们:'**
String get onboardingKeyDataSubtitle;
/// No description provided for @onboardingKeyDataStress.
///
/// In zh, this message translates to:
/// **'监测压力'**
String get onboardingKeyDataStress;
/// No description provided for @onboardingKeyDataFatigue.
///
/// In zh, this message translates to:
/// **'避免过劳与身体疲惫'**
String get onboardingKeyDataFatigue;
/// No description provided for @onboardingKeyDataRecovery.
///
/// In zh, this message translates to:
/// **'衡量运动恢复'**
String get onboardingKeyDataRecovery;
/// No description provided for @onboardingKeyDataHabits.
///
/// In zh, this message translates to:
/// **'养成健康生活习惯'**
String get onboardingKeyDataHabits;
/// No description provided for @onboardingKeyDataLovedOnes.
///
/// In zh, this message translates to:
/// **'让重要的人及时关心你的状态'**
String get onboardingKeyDataLovedOnes;
/// No description provided for @onboardingTellMeWhatItIs.
///
/// In zh, this message translates to:
/// **'告诉我Ta是!'**
String get onboardingTellMeWhatItIs;
/// No description provided for @onboardingHrvTitle.
///
/// In zh, this message translates to:
/// **'就是HRV心率变异性'**
String get onboardingHrvTitle;
/// No description provided for @onboardingHrvSubtitle.
///
/// In zh, this message translates to:
/// **'它能帮助我们衡量整体的压力和健康状态'**
String get onboardingHrvSubtitle;
/// No description provided for @onboardingHrvDescription.
///
/// In zh, this message translates to:
/// **'心率变异性(HRV, Heart Rate Variability)即心跳之间间隔时间的微小变化,反映了自主神经系统活动和身体对压力的反应能力'**
String get onboardingHrvDescription;
/// No description provided for @onboardingTellMeMore.
///
/// In zh, this message translates to:
/// **'展开说说'**
String get onboardingTellMeMore;
/// No description provided for @onboardingResearchTitle.
///
/// In zh, this message translates to:
/// **'诸多科学研究表明,HRV变化与我们的身心感受有密切关系'**
String get onboardingResearchTitle;
/// No description provided for @onboardingResearchFatigue.
///
/// In zh, this message translates to:
/// **'身体疲惫'**
String get onboardingResearchFatigue;
/// No description provided for @onboardingResearchEnergy.
///
/// In zh, this message translates to:
/// **'元气满满'**
String get onboardingResearchEnergy;
/// No description provided for @onboardingResearchHrvDown.
///
/// In zh, this message translates to:
/// **'HRV下降'**
String get onboardingResearchHrvDown;
/// No description provided for @onboardingResearchHrvUp.
///
/// In zh, this message translates to:
/// **'HRV上升'**
String get onboardingResearchHrvUp;
/// No description provided for @onboardingHealthPermissionTitle.
///
/// In zh, this message translates to:
/// **'开启健康授权提醒、统计你的压力'**
String get onboardingHealthPermissionTitle;
/// No description provided for @onboardingHealthPermissionBody.
///
/// In zh, this message translates to:
/// **'DoubleFeel需要连接健康穿戴设备数据,以提醒、统计压力时刻、提供建议。'**
String get onboardingHealthPermissionBody;
/// No description provided for @onboardingHealthPermissionPrivacy.
///
/// In zh, this message translates to:
/// **'请放心,你的健康数据仅储存在本地,我们不上传任何相关数据。'**
String get onboardingHealthPermissionPrivacy;
/// No description provided for @onboardingNotificationTitle.
///
/// In zh, this message translates to:
/// **'开启通知'**
String get onboardingNotificationTitle;
/// No description provided for @onboardingNotificationSubtitle.
///
/// In zh, this message translates to:
/// **'及时了解身体每一次异动'**
String get onboardingNotificationSubtitle;
/// No description provided for @onboardingNotificationBody.
///
/// In zh, this message translates to:
/// **'AppleWatch数据更新后会及时提醒你,帮助你及时行动,改善压力状态'**
String get onboardingNotificationBody;
/// No description provided for @onboardingMemberTitle.
///
/// In zh, this message translates to:
/// **'获得年度会员优惠'**
String get onboardingMemberTitle;
/// No description provided for @onboardingMemberBody.
///
/// In zh, this message translates to:
/// **'开启压力预警与健康陪伴之旅,让爱与关心从不缺席'**
String get onboardingMemberBody;
/// No description provided for @onboardingMemberAllOptions.
///
/// In zh, this message translates to:
/// **'查看所有购买选项'**
String get onboardingMemberAllOptions;
/// No description provided for @healthCompanionIsNowAvailable.
///
/// In zh, this message translates to:
/// **'健康陪伴已开启'**
String get healthCompanionIsNowAvailable;
/// No description provided for @youCanNowViewEachOtherSHrvStressLevelsAndSleepPatternsAndReachOutToCheckInWhenTheOtherPersonSeemsTired.
///
/// In zh, this message translates to:
/// **'你们现在可以查看彼此的 HRV、压力与睡眠变化,并在对方疲惫时及时送上关心。'**
String
get youCanNowViewEachOtherSHrvStressLevelsAndSleepPatternsAndReachOutToCheckInWhenTheOtherPersonSeemsTired;
/// No description provided for @bindPartnerTitle.
///
/// In zh, this message translates to:
/// **'添加亲密联系人\n多一个人关注你的健康'**
String get bindPartnerTitle;
/// No description provided for @bindPartnerMyId.
///
/// In zh, this message translates to:
/// **'我的ID'**
String get bindPartnerMyId;
/// No description provided for @bindPartnerShareMyCode.
///
/// In zh, this message translates to:
/// **'分享我的码'**
String get bindPartnerShareMyCode;
/// No description provided for @bindPartnerOr.
///
/// In zh, this message translates to:
/// **'或'**
String get bindPartnerOr;
/// No description provided for @bindPartnerContactId.
///
/// In zh, this message translates to:
/// **'亲密联系人的ID'**
String get bindPartnerContactId;
/// No description provided for @bindPartnerInputHint.
///
/// In zh, this message translates to:
/// **'请输入'**
String get bindPartnerInputHint;
/// No description provided for @bindPartnerSkip.
///
/// In zh, this message translates to:
/// **'下次再说'**
String get bindPartnerSkip;
/// No description provided for @onboardingResearchStress.
///
/// In zh, this message translates to:
/// **'压力大'**
String get onboardingResearchStress;
/// No description provided for @onboardingResearchRelaxed.
///
/// In zh, this message translates to:
/// **'状态轻松'**
String get onboardingResearchRelaxed;
/// No description provided for @onboardingResearchSick.
///
/// In zh, this message translates to:
/// **'感冒生病'**
String get onboardingResearchSick;
/// No description provided for @onboardingResearchHealthy.
///
/// In zh, this message translates to:
/// **'身体倍儿棒'**
String get onboardingResearchHealthy;
/// No description provided for @onboardingResearchPoorSleep.
///
/// In zh, this message translates to:
/// **'睡眠不足'**
String get onboardingResearchPoorSleep;
/// No description provided for @onboardingResearchGoodSleep.
///
/// In zh, this message translates to:
/// **'睡眠充足'**
String get onboardingResearchGoodSleep;
/// 登录页 slogan
///
/// In zh, this message translates to:
/// **'开启压力预警与健康陪伴之旅\n让爱与关心从不缺席'**
String get loginSlogan;
/// 手机号登录按钮
///
/// In zh, this message translates to:
/// **'手机号登录/注册'**
String get loginWithPhone;
/// Apple登录按钮
///
/// In zh, this message translates to:
/// **'通过Apple登录'**
String get loginWithApple;
/// 上次使用标签
///
/// In zh, this message translates to:
/// **'上次使用'**
String get loginLastUsed;
/// 协议勾选前缀
///
/// In zh, this message translates to:
/// **'点击上方即表示你同意'**
String get loginAgreementPrefix;
/// 用户协议链接
///
/// In zh, this message translates to:
/// **'用户协议'**
String get loginTerms;
/// 协议连接词
///
/// In zh, this message translates to:
/// **'与'**
String get loginAgreementAnd;
/// 隐私协议链接
///
/// In zh, this message translates to:
/// **'隐私协议'**
String get loginPrivacy;
/// 手机号登录页打招呼
///
/// In zh, this message translates to:
/// **'Hello~'**
String get phoneLoginHello;
/// 手机号登录页欢迎语
///
/// In zh, this message translates to:
/// **'欢迎来到 Double Feel'**
String get phoneLoginWelcome;
/// 手机号输入框占位符
///
/// In zh, this message translates to:
/// **'请输入手机号'**
String get phoneLoginPhoneHint;
/// 发送验证码按钮(首次)
///
/// In zh, this message translates to:
/// **'发送验证码'**
String get phoneLoginSendCode;
/// 发送验证码按钮(请求中)
///
/// In zh, this message translates to:
/// **'发送中'**
String get phoneLoginSending;
/// 倒计时文案
///
/// In zh, this message translates to:
/// **'已发送 {countdown}s'**
String phoneLoginSentCountdown(int countdown);
/// 倒计时结束后重新发送按钮
///
/// In zh, this message translates to:
/// **'重新发送'**
String get phoneLoginResend;
/// 验证码输入框占位符
///
/// In zh, this message translates to:
/// **'请输入验证码'**
String get phoneLoginCodeHint;
/// 自动注册提示
///
/// In zh, this message translates to:
/// **'未注册的手机号验证通过后将自动注册'**
String get phoneLoginAutoRegisterHint;
/// 登录按钮 loading 文案
///
/// In zh, this message translates to:
/// **'登录中...'**
String get phoneLoginLoggingIn;
/// 未勾选协议时的 toast
///
/// In zh, this message translates to:
/// **'请先阅读并同意《用户协议》与《隐私协议》'**
String get loginAgreeToTermsToast;
/// 手机号格式错误 toast
///
/// In zh, this message translates to:
/// **'手机号格式错误'**
String get phoneLoginInvalidPhone;
/// 验证码发送成功 toast
///
/// In zh, this message translates to:
/// **'发送成功'**
String get phoneLoginCodeSentSuccess;
/// 验证码格式错误 toast
///
/// In zh, this message translates to:
/// **'验证码格式错误'**
String get phoneLoginInvalidCode;
/// 今日页健康数据授权卡片标题
///
/// In zh, this message translates to:
/// **'正在获取健康数据'**
String get todayHealthDataAuthTitle;
/// 今日页健康数据授权卡片说明
///
/// In zh, this message translates to:
/// **'DoubleFeel 需要访问你的 Apple 健康数据,以提供压力提醒、实时压力统计和健康建议。\n如果尚未授权,请点击下方完成授权;如果已经授权,首次同步大量健康数据可能需要等待几分钟,请稍后再试。'**
String get todayHealthDataAuthDescription;
/// 今日页健康数据授权卡片按钮文案
///
/// In zh, this message translates to:
/// **'授权访问健康数据'**
String get todayHealthDataAuthAction;
/// No description provided for @measureYourHrvNow.
///
/// In zh, this message translates to:
/// **'立即测量HRV'**
String get measureYourHrvNow;
/// No description provided for @todayBottomSheetGotIt.
///
/// In zh, this message translates to:
/// **'我知道了'**
String get todayBottomSheetGotIt;
/// No description provided for @todayFaqTitle.
///
/// In zh, this message translates to:
/// **'常见问题'**
String get todayFaqTitle;
/// No description provided for @todayFaqSectionTitle.
///
/// In zh, this message translates to:
/// **'DoubleFeel 常见问题'**
String get todayFaqSectionTitle;
/// No description provided for @todayFaqLinkNoData.
///
/// In zh, this message translates to:
/// **'APP或表盘有没有数据怎么办?'**
String get todayFaqLinkNoData;
/// No description provided for @todayFaqLinkHrvRealtimeUpdate.
///
/// In zh, this message translates to:
/// **'HRV数据如何实时更新?'**
String get todayFaqLinkHrvRealtimeUpdate;
/// No description provided for @todayFaqLinkWatchNoStatusNotification.
///
/// In zh, this message translates to:
/// **'手表为什么无法收到状态通知?'**
String get todayFaqLinkWatchNoStatusNotification;
/// No description provided for @todayFaqLinkWatchNoStatusAndInteractionNotification.
///
/// In zh, this message translates to:
/// **'手表为什么无法收到状态和互动通知?'**
String get todayFaqLinkWatchNoStatusAndInteractionNotification;
/// No description provided for @todayFaqLinkWatchFaceDataDelay.
///
/// In zh, this message translates to:
/// **'手表表盘数据不更新或者有延迟?'**
String get todayFaqLinkWatchFaceDataDelay;
/// No description provided for @todayFaqLinkWatchFaceBlackScreen.
///
/// In zh, this message translates to:
/// **'手表表盘为什么会出现黑屏?'**
String get todayFaqLinkWatchFaceBlackScreen;
/// No description provided for @todayStressStatusTitle.
///
/// In zh, this message translates to:
/// **'综合压力状态说明'**
String get todayStressStatusTitle;
/// No description provided for @todayHrvPrincipleTitle.
///
/// In zh, this message translates to:
/// **'HRV测量原理'**
String get todayHrvPrincipleTitle;
/// No description provided for @todayRealtimeStressTitle.
///
/// In zh, this message translates to:
/// **'实时压力原理'**
String get todayRealtimeStressTitle;
/// No description provided for @todayStressStatusOverload.
///
/// In zh, this message translates to:
/// **'压力过载'**
String get todayStressStatusOverload;
/// No description provided for @todayStressStatusCaution.
///
/// In zh, this message translates to:
/// **'注意压力'**
String get todayStressStatusCaution;
/// No description provided for @todayStressStatusNormal.
///
/// In zh, this message translates to:
/// **'状态正常'**
String get todayStressStatusNormal;
/// No description provided for @todayStressStatusExcellent.
///
/// In zh, this message translates to:
/// **'状态优秀'**
String get todayStressStatusExcellent;
/// No description provided for @todayStressStatusInsufficientData.
///
/// In zh, this message translates to:
/// **'数据不足'**
String get todayStressStatusInsufficientData;
/// No description provided for @todayStressStatusOverloadDescription.
///
/// In zh, this message translates to:
/// **'当前 HRV 明显低于你的长期平均水平,可能意味着身体疲劳、压力过高或恢复不足。建议及时休息。'**
String get todayStressStatusOverloadDescription;
/// No description provided for @todayStressStatusCautionDescription.
///
/// In zh, this message translates to:
/// **'当前 HRV 低于正常范围,身体可能正在积累压力,需要注意作息与恢复。'**
String get todayStressStatusCautionDescription;
/// No description provided for @todayStressStatusNormalDescription.
///
/// In zh, this message translates to:
/// **'当前身体状态处于你的正常波动范围内。'**
String get todayStressStatusNormalDescription;
/// No description provided for @todayStressStatusExcellentDescription.
///
/// In zh, this message translates to:
/// **'当前 HRV 高于近期平均水平,代表身体恢复与整体状态较好。'**
String get todayStressStatusExcellentDescription;
/// No description provided for @todayStressStatusInsufficientDataDescription.
///
/// In zh, this message translates to:
/// **'当前可用数据不足,暂时无法准确判断压力状态。'**
String get todayStressStatusInsufficientDataDescription;
/// No description provided for @todayHrvMeasurementIntro.
///
/// In zh, this message translates to:
/// **'AppleWatch默认每2-5小时测量一次HRV,如果你希望立即手动进行测量,可以参考以下方法:'**
String get todayHrvMeasurementIntro;
/// No description provided for @todayHrvMeasurementStep1.
///
/// In zh, this message translates to:
/// **'1、戴紧AppleWatch,坐下来,保持心境平和'**
String get todayHrvMeasurementStep1;
/// No description provided for @todayHrvMeasurementStep2.
///
/// In zh, this message translates to:
/// **'2、打开AppleWatch上的「正念」里的「呼吸」'**
String get todayHrvMeasurementStep2;
/// No description provided for @todayHrvMeasurementStep3.
///
/// In zh, this message translates to:
/// **'3、保持平稳的呼吸,等待1-3分钟'**
String get todayHrvMeasurementStep3;
/// No description provided for @todayHrvMeasurementStep4.
///
/// In zh, this message translates to:
/// **'4、完成呼吸后,锁屏一次再解锁你的iPhone'**
String get todayHrvMeasurementStep4;
/// No description provided for @todayHrvMeasurementStep5.
///
/// In zh, this message translates to:
/// **'5、等待一分钟左右,DoubleFeel会收到你的数据并展示'**
String get todayHrvMeasurementStep5;
/// No description provided for @todayHrvMeasurementHint.
///
/// In zh, this message translates to:
/// **'提示:数据源来自AppleWatch,在测量之后可能存在延迟或是数据未能同步的情况。如若出现上述情况,请重新测量并等待数据读取。'**
String get todayHrvMeasurementHint;
/// No description provided for @todayHrvMeasurementWarning.
///
/// In zh, this message translates to:
/// **'注意:需打开健康里的权限,同时关闭省电模式。'**
String get todayHrvMeasurementWarning;
/// No description provided for @todayStressStatusWhatTitle.
///
/// In zh, this message translates to:
/// **'什么是综合压力状态?'**
String get todayStressStatusWhatTitle;
/// No description provided for @todayStressStatusWhatDescription1.
///
/// In zh, this message translates to:
/// **'DoubleFeel 会结合你过去 30 天的 HRV(心率变异性)、静息心率以及当天的身体状态变化,综合评估你的整体压力水平。'**
String get todayStressStatusWhatDescription1;
/// No description provided for @todayStressStatusWhatDescription2.
///
/// In zh, this message translates to:
/// **'由于 HRV 会随着情绪、运动、睡眠和疲劳不断波动,单次数据参考意义有限,因此我们更建议关注一整天的综合压力状态,让结果更稳定、更有参考价值。综合压力不仅能帮助你了解自己的身体状态,也能让亲密联系人更及时地关注你的变化。'**
String get todayStressStatusWhatDescription2;
/// No description provided for @todayStressStatusWhyHrvTitle.
///
/// In zh, this message translates to:
/// **'为什么要参考 HRV(心率变异性)?'**
String get todayStressStatusWhyHrvTitle;
/// No description provided for @todayStressStatusWhyHrvDescription.
///
/// In zh, this message translates to:
/// **'HRV 是衡量身体压力与恢复能力的重要指标。'**
String get todayStressStatusWhyHrvDescription;
/// No description provided for @todayStressStatusUsually.
///
/// In zh, this message translates to:
/// **'通常来说:'**
String get todayStressStatusUsually;
/// No description provided for @todayStressStatusHrvHigher.
///
/// In zh, this message translates to:
/// **'· HRV 越高,代表身体恢复状态越好'**
String get todayStressStatusHrvHigher;
/// No description provided for @todayStressStatusHrvLower.
///
/// In zh, this message translates to:
/// **'· HRV 越低,可能意味着疲劳、压力或睡眠不足'**
String get todayStressStatusHrvLower;
/// No description provided for @todayStressStatusHrvChangesFast.
///
/// In zh, this message translates to:
/// **'· HRV 变化较快,更适合观察短时间内的身体状态变化。'**
String get todayStressStatusHrvChangesFast;
/// No description provided for @todayStressStatusAppWatchDifferenceTitle.
///
/// In zh, this message translates to:
/// **'手机 App 与 Apple Watch 显示的压力状态有什么区别?'**
String get todayStressStatusAppWatchDifferenceTitle;
/// No description provided for @todayStressStatusAppWatchDifferenceApp.
///
/// In zh, this message translates to:
/// **'手机 App 首页显示的是当天的综合压力状态,会综合分析 HRV、静息心率与整体趋势。'**
String get todayStressStatusAppWatchDifferenceApp;
/// No description provided for @todayStressStatusAppWatchDifferenceWatch.
///
/// In zh, this message translates to:
/// **'Apple Watch 显示的是最近一次的实时压力状态,更适合快速查看当前身体变化。'**
String get todayStressStatusAppWatchDifferenceWatch;
/// No description provided for @todayStressStatusWaitingDataTitle.
///
/// In zh, this message translates to:
/// **'为什么会出现“等待数据”?'**
String get todayStressStatusWaitingDataTitle;
/// No description provided for @todayStressStatusWaitingDataDescription1.
///
/// In zh, this message translates to:
/// **'“等待数据”代表当前采集到的数据量不足,暂时无法生成可靠的压力评估。'**
String get todayStressStatusWaitingDataDescription1;
/// No description provided for @todayStressStatusWaitingDataDescription2.
///
/// In zh, this message translates to:
/// **'请继续佩戴 Apple Watch,等待系统自动采集数据。'**
String get todayStressStatusWaitingDataDescription2;
/// No description provided for @todayStressStatusWaitingDataReasonsIntro.
///
/// In zh, this message translates to:
/// **'可能原因包括:'**
String get todayStressStatusWaitingDataReasonsIntro;
/// No description provided for @todayStressStatusWaitingDataReason1.
///
/// In zh, this message translates to:
/// **'1. HRV 数据采样不足'**
String get todayStressStatusWaitingDataReason1;
/// No description provided for @todayStressStatusWaitingDataReason2.
///
/// In zh, this message translates to:
/// **'2. 缺少静息心率数据'**
String get todayStressStatusWaitingDataReason2;
/// No description provided for @todayStressStatusWaitingDataReason3.
///
/// In zh, this message translates to:
/// **'3. Apple Watch 佩戴时间较短'**
String get todayStressStatusWaitingDataReason3;
/// No description provided for @todayStressStatusWaitingDataReason4.
///
/// In zh, this message translates to:
/// **'4. Apple Health 权限未开启'**
String get todayStressStatusWaitingDataReason4;
/// No description provided for @todayHrvPrincipleHowMeasureTitle.
///
/// In zh, this message translates to:
/// **'DoubleFeel 如何测量压力状态?'**
String get todayHrvPrincipleHowMeasureTitle;
/// No description provided for @todayHrvPrincipleHowMeasureDescription1.
///
/// In zh, this message translates to:
/// **'当你正常佩戴 Apple Watch 时,系统会自动采集你的心率数据,并同步至 Apple Health。'**
String get todayHrvPrincipleHowMeasureDescription1;
/// No description provided for @todayHrvPrincipleHowMeasureDescription2.
///
/// In zh, this message translates to:
/// **'DoubleFeel 会基于这些数据计算 HRV(心率变异性)相关指标,用于评估你的身体压力与恢复状态。'**
String get todayHrvPrincipleHowMeasureDescription2;
/// No description provided for @todayHrvPrincipleHowMeasureDescription3.
///
/// In zh, this message translates to:
/// **'HRV 对压力、疲劳、睡眠、情绪与身体恢复都非常敏感,因此它能够帮助我们更早发现身体状态变化。'**
String get todayHrvPrincipleHowMeasureDescription3;
/// No description provided for @todayHrvPrincipleHowMeasureDescription4.
///
/// In zh, this message translates to:
/// **'为了让结果更准确,DoubleFeel 会将你当前的 HRV 状态与过去 30 天的个人平均水平进行对比,而不是直接与其他人比较。'**
String get todayHrvPrincipleHowMeasureDescription4;
/// No description provided for @todayRealtimeStressWhatTitle.
///
/// In zh, this message translates to:
/// **'什么是实时压力?'**
String get todayRealtimeStressWhatTitle;
/// No description provided for @todayRealtimeStressWhatDescription1.
///
/// In zh, this message translates to:
/// **'实时压力是 DoubleFeel 根据你当前的 HRV、心率状态与个人历史数据变化,动态生成的身体压力指标。'**
String get todayRealtimeStressWhatDescription1;
/// No description provided for @todayRealtimeStressWhatDescription2.
///
/// In zh, this message translates to:
/// **'压力值越高,代表你的身体状态相比平时偏离越明显,可能正处于疲劳、恢复不足或高压力状态。'**
String get todayRealtimeStressWhatDescription2;
/// No description provided for @todayRealtimeStressWhatDescription3.
///
/// In zh, this message translates to:
/// **'它能够帮助你更快发现身体变化,并及时调整休息、运动与生活节奏。'**
String get todayRealtimeStressWhatDescription3;
/// No description provided for @todayRealtimeStressDivisionTitle.
///
/// In zh, this message translates to:
/// **'实时压力如何划分?'**
String get todayRealtimeStressDivisionTitle;
/// No description provided for @todayRealtimeStressDivisionIntro.
///
/// In zh, this message translates to:
/// **'实时压力以百分比形式展示:'**
String get todayRealtimeStressDivisionIntro;
/// No description provided for @todayRealtimeStressExcellentRange.
///
/// In zh, this message translates to:
/// **'状态优秀:1%~20%'**
String get todayRealtimeStressExcellentRange;
/// No description provided for @todayRealtimeStressNormalRange.
///
/// In zh, this message translates to:
/// **'状态正常:21%~60%'**
String get todayRealtimeStressNormalRange;
/// No description provided for @todayRealtimeStressCautionRange.
///
/// In zh, this message translates to:
/// **'注意压力:61%~80%'**
String get todayRealtimeStressCautionRange;
/// No description provided for @todayRealtimeStressOverloadRange.
///
/// In zh, this message translates to:
/// **'压力过载:81%~100%'**
String get todayRealtimeStressOverloadRange;
/// No description provided for @todayRealtimeStressExcellentDescription.
///
/// In zh, this message translates to:
/// **'身体恢复状态较好,整体较放松。'**
String get todayRealtimeStressExcellentDescription;
/// No description provided for @todayRealtimeStressNormalDescription.
///
/// In zh, this message translates to:
/// **'身体处于正常波动范围。'**
String get todayRealtimeStressNormalDescription;
/// No description provided for @todayRealtimeStressCautionDescription.
///
/// In zh, this message translates to:
/// **'身体可能正在积累压力,需要适当休息与恢复。'**
String get todayRealtimeStressCautionDescription;
/// No description provided for @todayRealtimeStressOverloadDescription.
///
/// In zh, this message translates to:
/// **'身体压力明显偏高,建议减少负荷、注意睡眠与恢复。'**
String get todayRealtimeStressOverloadDescription;
/// No description provided for @todayRealtimeStressDivisionBaseline.
///
/// In zh, this message translates to:
/// **'以上区间会结合你的个人基线动态调整,不同用户之间并不直接比较。'**
String get todayRealtimeStressDivisionBaseline;
/// No description provided for @todayRealtimeStressDivisionAwake.
///
/// In zh, this message translates to:
/// **'此外,实时压力主要反映清醒状态下的身体压力变化。'**
String get todayRealtimeStressDivisionAwake;
/// No description provided for @todayRealtimeStressLowBetterTitle.
///
/// In zh, this message translates to:
/// **'实时压力越低越好吗?'**
String get todayRealtimeStressLowBetterTitle;
/// No description provided for @todayRealtimeStressLowBetterNo.
///
/// In zh, this message translates to:
/// **'并不一定。'**
String get todayRealtimeStressLowBetterNo;
/// No description provided for @todayRealtimeStressLowBetterType.
///
/// In zh, this message translates to:
/// **'身体压力分为“正常压力”与“异常压力”。'**
String get todayRealtimeStressLowBetterType;
/// No description provided for @todayRealtimeStressLowBetterExample.
///
/// In zh, this message translates to:
/// **'例如:运动期间或运动后,实时压力短时间升高属于正常恢复反应;工作专注、情绪兴奋时,压力也可能暂时升高,这些都属于正常的身体调节。'**
String get todayRealtimeStressLowBetterExample;
/// No description provided for @todayRealtimeStressLowBetterHighStress.
///
/// In zh, this message translates to:
/// **'但如果在静息、久坐或睡眠不足的情况下,压力长期偏高,则可能意味着身体疲劳、心理压力较大、睡眠恢复不足、运动恢复不充分、摄入过多咖啡因、酒精或刺激物、身体可能处于不适状态。'**
String get todayRealtimeStressLowBetterHighStress;
/// No description provided for @todayRealtimeStressLowBetterTrend.
///
/// In zh, this message translates to:
/// **'DoubleFeel 更关注的是你的长期变化趋势,而不是单次波动。'**
String get todayRealtimeStressLowBetterTrend;
/// No description provided for @todayRealtimeStressScenarioTitle.
///
/// In zh, this message translates to:
/// **'HRV 与实时压力适用场景?'**
String get todayRealtimeStressScenarioTitle;
/// No description provided for @todayRealtimeStressScenarioHrvDefault.
///
/// In zh, this message translates to:
/// **'在 Apple Watch 的默认设置下,HRV 每 2~5 小时更新一次。'**
String get todayRealtimeStressScenarioHrvDefault;
/// No description provided for @todayRealtimeStressScenarioRegionLimit.
///
/// In zh, this message translates to:
/// **'在部分地区,由于 Apple Watch 的呼吸功能受限,HRV 的更新频率可能会受到影响,并且开启呼吸功能后也会消耗更多电量。'**
String get todayRealtimeStressScenarioRegionLimit;
/// No description provided for @todayRealtimeStressScenarioIntro.
///
/// In zh, this message translates to:
/// **'为了解决 HRV 更新间隔较长的问题,DoubleFeel 设计了实时压力功能:'**
String get todayRealtimeStressScenarioIntro;
/// No description provided for @todayRealtimeStressScenarioUpdateEvery6Min.
///
/// In zh, this message translates to:
/// **'· 实时压力每 6 分钟更新一次'**
String get todayRealtimeStressScenarioUpdateEvery6Min;
/// No description provided for @todayRealtimeStressScenarioTimely.
///
/// In zh, this message translates to:
/// **'· 可以更及时地反映身体状态变化'**
String get todayRealtimeStressScenarioTimely;
/// No description provided for @todayRealtimeStressScenarioConsistentTrend.
///
/// In zh, this message translates to:
/// **'· 在大多数情况下,实时压力趋势与 HRV 趋势是一致的'**
String get todayRealtimeStressScenarioConsistentTrend;
/// No description provided for @todayRealtimeStressScenarioSummary.
///
/// In zh, this message translates to:
/// **'这样用户既能获得 HRV 的长期趋势,也能通过实时压力获得短时身体状态的参考。'**
String get todayRealtimeStressScenarioSummary;
/// No description provided for @todayFaqNoDataTitle.
///
/// In zh, this message translates to:
/// **'APP或表盘有没有数据怎么办?'**
String get todayFaqNoDataTitle;
/// No description provided for @todayFaqNoDataDescription1.
///
/// In zh, this message translates to:
/// **'1. 确认苹果手表系统在10.0以上,手机系统在14以上,系统版本可在「关于本机」内查看。'**
String get todayFaqNoDataDescription1;
/// No description provided for @todayFaqNoDataDescription2.
///
/// In zh, this message translates to:
/// **'2. 确认是否开启所有权限:手机「健康」-「共享」-「app」-「DoubleFeel」-「打开所有权限」。'**
String get todayFaqNoDataDescription2;
/// No description provided for @todayFaqNoDataDescription3.
///
/// In zh, this message translates to:
/// **'3. 确认设备是否处于省电模式、低电量状态或手表佩戴未贴紧,以上情况会影响手表数据采集。'**
String get todayFaqNoDataDescription3;
/// No description provided for @todayFaqContactPrefix.
///
/// In zh, this message translates to:
/// **'如以上均检查无问题,可以'**
String get todayFaqContactPrefix;
/// No description provided for @todayFaqContactAction.
///
/// In zh, this message translates to:
/// **'联系我们'**
String get todayFaqContactAction;
/// No description provided for @todayFaqContactSuffix.
///
/// In zh, this message translates to:
/// **'。'**
String get todayFaqContactSuffix;
/// No description provided for @todayFaqWatchNoNotificationTitle.
///
/// In zh, this message translates to:
/// **'手表无法收到状态通知?'**
String get todayFaqWatchNoNotificationTitle;
/// No description provided for @todayFaqWatchNoNotificationDescription1.
///
/// In zh, this message translates to:
/// **'苹果手表和手机的通知展示有优先级:当手机已解锁并亮屏时,通知只会在手机端展示,不会在手表上出现。'**
String get todayFaqWatchNoNotificationDescription1;
/// No description provided for @todayFaqWatchNoNotificationDescription2.
///
/// In zh, this message translates to:
/// **'若压力数据可正常显示和自动更新,但手表未收到通知,可尝试以下操作:'**
String get todayFaqWatchNoNotificationDescription2;
/// No description provided for @todayFaqWatchNoNotificationCheckPhoneNotification.
///
/// In zh, this message translates to:
/// **'1. 检查手机是否打开通知(设置-DoubleFeel-通知)。'**
String get todayFaqWatchNoNotificationCheckPhoneNotification;
/// No description provided for @todayFaqWatchNoNotificationCheckPhoneBackgroundRefresh.
///
/// In zh, this message translates to:
/// **'2. 检查手机是否打开后台App刷新(设置-DoubleFeel-后台App刷新)。'**
String get todayFaqWatchNoNotificationCheckPhoneBackgroundRefresh;
/// No description provided for @todayFaqWatchNoNotificationCheckWatchBackgroundRefresh.
///
/// In zh, this message translates to:
/// **'3. 检查手表是否打开后台App刷新(设置-通用-后台App刷新,并确保DoubleFeel开启)。'**
String get todayFaqWatchNoNotificationCheckWatchBackgroundRefresh;
/// No description provided for @todayFaqWatchNoNotificationCheckModes.
///
/// In zh, this message translates to:
/// **'4. 确保未处于低电量/专注/勿扰/剧院/睡眠等模式。'**
String get todayFaqWatchNoNotificationCheckModes;
/// No description provided for @todayFaqWatchNoNotificationReinstall.
///
/// In zh, this message translates to:
/// **'5. 重装DoubleFeel 并重启AppleWatch与iPhone。'**
String get todayFaqWatchNoNotificationReinstall;
/// No description provided for @todayFaqWatchFaceDelayTitle.
///
/// In zh, this message translates to:
/// **'手表表盘数据不更新或有延迟?'**
String get todayFaqWatchFaceDelayTitle;
/// No description provided for @todayFaqWatchFaceDelayDescription1.
///
/// In zh, this message translates to:
/// **'由于苹果系统限制,所有手表表盘(第三方或官方)都会存在几分钟至半小时的延迟,开发者无法控制刷新频率。'**
String get todayFaqWatchFaceDelayDescription1;
/// No description provided for @todayFaqWatchFaceDelayIfOverOneHour.
///
/// In zh, this message translates to:
/// **'若手机数据刷新后超过1小时表盘仍未更新:'**
String get todayFaqWatchFaceDelayIfOverOneHour;
/// No description provided for @todayFaqWatchFaceDelayOpenWatchApp.
///
/// In zh, this message translates to:
/// **'请在手表上手动打开DoubleFeel,等待约1分钟。'**
String get todayFaqWatchFaceDelayOpenWatchApp;
/// No description provided for @todayFaqWatchFaceDelayIfStill.
///
/// In zh, this message translates to:
/// **'若仍未更新:'**
String get todayFaqWatchFaceDelayIfStill;
/// No description provided for @todayFaqWatchFaceDelayRestartApp.
///
/// In zh, this message translates to:
/// **'关闭DoubleFeel后台进程并重启。'**
String get todayFaqWatchFaceDelayRestartApp;
/// No description provided for @todayFaqWatchFaceDelayCheckIntro.
///
/// In zh, this message translates to:
/// **'仍无效时,请检查:'**
String get todayFaqWatchFaceDelayCheckIntro;
/// No description provided for @todayFaqWatchFaceDelayCheckData.
///
/// In zh, this message translates to:
/// **'· 手机和手表app是否可正常看到HRV数据。'**
String get todayFaqWatchFaceDelayCheckData;
/// No description provided for @todayFaqWatchFaceDelayCheckPhoneHealth.
///
/// In zh, this message translates to:
/// **'· 确保手机端「iOS设置-隐私与安全性-健康-DoubleFeel」全部授权。'**
String get todayFaqWatchFaceDelayCheckPhoneHealth;
/// No description provided for @todayFaqWatchFaceDelayCheckWatchHealth.
///
/// In zh, this message translates to:
/// **'· 确保手表端「设置-健康-数据来源、App和服务-DoubleFeel」全部授权。'**
String get todayFaqWatchFaceDelayCheckWatchHealth;
/// No description provided for @todayFaqWatchFaceDelayCheckBackgroundRefresh.
///
/// In zh, this message translates to:
/// **'· 确认AppleWatch-设置-通用-后台App刷新中DoubleFeel已开启。'**
String get todayFaqWatchFaceDelayCheckBackgroundRefresh;
/// No description provided for @todayFaqWatchFaceDelayRestartWatch.
///
/// In zh, this message translates to:
/// **'· 若仍未自动刷新,请重启手表。长时间运行或后台占用过高可能导致表盘暂停更新。'**
String get todayFaqWatchFaceDelayRestartWatch;
/// No description provided for @todayFaqWatchFaceBlackScreenTitle.
///
/// In zh, this message translates to:
/// **'手表表盘出现黑屏?'**
String get todayFaqWatchFaceBlackScreenTitle;
/// No description provided for @todayFaqWatchFaceBlackScreenDescription.
///
/// In zh, this message translates to:
/// **'若添加专属互动表盘后出现黑屏(仅显示时间和日期),可长按表盘,点击「编辑」,左滑至「复杂功能」,选择 DoubleFeel,然后按需选择各组件重新添加。'**
String get todayFaqWatchFaceBlackScreenDescription;
/// No description provided for @today.
///
/// In zh, this message translates to:
/// **'今日'**
String get today;
/// No description provided for @yesterday.
///
/// In zh, this message translates to:
/// **'昨天'**
String get yesterday;
/// No description provided for @backToToday.
///
/// In zh, this message translates to:
/// **'回今天'**
String get backToToday;
/// No description provided for @redeemOffer.
///
/// In zh, this message translates to:
/// **'领取优惠'**
String get redeemOffer;
/// No description provided for @allPlans.
///
/// In zh, this message translates to:
/// **'全部方案'**
String get allPlans;
/// No description provided for @clickToAddTheHrvThemedWatchFace.
///
/// In zh, this message translates to:
/// **'点击添加HRV主题表盘'**
String get clickToAddTheHrvThemedWatchFace;
/// No description provided for @stayOnTopOfYourHealthFluctuations.
///
/// In zh, this message translates to:
/// **'时刻掌握自身健康波动'**
String get stayOnTopOfYourHealthFluctuations;
/// No description provided for @addACloseContact.
///
/// In zh, this message translates to:
/// **'添加亲密联系人'**
String get addACloseContact;
/// No description provided for @oneMorePersonLookingOutForYourHealth.
///
/// In zh, this message translates to:
/// **'多一个人关注你的健康'**
String get oneMorePersonLookingOutForYourHealth;
/// No description provided for @addAFriend.
///
/// In zh, this message translates to:
/// **'加好友'**
String get addAFriend;
/// No description provided for @averageHrvForTheDay.
///
/// In zh, this message translates to:
/// **'该日平均HRV'**
String get averageHrvForTheDay;
/// No description provided for @restingHeartRate.
///
/// In zh, this message translates to:
/// **'静息心率'**
String get restingHeartRate;
/// No description provided for @todaySHrvTrend.
///
/// In zh, this message translates to:
/// **'今日HRV趋势'**
String get todaySHrvTrend;
/// No description provided for @more.
///
/// In zh, this message translates to:
/// **'更多'**
String get more;
/// No description provided for @noDataAvailableForToday.
///
/// In zh, this message translates to:
/// **'暂无今日数据'**
String get noDataAvailableForToday;
/// No description provided for @realTimePressure.
///
/// In zh, this message translates to:
/// **'实时压力'**
String get realTimePressure;
/// No description provided for @accountInformation.
///
/// In zh, this message translates to:
/// **'账号信息'**
String get accountInformation;
/// No description provided for @help.
///
/// In zh, this message translates to:
/// **'帮助'**
String get help;
/// No description provided for @changeNickname.
///
/// In zh, this message translates to:
/// **'修改昵称'**
String get changeNickname;
/// No description provided for @pleaseEnterANickname.
///
/// In zh, this message translates to:
/// **'请输入昵称'**
String get pleaseEnterANickname;
/// No description provided for @feedbackLog.
///
/// In zh, this message translates to:
/// **'反馈记录'**
String get feedbackLog;
/// No description provided for @noFeedbackRecordsYet.
///
/// In zh, this message translates to:
/// **'暂无反馈记录'**
String get noFeedbackRecordsYet;
/// No description provided for @feedbackDetails.
///
/// In zh, this message translates to:
/// **'反馈详情'**
String get feedbackDetails;
/// No description provided for @reportAnIssue.
///
/// In zh, this message translates to:
/// **'问题反馈'**
String get reportAnIssue;
/// No description provided for @contactInformation.
///
/// In zh, this message translates to:
/// **'联系方式'**
String get contactInformation;
/// No description provided for @submit.
///
/// In zh, this message translates to:
/// **'提交'**
String get submit;
/// No description provided for @questionsAndFeedback.
///
/// In zh, this message translates to:
/// **'问题和反馈'**
String get questionsAndFeedback;
/// No description provided for @ifYouWouldLikeUsToReplyPleaseProvideYourEmailAddress.
///
/// In zh, this message translates to:
/// **'如果需要我们回复,请填写联系邮箱'**
String get ifYouWouldLikeUsToReplyPleaseProvideYourEmailAddress;
/// No description provided for @feedbackHintText.
///
/// In zh, this message translates to:
/// **'1.请说明问题的界面和使用场景\n2.请提供截图,以便提升解决问题效率\n3.请留下联系方式,我们尽快回复联系您'**
String get feedbackHintText;
/// No description provided for @uploadProof.
///
/// In zh, this message translates to:
/// **'上传凭证'**
String get uploadProof;
/// No description provided for @frequentlyAskedQuestions.
///
/// In zh, this message translates to:
/// **'常见问题'**
String get frequentlyAskedQuestions;
/// No description provided for @areYouSureYouWantToDeleteYourAccount.
///
/// In zh, this message translates to:
/// **'确认注销账号吗?'**
String get areYouSureYouWantToDeleteYourAccount;
/// No description provided for @accountSettings.
///
/// In zh, this message translates to:
/// **'账号设置'**
String get accountSettings;
/// No description provided for @deleteAccount.
///
/// In zh, this message translates to:
/// **'注销账号'**
String get deleteAccount;
/// No description provided for @mobilePhoneNumber.
///
/// In zh, this message translates to:
/// **'手机号'**
String get mobilePhoneNumber;
/// No description provided for @logOut.
///
/// In zh, this message translates to:
/// **'退出登录'**
String get logOut;
/// No description provided for @confirmLogoutPrompt.
///
/// In zh, this message translates to:
/// **'确认退出登录吗?'**
String get confirmLogoutPrompt;
/// No description provided for @confirmLogout.
///
/// In zh, this message translates to:
/// **'确认退出'**
String get confirmLogout;
/// No description provided for @loggedOutSuccessfully.
///
/// In zh, this message translates to:
/// **'已退出登录'**
String get loggedOutSuccessfully;
/// No description provided for @accountDeletedSuccessfully.
///
/// In zh, this message translates to:
/// **'账号注销成功'**
String get accountDeletedSuccessfully;
/// No description provided for @deleteAccountWarningTitle.
///
/// In zh, this message translates to:
/// **'注销账号后将无法找回!请谨慎操作'**
String get deleteAccountWarningTitle;
/// No description provided for @deleteAccountWarningPrompt.
///
/// In zh, this message translates to:
/// **'提示:注销账号将会删除该账号内包括但不限于\n个人资料、情绪记录、统计数据等全部信息。'**
String get deleteAccountWarningPrompt;
/// No description provided for @deleteAccountWarningNote1.
///
/// In zh, this message translates to:
/// **'注1:你的健康数据会保存在苹果健康,我们不会删除苹果健康中的数据。'**
String get deleteAccountWarningNote1;
/// No description provided for @deleteAccountWarningNote2.
///
/// In zh, this message translates to:
/// **'注2:删除账号不会影响你在App Store的订阅状态,如果需要取消订阅,请在APPs Store - 头像 - 订阅中手动取消订阅。'**
String get deleteAccountWarningNote2;
/// No description provided for @confirmDeletion.
///
/// In zh, this message translates to:
/// **'确认注销'**
String get confirmDeletion;
/// No description provided for @iLlThinkAboutItSomeMore.
///
/// In zh, this message translates to:
/// **'我再想想'**
String get iLlThinkAboutItSomeMore;
/// No description provided for @sleep.
///
/// In zh, this message translates to:
/// **'睡眠'**
String get sleep;
/// No description provided for @viewSleepReport.
///
/// In zh, this message translates to:
/// **'查看睡眠报告'**
String get viewSleepReport;
/// No description provided for @duration.
///
/// In zh, this message translates to:
/// **'时长'**
String get duration;
/// No description provided for @quality.
///
/// In zh, this message translates to:
/// **'质量'**
String get quality;
/// No description provided for @averageHeartRate.
///
/// In zh, this message translates to:
/// **'平均心率'**
String get averageHeartRate;
/// No description provided for @fitness.
///
/// In zh, this message translates to:
/// **'健身'**
String get fitness;
/// No description provided for @viewFitnessReport.
///
/// In zh, this message translates to:
/// **'查看健身报告'**
String get viewFitnessReport;
/// No description provided for @event.
///
/// In zh, this message translates to:
/// **'活动'**
String get event;
/// No description provided for @exercise.
///
/// In zh, this message translates to:
/// **'锻炼'**
String get exercise;
/// No description provided for @standing.
///
/// In zh, this message translates to:
/// **'站立'**
String get standing;
/// No description provided for @dailyActions.
///
/// In zh, this message translates to:
/// **'每日行动'**
String get dailyActions;
/// No description provided for @trendHrvHeartRate.
///
/// In zh, this message translates to:
/// **'HRV心率'**
String get trendHrvHeartRate;
/// No description provided for @trendActivityBurn.
///
/// In zh, this message translates to:
/// **'活动消耗'**
String get trendActivityBurn;
/// No description provided for @trendSleepReport.
///
/// In zh, this message translates to:
/// **'睡眠报告'**
String get trendSleepReport;
/// No description provided for @reportPeriodDay.
///
/// In zh, this message translates to:
/// **'日'**
String get reportPeriodDay;
/// No description provided for @reportPeriodWeek.
///
/// In zh, this message translates to:
/// **'周'**
String get reportPeriodWeek;
/// No description provided for @reportPeriodMonth.
///
/// In zh, this message translates to:
/// **'月'**
String get reportPeriodMonth;
/// No description provided for @reportPeriodYear.
///
/// In zh, this message translates to:
/// **'年'**
String get reportPeriodYear;
/// No description provided for @reportDateYear.
///
/// In zh, this message translates to:
/// **'{year}年'**
String reportDateYear(int year);
/// No description provided for @reportDateMonth.
///
/// In zh, this message translates to:
/// **'{month}月'**
String reportDateMonth(int month);
/// No description provided for @reportDateMonthDay.
///
/// In zh, this message translates to:
/// **'{month}月{day}日'**
String reportDateMonthDay(int month, int day);
/// No description provided for @reportDateYearMonthDay.
///
/// In zh, this message translates to:
/// **'{year}年{month}月{day}日'**
String reportDateYearMonthDay(int year, int month, int day);
/// No description provided for @reportDatePickerTitle.
///
/// In zh, this message translates to:
/// **'选择时间'**
String get reportDatePickerTitle;
/// No description provided for @reportDatePickerConfirm.
///
/// In zh, this message translates to:
/// **'确定'**
String get reportDatePickerConfirm;
/// No description provided for @reportDatePickerYearOption.
///
/// In zh, this message translates to:
/// **'{year} 年'**
String reportDatePickerYearOption(int year);
/// No description provided for @reportDatePickerMonthOption.
///
/// In zh, this message translates to:
/// **'{month} 月'**
String reportDatePickerMonthOption(int month);
/// No description provided for @reportDatePickerDayOption.
///
/// In zh, this message translates to:
/// **'{day} 日'**
String reportDatePickerDayOption(int day);
/// No description provided for @reportWaitingForData.
///
/// In zh, this message translates to:
/// **'等待数据'**
String get reportWaitingForData;
/// No description provided for @reportNoData.
///
/// In zh, this message translates to:
/// **'暂无数据'**
String get reportNoData;
/// No description provided for @reportNoDataToday.
///
/// In zh, this message translates to:
/// **'暂无本日数据'**
String get reportNoDataToday;
/// No description provided for @reportUnitDay.
///
/// In zh, this message translates to:
/// **'天'**
String get reportUnitDay;
/// No description provided for @reportUnitHour.
///
/// In zh, this message translates to:
/// **'小时'**
String get reportUnitHour;
/// No description provided for @reportUnitMinute.
///
/// In zh, this message translates to:
/// **'分钟'**
String get reportUnitMinute;
/// No description provided for @reportUnitScore.
///
/// In zh, this message translates to:
/// **'分'**
String get reportUnitScore;
/// No description provided for @reportUnitKcal.
///
/// In zh, this message translates to:
/// **'千卡'**
String get reportUnitKcal;
/// No description provided for @reportWeekdayMonday.
///
/// In zh, this message translates to:
/// **'一'**
String get reportWeekdayMonday;
/// No description provided for @reportWeekdayTuesday.
///
/// In zh, this message translates to:
/// **'二'**
String get reportWeekdayTuesday;
/// No description provided for @reportWeekdayWednesday.
///
/// In zh, this message translates to:
/// **'三'**
String get reportWeekdayWednesday;
/// No description provided for @reportWeekdayThursday.
///
/// In zh, this message translates to:
/// **'四'**
String get reportWeekdayThursday;
/// No description provided for @reportWeekdayFriday.
///
/// In zh, this message translates to:
/// **'五'**
String get reportWeekdayFriday;
/// No description provided for @reportWeekdaySaturday.
///
/// In zh, this message translates to:
/// **'六'**
String get reportWeekdaySaturday;
/// No description provided for @reportWeekdaySunday.
///
/// In zh, this message translates to:
/// **'日'**
String get reportWeekdaySunday;
/// No description provided for @reportDateWithWeekday.
///
/// In zh, this message translates to:
/// **'{date} 星期{weekday}'**
String reportDateWithWeekday(String date, String weekday);
/// No description provided for @reportOtherPossessiveTitle.
///
/// In zh, this message translates to:
/// **'Ta的{title}'**
String reportOtherPossessiveTitle(String title);
/// No description provided for @reportOtherTitle.
///
/// In zh, this message translates to:
/// **'Ta{title}'**
String reportOtherTitle(String title);
/// No description provided for @reportTrend.
///
/// In zh, this message translates to:
/// **'趋势'**
String get reportTrend;
/// No description provided for @reportExampleTitle.
///
/// In zh, this message translates to:
/// **'{title}(示例)'**
String reportExampleTitle(String title);
/// No description provided for @hrvStressExcellent.
///
/// In zh, this message translates to:
/// **'状态优秀'**
String get hrvStressExcellent;
/// No description provided for @hrvStressNormal.
///
/// In zh, this message translates to:
/// **'状态正常'**
String get hrvStressNormal;
/// No description provided for @hrvStressAttention.
///
/// In zh, this message translates to:
/// **'注意压力'**
String get hrvStressAttention;
/// No description provided for @hrvStressOverload.
///
/// In zh, this message translates to:
/// **'压力过载'**
String get hrvStressOverload;
/// No description provided for @sleepQualityGreat.
///
/// In zh, this message translates to:
/// **'睡得很棒'**
String get sleepQualityGreat;
/// No description provided for @sleepQualityGood.
///
/// In zh, this message translates to:
/// **'睡得不错'**
String get sleepQualityGood;
/// No description provided for @sleepQualityPoor.
///
/// In zh, this message translates to:
/// **'睡得差'**
String get sleepQualityPoor;
/// No description provided for @sleepQualityExcellent.
///
/// In zh, this message translates to:
/// **'优秀'**
String get sleepQualityExcellent;
/// No description provided for @sleepQualityNormal.
///
/// In zh, this message translates to:
/// **'正常'**
String get sleepQualityNormal;
/// No description provided for @sleepQualityAttention.
///
/// In zh, this message translates to:
/// **'注意'**
String get sleepQualityAttention;
/// No description provided for @hrvDailyStressTrend.
///
/// In zh, this message translates to:
/// **'每日压力趋势'**
String get hrvDailyStressTrend;
/// No description provided for @hrvMonthlyStressTrend.
///
/// In zh, this message translates to:
/// **'每月压力趋势'**
String get hrvMonthlyStressTrend;
/// No description provided for @hrvMoreRelaxed.
///
/// In zh, this message translates to:
/// **'较轻松'**
String get hrvMoreRelaxed;
/// No description provided for @hrvMoreStressed.
///
/// In zh, this message translates to:
/// **'压力较大'**
String get hrvMoreStressed;
/// No description provided for @hrvStressDistribution.
///
/// In zh, this message translates to:
/// **'压力分布'**
String get hrvStressDistribution;
/// No description provided for @hrvDailyStressDistribution.
///
/// In zh, this message translates to:
/// **'每日压力分布'**
String get hrvDailyStressDistribution;
/// No description provided for @hrvRelaxedAxisLabel.
///
/// In zh, this message translates to:
/// **'轻松'**
String get hrvRelaxedAxisLabel;
/// No description provided for @hrvStressedAxisLabel.
///
/// In zh, this message translates to:
/// **'压力大'**
String get hrvStressedAxisLabel;
/// No description provided for @hrvEmptyMonthPlaceholder.
///
/// In zh, this message translates to:
/// **'-月'**
String get hrvEmptyMonthPlaceholder;
/// No description provided for @hrvEmptyMonthDayPlaceholder.
///
/// In zh, this message translates to:
/// **'-月-日'**
String get hrvEmptyMonthDayPlaceholder;
/// No description provided for @hrvValidDays.
///
/// In zh, this message translates to:
/// **'HRV有效天数'**
String get hrvValidDays;
/// No description provided for @hrvLowest.
///
/// In zh, this message translates to:
/// **'最低HRV'**
String get hrvLowest;
/// No description provided for @hrvHighest.
///
/// In zh, this message translates to:
/// **'最高HRV'**
String get hrvHighest;
/// No description provided for @hrvMostStressed.
///
/// In zh, this message translates to:
/// **'压力最大'**
String get hrvMostStressed;
/// No description provided for @hrvLeastStressed.
///
/// In zh, this message translates to:
/// **'压力最小'**
String get hrvLeastStressed;
/// No description provided for @hrvMostRelaxed.
///
/// In zh, this message translates to:
/// **'最轻松'**
String get hrvMostRelaxed;
/// No description provided for @hrvComparedLastWeekUnavailable.
///
/// In zh, this message translates to:
/// **'比上周少-天'**
String get hrvComparedLastWeekUnavailable;
/// No description provided for @hrvSameAsLastWeek.
///
/// In zh, this message translates to:
/// **'与上周持平'**
String get hrvSameAsLastWeek;
/// No description provided for @hrvMoreDaysThanLastWeek.
///
/// In zh, this message translates to:
/// **'比上周多{count}天'**
String hrvMoreDaysThanLastWeek(int count);
/// No description provided for @hrvFewerDaysThanLastWeek.
///
/// In zh, this message translates to:
/// **'比上周少{count}天'**
String hrvFewerDaysThanLastWeek(int count);
/// No description provided for @hrvComparedLastMonthUnavailable.
///
/// In zh, this message translates to:
/// **'比上月少-天'**
String get hrvComparedLastMonthUnavailable;
/// No description provided for @hrvSameAsLastMonth.
///
/// In zh, this message translates to:
/// **'与上月一致'**
String get hrvSameAsLastMonth;
/// No description provided for @hrvMoreDaysThanLastMonth.
///
/// In zh, this message translates to:
/// **'比上月多{count}天'**
String hrvMoreDaysThanLastMonth(int count);
/// No description provided for @hrvFewerDaysThanLastMonth.
///
/// In zh, this message translates to:
/// **'比上月少{count}天'**
String hrvFewerDaysThanLastMonth(int count);
/// No description provided for @hrvUnlockNow.
///
/// In zh, this message translates to:
/// **'立即解锁'**
String get hrvUnlockNow;
/// No description provided for @hrvTrendTitle.
///
/// In zh, this message translates to:
/// **'HRV趋势'**
String get hrvTrendTitle;
/// No description provided for @hrvPeriodAverage.
///
/// In zh, this message translates to:
/// **'本{period}平均'**
String hrvPeriodAverage(String period);
/// No description provided for @hrvComparedPreviousPeriod.
///
/// In zh, this message translates to:
/// **'较上{period}'**
String hrvComparedPreviousPeriod(String period);
/// No description provided for @hrvPeriodTrendChart.
///
/// In zh, this message translates to:
/// **'HRV {period}趋势图'**
String hrvPeriodTrendChart(String period);
/// No description provided for @activityTotalBurn.
///
/// In zh, this message translates to:
/// **'活动总消耗'**
String get activityTotalBurn;
/// No description provided for @activityExerciseTotalDuration.
///
/// In zh, this message translates to:
/// **'锻炼总时长'**
String get activityExerciseTotalDuration;
/// No description provided for @activityStandTotalDuration.
///
/// In zh, this message translates to:
/// **'站立总时长'**
String get activityStandTotalDuration;
/// No description provided for @activityPerfectRings.
///
/// In zh, this message translates to:
/// **'完美合环'**
String get activityPerfectRings;
/// No description provided for @activityCloseMoveRing.
///
/// In zh, this message translates to:
/// **'合上活动圆环'**
String get activityCloseMoveRing;
/// No description provided for @activityCloseExerciseRing.
///
/// In zh, this message translates to:
/// **'合上锻炼圆环'**
String get activityCloseExerciseRing;
/// No description provided for @activityCloseStandRing.
///
/// In zh, this message translates to:
/// **'合上站立圆环'**
String get activityCloseStandRing;
/// No description provided for @activityCalorieTrend.
///
/// In zh, this message translates to:
/// **'热量消耗趋势'**
String get activityCalorieTrend;
/// No description provided for @activityKcalDailyAverage.
///
/// In zh, this message translates to:
/// **'千卡/平均每日'**
String get activityKcalDailyAverage;
/// No description provided for @activityComparedLastWeek.
///
/// In zh, this message translates to:
/// **'比上周少34%'**
String get activityComparedLastWeek;
/// No description provided for @activityComparedLastMonth.
///
/// In zh, this message translates to:
/// **'比上月少34%'**
String get activityComparedLastMonth;
/// No description provided for @activityComparedUnavailable.
///
/// In zh, this message translates to:
/// **'比上周-'**
String get activityComparedUnavailable;
/// No description provided for @activityComparedLastMonthUnavailable.
///
/// In zh, this message translates to:
/// **'比上月-'**
String get activityComparedLastMonthUnavailable;
/// No description provided for @activitySameAsLastWeek.
///
/// In zh, this message translates to:
/// **'与上周持平'**
String get activitySameAsLastWeek;
/// No description provided for @activityMoreThanLastWeek.
///
/// In zh, this message translates to:
/// **'比上周多{percent}%'**
String activityMoreThanLastWeek(int percent);
/// No description provided for @activityLessThanLastWeek.
///
/// In zh, this message translates to:
/// **'比上周少{percent}%'**
String activityLessThanLastWeek(int percent);
/// No description provided for @activitySameAsLastMonth.
///
/// In zh, this message translates to:
/// **'与上月持平'**
String get activitySameAsLastMonth;
/// No description provided for @activityMoreThanLastMonth.
///
/// In zh, this message translates to:
/// **'比上月多{percent}%'**
String activityMoreThanLastMonth(int percent);
/// No description provided for @activityLessThanLastMonth.
///
/// In zh, this message translates to:
/// **'比上月少{percent}%'**
String activityLessThanLastMonth(int percent);
/// No description provided for @activityTrendTitle.
///
/// In zh, this message translates to:
/// **'活动消耗趋势'**
String get activityTrendTitle;
/// No description provided for @activityPeriodTotalBurn.
///
/// In zh, this message translates to:
/// **'本{period}总消耗'**
String activityPeriodTotalBurn(String period);
/// No description provided for @activityDailyAverageBurn.
///
/// In zh, this message translates to:
/// **'日均消耗'**
String get activityDailyAverageBurn;
/// No description provided for @activityPeriodTrendChart.
///
/// In zh, this message translates to:
/// **'活动消耗{period}趋势图'**
String activityPeriodTrendChart(String period);
/// No description provided for @activityMove.
///
/// In zh, this message translates to:
/// **'活动'**
String get activityMove;
/// No description provided for @activityExercise.
///
/// In zh, this message translates to:
/// **'锻炼'**
String get activityExercise;
/// No description provided for @activityStand.
///
/// In zh, this message translates to:
/// **'站立'**
String get activityStand;
/// No description provided for @activityHeartRateZone.
///
/// In zh, this message translates to:
/// **'心率区间'**
String get activityHeartRateZone;
/// No description provided for @activityRealtimeHeartRate.
///
/// In zh, this message translates to:
/// **'实时心率'**
String get activityRealtimeHeartRate;
/// No description provided for @sleepDurationTitle.
///
/// In zh, this message translates to:
/// **'睡眠时长'**
String get sleepDurationTitle;
/// No description provided for @sleepQualityTitle.
///
/// In zh, this message translates to:
/// **'睡眠质量'**
String get sleepQualityTitle;
/// No description provided for @sleepHeartRateTitle.
///
/// In zh, this message translates to:
/// **'睡眠时心率'**
String get sleepHeartRateTitle;
/// No description provided for @sleepLongest.
///
/// In zh, this message translates to:
/// **'睡眠最长'**
String get sleepLongest;
/// No description provided for @sleepShortest.
///
/// In zh, this message translates to:
/// **'睡眠最短'**
String get sleepShortest;
/// No description provided for @sleepBestQuality.
///
/// In zh, this message translates to:
/// **'质量最佳'**
String get sleepBestQuality;
/// No description provided for @sleepWorstQuality.
///
/// In zh, this message translates to:
/// **'质量最差'**
String get sleepWorstQuality;
/// No description provided for @sleepBedtime.
///
/// In zh, this message translates to:
/// **'入睡时间'**
String get sleepBedtime;
/// No description provided for @sleepEarliestBedtime.
///
/// In zh, this message translates to:
/// **'最早入睡'**
String get sleepEarliestBedtime;
/// No description provided for @sleepLatestBedtime.
///
/// In zh, this message translates to:
/// **'最晚入睡'**
String get sleepLatestBedtime;
/// No description provided for @sleepAverageDuration.
///
/// In zh, this message translates to:
/// **'平均时长'**
String get sleepAverageDuration;
/// No description provided for @sleepAverageQuality.
///
/// In zh, this message translates to:
/// **'平均质量'**
String get sleepAverageQuality;
/// No description provided for @sleepPreviousWeek.
///
/// In zh, this message translates to:
/// **'上周'**
String get sleepPreviousWeek;
/// No description provided for @sleepPreviousMonth.
///
/// In zh, this message translates to:
/// **'上月'**
String get sleepPreviousMonth;
/// No description provided for @sleepComparedPercent.
///
/// In zh, this message translates to:
/// **'比{period}{value}%'**
String sleepComparedPercent(String period, String value);
/// No description provided for @sleepDurationValue.
///
/// In zh, this message translates to:
/// **'{hours}小时{minutes}分钟'**
String sleepDurationValue(int hours, int minutes);
/// No description provided for @sleepQualityScore.
///
/// In zh, this message translates to:
/// **'{level}:{score}分'**
String sleepQualityScore(String level, int score);
/// No description provided for @sleepFellAsleepAt.
///
/// In zh, this message translates to:
/// **'{time}入睡'**
String sleepFellAsleepAt(String time);
/// No description provided for @sleepAverage.
///
/// In zh, this message translates to:
/// **'平均'**
String get sleepAverage;
/// No description provided for @sleepTarget.
///
/// In zh, this message translates to:
/// **'目标'**
String get sleepTarget;
/// No description provided for @sleepHighest.
///
/// In zh, this message translates to:
/// **'最高'**
String get sleepHighest;
/// No description provided for @sleepLowest.
///
/// In zh, this message translates to:
/// **'最低'**
String get sleepLowest;
/// No description provided for @sleepTrendTitle.
///
/// In zh, this message translates to:
/// **'睡眠报告趋势'**
String get sleepTrendTitle;
/// No description provided for @sleepPeriodAverageDuration.
///
/// In zh, this message translates to:
/// **'本{period}均睡眠'**
String sleepPeriodAverageDuration(String period);
/// No description provided for @sleepDeepSleepRatio.
///
/// In zh, this message translates to:
/// **'深睡占比'**
String get sleepDeepSleepRatio;
/// No description provided for @sleepDurationPeriodTrendChart.
///
/// In zh, this message translates to:
/// **'睡眠时长{period}趋势图'**
String sleepDurationPeriodTrendChart(String period);
/// No description provided for @sleepEmptyDateWithWeekday.
///
/// In zh, this message translates to:
/// **'-月-日 周-'**
String get sleepEmptyDateWithWeekday;
/// No description provided for @sleepQualityDescription.
///
/// In zh, this message translates to:
/// **'DoubleFeel 会根据你的睡眠时长、睡眠阶段、深度睡眠与恢复状态、夜间心率与 HRV 变化等综合生成当天的睡眠质量评分。\n该评分能够帮助你更直观地了解身体恢复状态与睡眠表现。'**
String get sleepQualityDescription;
/// No description provided for @sleepQualityAttentionRange.
///
/// In zh, this message translates to:
/// **'<60分'**
String get sleepQualityAttentionRange;
/// No description provided for @sleepQualityNormalRange.
///
/// In zh, this message translates to:
/// **'60~85分'**
String get sleepQualityNormalRange;
/// No description provided for @sleepQualityExcellentRange.
///
/// In zh, this message translates to:
/// **'>85分'**
String get sleepQualityExcellentRange;
/// No description provided for @friendsAddCloseContactDescription.
///
/// In zh, this message translates to:
/// **'添加亲密联系人,多一个人关注你的健康'**
String get friendsAddCloseContactDescription;
/// No description provided for @friendsLimitReached.
///
/// In zh, this message translates to:
/// **'最多只能添加10个好友哦'**
String get friendsLimitReached;
/// No description provided for @friendsAddCloseContact.
///
/// In zh, this message translates to:
/// **'添加亲密联系人'**
String get friendsAddCloseContact;
/// No description provided for @friendsAddCloseContactWithCount.
///
/// In zh, this message translates to:
/// **'添加亲密联系人({count}/{max})'**
String friendsAddCloseContactWithCount(int count, int max);
/// No description provided for @friendsMe.
///
/// In zh, this message translates to:
/// **'我'**
String get friendsMe;
/// No description provided for @friendsRemarkedDisplayName.
///
/// In zh, this message translates to:
/// **'{remark}({name})'**
String friendsRemarkedDisplayName(String remark, String name);
/// No description provided for @friendsRemarkSuffix.
///
/// In zh, this message translates to:
/// **'({remark})'**
String friendsRemarkSuffix(String remark);
/// No description provided for @friendsUnknownFriend.
///
/// In zh, this message translates to:
/// **'未知好友'**
String get friendsUnknownFriend;
/// No description provided for @friendsUpdatedAt.
///
/// In zh, this message translates to:
/// **'更新于{time}'**
String friendsUpdatedAt(String time);
/// No description provided for @friendsStepCount.
///
/// In zh, this message translates to:
/// **'{count}步'**
String friendsStepCount(int count);
/// No description provided for @friendsStressAttention.
///
/// In zh, this message translates to:
/// **'注意压力'**
String get friendsStressAttention;
/// No description provided for @friendsWaitingForData.
///
/// In zh, this message translates to:
/// **'等待数据'**
String get friendsWaitingForData;
/// No description provided for @friendsSleepQuality.
///
/// In zh, this message translates to:
/// **'睡眠质量'**
String get friendsSleepQuality;
/// No description provided for @friendsTodaySteps.
///
/// In zh, this message translates to:
/// **'今日步数'**
String get friendsTodaySteps;
/// No description provided for @friendsSleepQualityExcellent.
///
/// In zh, this message translates to:
/// **'睡的很棒'**
String get friendsSleepQualityExcellent;
/// No description provided for @friendsSleepQualityNormal.
///
/// In zh, this message translates to:
/// **'睡得不错'**
String get friendsSleepQualityNormal;
/// No description provided for @friendsSleepQualityAttention.
///
/// In zh, this message translates to:
/// **'睡得差'**
String get friendsSleepQualityAttention;
/// No description provided for @friendsRemove.
///
/// In zh, this message translates to:
/// **'删除Ta'**
String get friendsRemove;
/// No description provided for @friendsEditRemark.
///
/// In zh, this message translates to:
/// **'修改备注'**
String get friendsEditRemark;
/// No description provided for @friendsShowOnWatchFace.
///
/// In zh, this message translates to:
/// **'在手表显示'**
String get friendsShowOnWatchFace;
/// No description provided for @friendsShownOnWatchFace.
///
/// In zh, this message translates to:
/// **'已在手表显示Ta'**
String get friendsShownOnWatchFace;
/// No description provided for @friendsSelect.
///
/// In zh, this message translates to:
/// **'选择好友'**
String get friendsSelect;
/// No description provided for @friendsSelectAndSync.
///
/// In zh, this message translates to:
/// **'选择并同步至手表'**
String get friendsSelectAndSync;
/// No description provided for @friendsBack.
///
/// In zh, this message translates to:
/// **'返回'**
String get friendsBack;
/// No description provided for @friendsTrendTitle.
///
/// In zh, this message translates to:
/// **'{name}的趋势'**
String friendsTrendTitle(String name);
/// No description provided for @friendsAddAction.
///
/// In zh, this message translates to:
/// **'添加'**
String get friendsAddAction;
/// No description provided for @friendsEnterId.
///
/// In zh, this message translates to:
/// **'输入ID'**
String get friendsEnterId;
/// No description provided for @friendsPromptGotIt.
///
/// In zh, this message translates to:
/// **'我知道了'**
String get friendsPromptGotIt;
/// No description provided for @friendsPromptIdNotFoundTitle.
///
/// In zh, this message translates to:
/// **'该ID不存在'**
String get friendsPromptIdNotFoundTitle;
/// No description provided for @friendsPromptAlreadyFriendTitle.
///
/// In zh, this message translates to:
/// **'已经是亲密联系人'**
String get friendsPromptAlreadyFriendTitle;
/// No description provided for @friendsPromptSelfIdTitle.
///
/// In zh, this message translates to:
/// **'不能添加自己'**
String get friendsPromptSelfIdTitle;
/// No description provided for @friendsPromptIdNotFoundMessage.
///
/// In zh, this message translates to:
/// **'这个ID不存在哦,请检查后重新输入'**
String get friendsPromptIdNotFoundMessage;
/// No description provided for @friendsPromptAlreadyFriendMessage.
///
/// In zh, this message translates to:
/// **'你们已经是亲密联系人啦'**
String get friendsPromptAlreadyFriendMessage;
/// No description provided for @friendsPromptSelfIdMessage.
///
/// In zh, this message translates to:
/// **'请输入亲密联系人的ID'**
String get friendsPromptSelfIdMessage;
/// No description provided for @friendsEditRemarkTitle.
///
/// In zh, this message translates to:
/// **'修改好友备注'**
String get friendsEditRemarkTitle;
/// No description provided for @friendsEditRemarkHint.
///
/// In zh, this message translates to:
/// **'请输入昵称'**
String get friendsEditRemarkHint;
/// No description provided for @friendsSave.
///
/// In zh, this message translates to:
/// **'保存'**
String get friendsSave;
/// No description provided for @friendsDeleteConfirmTitle.
///
/// In zh, this message translates to:
/// **'确认要和{name}解除好友关系吗?'**
String friendsDeleteConfirmTitle(String name);
/// No description provided for @friendsDeleteConfirmMessage.
///
/// In zh, this message translates to:
/// **'解除后你将无法查看对方的情绪、健康状态'**
String get friendsDeleteConfirmMessage;
/// No description provided for @friendsDeleteConfirmAction.
///
/// In zh, this message translates to:
/// **'确认解除'**
String get friendsDeleteConfirmAction;
/// No description provided for @privacySettingsTitle.
///
/// In zh, this message translates to:
/// **'隐私设置'**
String get privacySettingsTitle;
/// No description provided for @privacySettingsDisableAddById.
///
/// In zh, this message translates to:
/// **'不允许通过ID添加我'**
String get privacySettingsDisableAddById;
/// No description provided for @premiumActivatedTitle.
///
/// In zh, this message translates to:
/// **'恭喜你已开通 DoubleFeel Pro'**
String get premiumActivatedTitle;
/// No description provided for @premiumActivatedDescription.
///
/// In zh, this message translates to:
/// **'你现在可以实时监测压力、睡眠与 HRV,养成健康生活习惯,同时把关心分享给亲密联系人,让重要的人及时了解你的状态。'**
String get premiumActivatedDescription;
/// No description provided for @premiumActivatedContinue.
///
/// In zh, this message translates to:
/// **'继续'**
String get premiumActivatedContinue;
/// No description provided for @purchaseHeroTitle.
///
/// In zh, this message translates to:
/// **'解锁专业版,关心更及时'**
String get purchaseHeroTitle;
/// No description provided for @purchaseBenefitsTitle.
///
/// In zh, this message translates to:
/// **'畅享全部高级权益'**
String get purchaseBenefitsTitle;
/// No description provided for @purchaseUnlockNow.
///
/// In zh, this message translates to:
/// **'立即解锁'**
String get purchaseUnlockNow;
/// No description provided for @purchaseRestore.
///
/// In zh, this message translates to:
/// **'恢复'**
String get purchaseRestore;
/// No description provided for @purchaseTermsOfService.
///
/// In zh, this message translates to:
/// **'服务条款'**
String get purchaseTermsOfService;
/// No description provided for @purchasePrivacyPolicy.
///
/// In zh, this message translates to:
/// **'隐私政策'**
String get purchasePrivacyPolicy;
/// No description provided for @purchaseLifetimePlan.
///
/// In zh, this message translates to:
/// **'终身会员'**
String get purchaseLifetimePlan;
/// No description provided for @purchaseLifetimeSubtitle.
///
/// In zh, this message translates to:
/// **'终身使用,免费更新'**
String get purchaseLifetimeSubtitle;
/// No description provided for @purchaseSpecialOffer.
///
/// In zh, this message translates to:
/// **'特别优惠'**
String get purchaseSpecialOffer;
/// No description provided for @purchaseAnnualPlan.
///
/// In zh, this message translates to:
/// **'年度会员'**
String get purchaseAnnualPlan;
/// No description provided for @purchaseAnnualSubtitle.
///
/// In zh, this message translates to:
/// **'每月仅¥6.5'**
String get purchaseAnnualSubtitle;
/// No description provided for @purchaseAnnualDiscount.
///
/// In zh, this message translates to:
/// **'20%优惠'**
String get purchaseAnnualDiscount;
/// No description provided for @purchaseCurrencySymbol.
///
/// In zh, this message translates to:
/// **'¥'**
String get purchaseCurrencySymbol;
/// No description provided for @purchaseProductInfoUnavailable.
///
/// In zh, this message translates to:
/// **'商品信息异常,请稍后重试'**
String get purchaseProductInfoUnavailable;
/// No description provided for @purchaseOrderInfoUnavailable.
///
/// In zh, this message translates to:
/// **'订单信息异常,请稍后重试'**
String get purchaseOrderInfoUnavailable;
/// No description provided for @purchaseMonthlyUnitPrice.
///
/// In zh, this message translates to:
/// **'每月仅{unitPrice}'**
String purchaseMonthlyUnitPrice(String unitPrice);
/// No description provided for @purchaseApplePaymentInvalidOrder.
///
/// In zh, this message translates to:
/// **'UUID格式错误'**
String get purchaseApplePaymentInvalidOrder;
/// No description provided for @purchaseApplePaymentProductNotFound.
///
/// In zh, this message translates to:
/// **'productID查询商品失败'**
String get purchaseApplePaymentProductNotFound;
/// No description provided for @purchaseApplePaymentCancelled.
///
/// In zh, this message translates to:
/// **'用户取消支付'**
String get purchaseApplePaymentCancelled;
/// No description provided for @purchaseApplePaymentVerificationFailed.
///
/// In zh, this message translates to:
/// **'支付校验失败'**
String get purchaseApplePaymentVerificationFailed;
/// No description provided for @purchaseApplePaymentFailed.
///
/// In zh, this message translates to:
/// **'未知错误'**
String get purchaseApplePaymentFailed;
/// No description provided for @purchaseBenefitRealtimeStress.
///
/// In zh, this message translates to:
/// **'实时压力监测'**
String get purchaseBenefitRealtimeStress;
/// No description provided for @purchaseBenefitStressTrends.
///
/// In zh, this message translates to:
/// **'每周/每月/每年压力趋势'**
String get purchaseBenefitStressTrends;
/// No description provided for @purchaseBenefitActivityTrends.
///
/// In zh, this message translates to:
/// **'每周/每月/每年活动消耗趋势'**
String get purchaseBenefitActivityTrends;
/// No description provided for @purchaseBenefitSleepReports.
///
/// In zh, this message translates to:
/// **'每周/每月/每年睡眠报告'**
String get purchaseBenefitSleepReports;
/// No description provided for @purchaseBenefitHealthSync.
///
/// In zh, this message translates to:
/// **'健康数据实时同步'**
String get purchaseBenefitHealthSync;
/// No description provided for @purchaseBenefitContactNotifications.
///
/// In zh, this message translates to:
/// **'健康数据实时通知亲密联系人'**
String get purchaseBenefitContactNotifications;
/// No description provided for @purchaseBenefitCustomWatchFace.
///
/// In zh, this message translates to:
/// **'会员专属自定义表盘'**
String get purchaseBenefitCustomWatchFace;
/// No description provided for @purchaseBenefitSleepAnalysis.
///
/// In zh, this message translates to:
/// **'睡眠分析'**
String get purchaseBenefitSleepAnalysis;
/// No description provided for @purchaseBenefitFutureFeatures.
///
/// In zh, this message translates to:
/// **'未来更多高级权益免费获取'**
String get purchaseBenefitFutureFeatures;
/// No description provided for @purchaseNotesTitle.
///
/// In zh, this message translates to:
/// **'说明'**
String get purchaseNotesTitle;
/// No description provided for @purchaseNoteSubscription.
///
/// In zh, this message translates to:
/// **'确认购买并支付后,将通过您的 iTunes 账号自动续订。苹果 iTunes 账户会在到期前24小时内扣费,扣费成功后订阅周期顺延一个订阅周期。如需取消续订,请在当前订阅周期到期前24小时以前,手动在 iTunes/Apple ID 设置管理中关闭自动续费功能。本服务由您自主选择是否取消,若您选择不取消,将为您开通下个计费周期的续费服务。\n\nDoubleFeel Pro 会员属于虚拟物品,购买后,除 App Store 渠道退款外,不支持其他形式退款。如有需要,可以点击'**
String get purchaseNoteSubscription;
/// No description provided for @purchaseLinkLearnMore.
///
/// In zh, this message translates to:
/// **'了解更多'**
String get purchaseLinkLearnMore;
/// No description provided for @purchaseNoteRestore.
///
/// In zh, this message translates to:
/// **'如果购买后未生效,请点击恢复购买。'**
String get purchaseNoteRestore;
/// No description provided for @purchaseNoteContact.
///
/// In zh, this message translates to:
/// **'如果有更多其他问题,请'**
String get purchaseNoteContact;
/// No description provided for @purchaseLinkContactUs.
///
/// In zh, this message translates to:
/// **'联系我们'**
String get purchaseLinkContactUs;
/// No description provided for @reportBottomSlogan.
///
/// In zh, this message translates to:
/// **'双倍感知 压力减半'**
String get reportBottomSlogan;
/// 退费说明
///
/// In zh, this message translates to:
/// **'退费说明'**
String get refundExplanationTitle;
/// No description provided for @refundAppStoreReviewTitle.
///
/// In zh, this message translates to:
/// **'退款由 App Store 审核处理'**
String get refundAppStoreReviewTitle;
/// No description provided for @refundAppStoreReviewDescription.
///
/// In zh, this message translates to:
/// **'所有订阅与虚拟商品均通过 App Store 官方支付系统完成,DoubleFeel 无法直接处理付款或退款。'**
String get refundAppStoreReviewDescription;
/// No description provided for @refundAppleRulesIntroduction.
///
/// In zh, this message translates to:
/// **'根据 Apple 的平台规则:'**
String get refundAppleRulesIntroduction;
/// No description provided for @refundAppleCollectsPayments.
///
/// In zh, this message translates to:
/// **' · 所有付款均由 App Store 收取'**
String get refundAppleCollectsPayments;
/// No description provided for @refundAppleReviewsRequests.
///
/// In zh, this message translates to:
/// **' · 所有退款申请也需要由 Apple 官方审核'**
String get refundAppleReviewsRequests;
/// No description provided for @refundDeveloperCannotSubmit.
///
/// In zh, this message translates to:
/// **' · 开发者无法代替用户提交退款申请'**
String get refundDeveloperCannotSubmit;
/// No description provided for @refundDeveloperCannotIntervene.
///
/// In zh, this message translates to:
/// **' · 开发者也无法干预 Apple 的审核结果'**
String get refundDeveloperCannotIntervene;
/// No description provided for @refundAppStoreFinalDecision.
///
/// In zh, this message translates to:
/// **'因此,你的退款申请最终将由 App Store 官方决定。'**
String get refundAppStoreFinalDecision;
/// No description provided for @refundMayBeRejectedTitle.
///
/// In zh, this message translates to:
/// **'App Store 可能拒绝退款申请'**
String get refundMayBeRejectedTitle;
/// No description provided for @refundNoUnconditionalRefunds.
///
/// In zh, this message translates to:
/// **'根据 Apple 的退款政策,App Store 并不支持所有情况下的无条件退款。'**
String get refundNoUnconditionalRefunds;
/// No description provided for @refundAppleTermsDescription.
///
/// In zh, this message translates to:
/// **'你在使用 App Store 时,已经同意 Apple 的相关服务条款与退款规则。https://www.apple.com/cn/legal/internet-services/itunes/'**
String get refundAppleTermsDescription;
/// No description provided for @refundAppleReviewsCircumstances.
///
/// In zh, this message translates to:
/// **'退款是否通过,将由 Apple 根据订单情况、账号记录与实际使用情况综合审核。'**
String get refundAppleReviewsCircumstances;
/// No description provided for @refundRejectionReasonsTitle.
///
/// In zh, this message translates to:
/// **'哪些情况下可能被拒绝退款?'**
String get refundRejectionReasonsTitle;
/// No description provided for @refundRejectionReasonsIntroduction.
///
/// In zh, this message translates to:
/// **'App Store 可能会根据以下情况拒绝退款申请,包括但不限于:'**
String get refundRejectionReasonsIntroduction;
/// No description provided for @refundReasonPurchaseTooOld.
///
/// In zh, this message translates to:
/// **' · 订单距离购买时间过久'**
String get refundReasonPurchaseTooOld;
/// No description provided for @refundReasonFrequentRequests.
///
/// In zh, this message translates to:
/// **' · 同一账号短时间频繁申请退款'**
String get refundReasonFrequentRequests;
/// No description provided for @refundReasonAbnormalHistory.
///
/// In zh, this message translates to:
/// **' · 已存在异常退款记录'**
String get refundReasonAbnormalHistory;
/// No description provided for @refundReasonInsufficient.
///
/// In zh, this message translates to:
/// **' · 退款理由不充分'**
String get refundReasonInsufficient;
/// No description provided for @refundReasonLongTermUse.
///
/// In zh, this message translates to:
/// **' · 已长期正常使用会员功能'**
String get refundReasonLongTermUse;
/// No description provided for @refundReasonPriceChange.
///
/// In zh, this message translates to:
/// **' · 因活动、折扣或价格变化申请退款'**
String get refundReasonPriceChange;
/// No description provided for @refundReasonNoReceipt.
///
/// In zh, this message translates to:
/// **' · 无法提供有效订单凭证'**
String get refundReasonNoReceipt;
/// No description provided for @refundOfficialDecision.
///
/// In zh, this message translates to:
/// **'最终审核结果以 App Store 官方决定为准。'**
String get refundOfficialDecision;
/// No description provided for @refundRejectedNextStepsTitle.
///
/// In zh, this message translates to:
/// **'如果退款申请被拒绝怎么办?'**
String get refundRejectedNextStepsTitle;
/// No description provided for @refundTryAgain.
///
/// In zh, this message translates to:
/// **'如果你的退款申请被拒绝,可以尝试再次向 App Store 提交申请。'**
String get refundTryAgain;
/// No description provided for @refundFinalReview.
///
/// In zh, this message translates to:
/// **'若再次被拒绝,则代表 App Store 已完成最终审核,我们与 Apple 客服均无法修改该结果。'**
String get refundFinalReview;
/// No description provided for @refundNoAlternativeChannel.
///
/// In zh, this message translates to:
/// **'DoubleFeel 也无法处理任何绕过 App Store 系统的退款请求。'**
String get refundNoAlternativeChannel;
/// No description provided for @refundMembershipCancellation.
///
/// In zh, this message translates to:
/// **'退款成功后,你的 DoubleFeel Pro 会员权益也会同步取消。'**
String get refundMembershipCancellation;
/// No description provided for @refundHelpTitle.
///
/// In zh, this message translates to:
/// **'如需帮助'**
String get refundHelpTitle;
/// No description provided for @refundHelpDescription.
///
/// In zh, this message translates to:
/// **'如果你对退款规则存在疑问,或遇到支付异常、重复扣费、订单未到账等问题,可以联系 DoubleFeel 支持团队,我们会尽力协助你处理。'**
String get refundHelpDescription;
/// No description provided for @refundFaqTitle.
///
/// In zh, this message translates to:
/// **'DoubleFeel 常见问题'**
String get refundFaqTitle;
/// No description provided for @appReviewPromptTitle.
///
/// In zh, this message translates to:
/// **'喜欢 DoubleFeel 吗?'**
String get appReviewPromptTitle;
/// No description provided for @appReviewPromptMessage.
///
/// In zh, this message translates to:
/// **'嗨~想知道 DoubleFeel 是否正在帮助你\n更了解自己的压力与睡眠状态 💜'**
String get appReviewPromptMessage;
/// No description provided for @appReviewPromptLikeActionEmoji.
///
/// In zh, this message translates to:
/// **'😍'**
String get appReviewPromptLikeActionEmoji;
/// No description provided for @appReviewPromptLikeAction.
///
/// In zh, this message translates to:
/// **'很喜欢'**
String get appReviewPromptLikeAction;
/// No description provided for @appReviewPromptFeedbackAction.
///
/// In zh, this message translates to:
/// **'我有意见'**
String get appReviewPromptFeedbackAction;
/// No description provided for @appReviewFeedbackTitle.
///
/// In zh, this message translates to:
/// **'很抱歉 DoubleFeel 没有带\n给你好的体验'**
String get appReviewFeedbackTitle;
/// No description provided for @appReviewFeedbackMessage.
///
/// In zh, this message translates to:
/// **'愿意告诉我们遇到了什么问题吗?\n你的反馈可以帮助我们持续改进压力与健康体验 💜'**
String get appReviewFeedbackMessage;
/// No description provided for @appReviewFeedbackSendAction.
///
/// In zh, this message translates to:
/// **'发送反馈'**
String get appReviewFeedbackSendAction;
/// No description provided for @appReviewFeedbackLaterAction.
///
/// In zh, this message translates to:
/// **'稍后再说'**
String get appReviewFeedbackLaterAction;
/// No description provided for @appReviewIllustrationPlaceholder.
///
/// In zh, this message translates to:
/// **'插图占位'**
String get appReviewIllustrationPlaceholder;
/// No description provided for @overallStressLevelToday.
///
/// In zh, this message translates to:
/// **'今日的综合压力状态'**
String get overallStressLevelToday;
/// No description provided for @stressLevelsOnThatDay.
///
/// In zh, this message translates to:
/// **'该日压力状态'**
String get stressLevelsOnThatDay;
/// No description provided for @noPressureDataAvailableAtThisTime.
///
/// In zh, this message translates to:
/// **'暂无压力数据'**
String get noPressureDataAvailableAtThisTime;
/// No description provided for @membersCanViewTheCompleteData.
///
/// In zh, this message translates to:
/// **'会员可查看完整数据'**
String get membersCanViewTheCompleteData;
/// No description provided for @unlockNow.
///
/// In zh, this message translates to:
/// **'立即解锁'**
String get unlockNow;
/// No description provided for @pressureOverload.
///
/// In zh, this message translates to:
/// **'压力过载'**
String get pressureOverload;
/// No description provided for @beMindfulOfStress.
///
/// In zh, this message translates to:
/// **'注意压力'**
String get beMindfulOfStress;
/// No description provided for @statusNormal.
///
/// In zh, this message translates to:
/// **'状态正常'**
String get statusNormal;
/// No description provided for @inExcellentCondition.
///
/// In zh, this message translates to:
/// **'状态优秀'**
String get inExcellentCondition;
/// No description provided for @waitingForData.
///
/// In zh, this message translates to:
/// **'等待数据'**
String get waitingForData;
/// No description provided for @pressure.
///
/// In zh, this message translates to:
/// **'压力'**
String get pressure;
/// No description provided for @mostRecent.
///
/// In zh, this message translates to:
/// **'最近一次'**
String get mostRecent;
/// No description provided for @theDayBeforeYesterday.
///
/// In zh, this message translates to:
/// **'前天'**
String get theDayBeforeYesterday;
/// No description provided for @uploadPhotos.
///
/// In zh, this message translates to:
/// **'相册上传'**
String get uploadPhotos;
/// No description provided for @filming.
///
/// In zh, this message translates to:
/// **'拍摄'**
String get filming;
/// No description provided for @unlockTheProVersion.
///
/// In zh, this message translates to:
/// **'解锁专业版'**
String get unlockTheProVersion;
/// No description provided for @embarkOnAJourneyOfStressAwarenessAndWellnessSupport.
///
/// In zh, this message translates to:
/// **'开启压力预警与健康陪伴之旅'**
String get embarkOnAJourneyOfStressAwarenessAndWellnessSupport;
/// 分享好友邀请码文案模板
///
/// In zh, this message translates to:
/// **'我的好友码:{inviteCode}。嘿❤️来一起用 DoubleFeel吧!它可以帮我们互相关心,记录压力和睡眠、查看HRV与身体状态、及时了解彼此的健康状况。快来一起使用吧 👉 https://apps.apple.com/cn/app/doublefeel-%E5%8F%8C%E4%BA%BA%E6%83%85%E7%BB%AA%E5%85%B1%E4%BA%ABhrv%E5%8E%8B%E5%8A%9B%E6%B0%B4%E5%B9%B3%E8%87%AA%E6%B5%8B%E7%9D%A1%E7%9C%A0%E8%AE%B0%E5%BD%95/id6747254434'**
String sharePartnerCodeTemplate(String inviteCode);
/// No description provided for @bindPartnerIdNotExistTitle.
///
/// In zh, this message translates to:
/// **'该ID不存在'**
String get bindPartnerIdNotExistTitle;
/// No description provided for @bindPartnerIdNotExistMessage.
///
/// In zh, this message translates to:
/// **'这个ID不存在哦,请检查后重新输入'**
String get bindPartnerIdNotExistMessage;
/// No description provided for @bindPartnerDialogGotIt.
///
/// In zh, this message translates to:
/// **'我知道了'**
String get bindPartnerDialogGotIt;
/// No description provided for @bindPartnerAddFailedTitle.
///
/// In zh, this message translates to:
/// **'添加失败'**
String get bindPartnerAddFailedTitle;
/// No description provided for @bindPartnerAddFailedMessage.
///
/// In zh, this message translates to:
/// **'该用户不允许被添加好友,无法添加Ta哦'**
String get bindPartnerAddFailedMessage;
/// No description provided for @bindPartnerAlreadyFriendTitle.
///
/// In zh, this message translates to:
/// **'对方已经是你的好友啦'**
String get bindPartnerAlreadyFriendTitle;
/// No description provided for @bindPartnerAlreadyFriendMessage.
///
/// In zh, this message translates to:
/// **'请不要重复添加哦'**
String get bindPartnerAlreadyFriendMessage;
/// 好友的状态标题
///
/// In zh, this message translates to:
/// **'{remarkName}的状态'**
String friendStatusTitle(String remarkName);
/// No description provided for @annualMemberDiscounts.
///
/// In zh, this message translates to:
/// **'年度会员优惠'**
String get annualMemberDiscounts;
/// No description provided for @specialOffers.
///
/// In zh, this message translates to:
/// **'优惠'**
String get specialOffers;
/// No description provided for @currentPrice.
///
/// In zh, this message translates to:
/// **'现价'**
String get currentPrice;
/// 原价标签
///
/// In zh, this message translates to:
/// **'原价{price}'**
String originalPrice(String price);
/// No description provided for @freeRedemptionOffer.
///
/// In zh, this message translates to:
/// **'免费兑换优惠'**
String get freeRedemptionOffer;
/// No description provided for @cellPhoneNumber.
///
/// In zh, this message translates to:
/// **'手机号'**
String get cellPhoneNumber;
/// No description provided for @todayOnWeeklyCalendar.
///
/// In zh, this message translates to:
/// **'今'**
String get todayOnWeeklyCalendar;
/// No description provided for @hrvTrendForThatDay.
///
/// In zh, this message translates to:
/// **'该日HRV趋势'**
String get hrvTrendForThatDay;
/// No description provided for @todaySAverageHrv.
///
/// In zh, this message translates to:
/// **'今日平均HRV'**
String get todaySAverageHrv;
/// No description provided for @helpNoDataReason1.
///
/// In zh, this message translates to:
/// **'1、 确定苹果手表系统在10.0以上,手机系统在14以上,系统版本可在【关于本机】内查看。'**
String get helpNoDataReason1;
/// No description provided for @helpNoDataReason2.
///
/// In zh, this message translates to:
/// **'2、确认是否开启所有权限:手机【健康】-【共享】-【app】-【DoubleFeel】-【打开所有权限】'**
String get helpNoDataReason2;
/// No description provided for @helpNoDataReason3.
///
/// In zh, this message translates to:
/// **'3、确认设备是否处于省电模式、低电量状态或手表佩戴未贴紧,以上情况会影响手表数据采集。'**
String get helpNoDataReason3;
/// No description provided for @helpNoDataReasonFooter.
///
/// In zh, this message translates to:
/// **'如以上均检查无问题,可以在【意见反馈】-【联系我们】中提交相关问题,我们看到后会第一时间回复。'**
String get helpNoDataReasonFooter;
/// No description provided for @noHealthDataNeedHelp.
///
/// In zh, this message translates to:
/// **'需要帮助?'**
String get noHealthDataNeedHelp;
/// No description provided for @noHealthDataRefresh.
///
/// In zh, this message translates to:
/// **'刷新'**
String get noHealthDataRefresh;
/// No description provided for @noHealthDataHeadingTitle.
///
/// In zh, this message translates to:
/// **'无心率数据可用'**
String get noHealthDataHeadingTitle;
/// No description provided for @noHealthDataHeadingBody.
///
/// In zh, this message translates to:
/// **'DoubleFeel无法从 Apple Health 获取你的 HRV 数据。请按照提示授予权限,然后点击右上角“刷新”继续。'**
String get noHealthDataHeadingBody;
/// No description provided for @noHealthDataError1Title.
///
/// In zh, this message translates to:
/// **'错误1:Apple Watch 数据不可用'**
String get noHealthDataError1Title;
/// No description provided for @noHealthDataError1Body.
///
/// In zh, this message translates to:
/// **'看起来你在过去 12 个月内没有使用 Apple Watch。如果你刚开始使用 Apple Watch 并已启用所有数据权限,这条信息可能仍会出现。请继续佩戴 Apple Watch 以允许数据采集,或在首页手动添加 HRV 数据。'**
String get noHealthDataError1Body;
/// No description provided for @noHealthDataError2Title.
///
/// In zh, this message translates to:
/// **'错误 2:健康数据访问未授权'**
String get noHealthDataError2Title;
/// No description provided for @noHealthDataError2Body.
///
/// In zh, this message translates to:
/// **'DoubleFeel 需要访问 Apple Health 数据的权限,以提供压力统计、提醒和建议。如果未授权,部分功能可能无法正常使用。\n\n请放心,所有健康数据仅存储在本地,不会上传。\n\n要启用权限,请按提示操作,并在 iOS 设置中选择 允许所有 → 健康 → DoubleFeel。'**
String get noHealthDataError2Body;
/// No description provided for @noHealthDataError3Title.
///
/// In zh, this message translates to:
/// **'错误 3:系统问题'**
String get noHealthDataError3Title;
/// No description provided for @noHealthDataError3Body.
///
/// In zh, this message translates to:
/// **'根据用户反馈,我们发现 HRV 或心率数据可能缺失的两个原因:\n\n1. Apple Watch 未连接\n · 如果你的 Apple Watch 长时间未佩戴,心率数据可能无法采集。\n · 请检查 iOS 健康 App → “我的手表”,确认最近的心率数据是否在佩戴 Apple Watch 时记录。\n · 如果没有,请尝试佩戴 Apple Watch 进行数据采集,并打开 Apple 支持的心率功能。\n\n2. 过去 30 天的心率或 HRV 数据缺失\n · 打开 iOS 健康 App → 浏览 → “心率” 或 “HRV” → “未找到数据”,确认是否缺失。\n · 如果数据缺失,请重新佩戴手表,并重启 iPhone 和 Apple Watch 后,再次打开 DoubleFeel。'**
String get noHealthDataError3Body;
/// No description provided for @noHealthDataGoToSettings.
///
/// In zh, this message translates to:
/// **'前往开启'**
String get noHealthDataGoToSettings;
/// No description provided for @watchThemeDefaultTheme.
///
/// In zh, this message translates to:
/// **'默认主题'**
String get watchThemeDefaultTheme;
/// No description provided for @watchThemeNoWatchTitle.
///
/// In zh, this message translates to:
/// **'未找到苹果手表'**
String get watchThemeNoWatchTitle;
/// No description provided for @watchThemeNoWatchMessage.
///
/// In zh, this message translates to:
/// **'请配对苹果手表后再尝试'**
String get watchThemeNoWatchMessage;
/// No description provided for @watchThemeOk.
///
/// In zh, this message translates to:
/// **'好的'**
String get watchThemeOk;
/// No description provided for @watchThemeSelectFriend.
///
/// In zh, this message translates to:
/// **'选择好友'**
String get watchThemeSelectFriend;
/// No description provided for @watchThemeSelectAndSync.
///
/// In zh, this message translates to:
/// **'选择并同步至手表'**
String get watchThemeSelectAndSync;
/// No description provided for @watchThemeCustomTheme.
///
/// In zh, this message translates to:
/// **'自定义主题'**
String get watchThemeCustomTheme;
/// No description provided for @watchThemeCustomDescription.
///
/// In zh, this message translates to:
/// **'用创意记录每一次情绪波动,打造懂你的专属表盘吧~'**
String get watchThemeCustomDescription;
/// No description provided for @watchThemeCreateTheme.
///
/// In zh, this message translates to:
/// **'创作主题'**
String get watchThemeCreateTheme;
/// No description provided for @watchThemeOfficialTheme.
///
/// In zh, this message translates to:
/// **'官方主题'**
String get watchThemeOfficialTheme;
/// No description provided for @watchThemeRenameStatus.
///
/// In zh, this message translates to:
/// **'修改状态名称'**
String get watchThemeRenameStatus;
/// No description provided for @watchThemeEnterNickname.
///
/// In zh, this message translates to:
/// **'请输入昵称'**
String get watchThemeEnterNickname;
/// No description provided for @watchThemeSave.
///
/// In zh, this message translates to:
/// **'保存'**
String get watchThemeSave;
/// No description provided for @watchThemeDialPreview.
///
/// In zh, this message translates to:
/// **'表盘预览'**
String get watchThemeDialPreview;
/// No description provided for @watchThemeSwitchFriend.
///
/// In zh, this message translates to:
/// **'切换好友'**
String get watchThemeSwitchFriend;
/// No description provided for @watchThemeStatusPreview.
///
/// In zh, this message translates to:
/// **'状态预览'**
String get watchThemeStatusPreview;
/// No description provided for @watchThemeAddWatchFace.
///
/// In zh, this message translates to:
/// **'添加表盘'**
String get watchThemeAddWatchFace;
/// No description provided for @watchThemeInUse.
///
/// In zh, this message translates to:
/// **'正在使用'**
String get watchThemeInUse;
/// No description provided for @watchThemeUseNow.
///
/// In zh, this message translates to:
/// **'立即使用'**
String get watchThemeUseNow;
/// No description provided for @watchThemeSyncIntro.
///
/// In zh, this message translates to:
/// **'请先打开DoubleFeel手表端App,然后点击下方的“下一步”按钮'**
String get watchThemeSyncIntro;
/// No description provided for @watchThemeSyncWaiting.
///
/// In zh, this message translates to:
/// **'请保持打开手表App,等待同步'**
String get watchThemeSyncWaiting;
/// No description provided for @watchThemeSyncComplete.
///
/// In zh, this message translates to:
/// **'同步完成'**
String get watchThemeSyncComplete;
/// No description provided for @watchThemeSyncFailed.
///
/// In zh, this message translates to:
/// **'同步失败'**
String get watchThemeSyncFailed;
/// No description provided for @watchThemeNext.
///
/// In zh, this message translates to:
/// **'下一步'**
String get watchThemeNext;
/// No description provided for @watchThemeSyncingProgress.
///
/// In zh, this message translates to:
/// **'同步中 {progress}%'**
String watchThemeSyncingProgress(int progress);
/// No description provided for @watchThemePreview.
///
/// In zh, this message translates to:
/// **'预览'**
String get watchThemePreview;
/// No description provided for @watchThemeDelete.
///
/// In zh, this message translates to:
/// **'删除'**
String get watchThemeDelete;
/// No description provided for @watchThemePageTitle.
///
/// In zh, this message translates to:
/// **'Watch主题'**
String get watchThemePageTitle;
/// No description provided for @watchThemeImagesOnly.
///
/// In zh, this message translates to:
/// **'仅支持上传图片'**
String get watchThemeImagesOnly;
/// No description provided for @watchThemeName.
///
/// In zh, this message translates to:
/// **'主题名称'**
String get watchThemeName;
/// No description provided for @watchThemeNameMaxLength.
///
/// In zh, this message translates to:
/// **'最多10个字符'**
String get watchThemeNameMaxLength;
/// No description provided for @watchThemeSubmissionAgreement.
///
/// In zh, this message translates to:
/// **'我已阅读并同意用户投稿协议'**
String get watchThemeSubmissionAgreement;
/// No description provided for @watchThemeSubmissionAgreementPrefix.
///
/// In zh, this message translates to:
/// **'我已阅读并同意用户'**
String get watchThemeSubmissionAgreementPrefix;
/// No description provided for @watchThemeSubmissionAgreementLink.
///
/// In zh, this message translates to:
/// **'投稿协议'**
String get watchThemeSubmissionAgreementLink;
/// No description provided for @watchThemeSaving.
///
/// In zh, this message translates to:
/// **'保存中'**
String get watchThemeSaving;
/// No description provided for @watchThemeSaveTheme.
///
/// In zh, this message translates to:
/// **'保存主题'**
String get watchThemeSaveTheme;
/// No description provided for @watchThemeExcellent.
///
/// In zh, this message translates to:
/// **'状态优秀'**
String get watchThemeExcellent;
/// No description provided for @watchThemeNormal.
///
/// In zh, this message translates to:
/// **'状态正常'**
String get watchThemeNormal;
/// No description provided for @watchThemeSlightStressful.
///
/// In zh, this message translates to:
/// **'注意压力'**
String get watchThemeSlightStressful;
/// No description provided for @watchThemeStressful.
///
/// In zh, this message translates to:
/// **'压力过载'**
String get watchThemeStressful;
/// No description provided for @watchThemeCropImage.
///
/// In zh, this message translates to:
/// **'裁剪表盘图片'**
String get watchThemeCropImage;
/// No description provided for @watchThemeImageProcessFailed.
///
/// In zh, this message translates to:
/// **'图片处理失败,请重试'**
String get watchThemeImageProcessFailed;
/// No description provided for @watchThemeAbandonEdit.
///
/// In zh, this message translates to:
/// **'放弃编辑'**
String get watchThemeAbandonEdit;
/// No description provided for @watchThemeAbandonMessage.
///
/// In zh, this message translates to:
/// **'关闭此页面后,已编辑的内容不会保留,是否放弃编辑?'**
String get watchThemeAbandonMessage;
/// No description provided for @watchThemeContinueEditing.
///
/// In zh, this message translates to:
/// **'继续编辑'**
String get watchThemeContinueEditing;
/// No description provided for @watchThemeImageUploadFailed.
///
/// In zh, this message translates to:
/// **'图片上传失败,请重试'**
String get watchThemeImageUploadFailed;
/// 表盘主题图片下载失败提示
///
/// In zh, this message translates to:
/// **'主题图片下载失败:{error}'**
String watchThemeImageDownloadFailed(String error);
/// No description provided for @watchThemeCreateFailed.
///
/// In zh, this message translates to:
/// **'创建表盘失败,请重试'**
String get watchThemeCreateFailed;
/// No description provided for @watchThemeDeleteTheme.
///
/// In zh, this message translates to:
/// **'删除主题'**
String get watchThemeDeleteTheme;
/// No description provided for @watchThemeDeleteMessage.
///
/// In zh, this message translates to:
/// **'主题删除后无法恢复,确认删除该主题吗?'**
String get watchThemeDeleteMessage;
/// No description provided for @watchThemeCancel.
///
/// In zh, this message translates to:
/// **'取消'**
String get watchThemeCancel;
/// No description provided for @watchThemeDeleteFailed.
///
/// In zh, this message translates to:
/// **'删除主题失败'**
String get watchThemeDeleteFailed;
/// No description provided for @watchThemeDeleted.
///
/// In zh, this message translates to:
/// **'已删除主题'**
String get watchThemeDeleted;
/// No description provided for @watchThemeIncomplete.
///
/// In zh, this message translates to:
/// **'主题信息不完整'**
String get watchThemeIncomplete;
/// No description provided for @watchThemeApplyFailed.
///
/// In zh, this message translates to:
/// **'应用主题失败'**
String get watchThemeApplyFailed;
/// No description provided for @watchThemeWatchSyncFailed.
///
/// In zh, this message translates to:
/// **'表盘同步失败'**
String get watchThemeWatchSyncFailed;
/// No description provided for @watchThemePurchaseChannel.
///
/// In zh, this message translates to:
/// **'表盘主题'**
String get watchThemePurchaseChannel;
/// 反馈上传图片或视频的最大限制提示
///
/// In zh, this message translates to:
/// **'最多上传{count}个图片或视频'**
String feedbackMaxImagesLimit(int count);
/// No description provided for @feedbackSelectImageError.
///
/// In zh, this message translates to:
/// **'无法选择图片,请稍后重试'**
String get feedbackSelectImageError;
/// No description provided for @feedbackEmptyContentHint.
///
/// In zh, this message translates to:
/// **'请输入问题和反馈'**
String get feedbackEmptyContentHint;
/// No description provided for @feedbackInvalidEmail.
///
/// In zh, this message translates to:
/// **'邮箱格式错误,请重新输入'**
String get feedbackInvalidEmail;
/// No description provided for @feedbackSubmitSuccessTitle.
///
/// In zh, this message translates to:
/// **'反馈提交成功'**
String get feedbackSubmitSuccessTitle;
/// No description provided for @feedbackSubmitSuccessMessage.
///
/// In zh, this message translates to:
/// **'谢谢您的反馈。如需进一步沟通,我们会尽快通过您留下的邮箱地址与您联系,请留意查收邮件。'**
String get feedbackSubmitSuccessMessage;
/// No description provided for @feedbackSubmitSuccessConfirm.
///
/// In zh, this message translates to:
/// **'好的'**
String get feedbackSubmitSuccessConfirm;
}
class _AppLocalizationsDelegate
extends LocalizationsDelegate<AppLocalizations> {
const _AppLocalizationsDelegate();
@override
Future<AppLocalizations> load(Locale locale) {
return SynchronousFuture<AppLocalizations>(lookupAppLocalizations(locale));
}
@override
bool isSupported(Locale locale) =>
<String>['en', 'zh'].contains(locale.languageCode);
@override
bool shouldReload(_AppLocalizationsDelegate old) => false;
}
AppLocalizations lookupAppLocalizations(Locale locale) {
// Lookup logic when only language code is specified.
switch (locale.languageCode) {
case 'en':
return AppLocalizationsEn();
case 'zh':
return AppLocalizationsZh();
}
throw FlutterError(
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
'an issue with the localizations generation tool. Please file an issue '
'on GitHub with a reproducible sample app and the gen-l10n configuration '
'that was used.');
}