app_localizations_en.dart
66.6 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
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'app_localizations.dart';
// ignore_for_file: type=lint
/// The translations for English (`en`).
class AppLocalizationsEn extends AppLocalizations {
AppLocalizationsEn([String locale = 'en']) : super(locale);
@override
String get appName => 'Double Feel';
@override
String get confirm => 'Confirm';
@override
String get cancel => 'Cancel';
@override
String get continueButton => 'Continue';
@override
String get loading => 'Loading...';
@override
String get success => 'Success';
@override
String get error => 'Error';
@override
String get loginTitle => 'Login';
@override
String get username => 'Username';
@override
String get password => 'Password';
@override
String get loginBtn => 'Sign In';
@override
String get usernameEmptyHint => 'Username cannot be empty';
@override
String get passwordEmptyHint => 'Password cannot be empty';
@override
String get homeTitle => 'Home';
@override
String get tabToday => 'Today';
@override
String get tabTrend => 'Trend';
@override
String get tabFriends => 'Friends';
@override
String get tabMy => 'Me';
@override
String get switchLanguage => 'Switch Language';
@override
String get settings => 'Settings';
@override
String get onboardingIntroTitle =>
'DoubleFeel is a health companion app built for Apple Watch';
@override
String get onboardingIntroBody =>
'<em>Understand yourself better</em>, and let people who care about you <em>notice when you need support.</em>';
@override
String get onboardingStateQuestion => 'Which happens to you often?';
@override
String get onboardingStateStressAnxiety => 'Often stressed or anxious';
@override
String get onboardingStateTired => 'Feel tired easily';
@override
String get onboardingStatePoorRest => 'Wake up feeling tired';
@override
String get onboardingStateNeedStimulants =>
'Rely on stimulants to stay alert';
@override
String get onboardingStateNone => 'None of the above';
@override
String get onboardingStressGoalQuestion =>
'What do you want from stress tracking?';
@override
String get onboardingStressGoalSource => 'Understand stress sources';
@override
String get onboardingStressGoalReminder => 'Get stress reminders';
@override
String get onboardingStressGoalLovedOnes => 'Share stress with loved ones';
@override
String get onboardingStressGoalRelax => 'Feel calmer';
@override
String get onboardingStressGoalBodyTalk => 'Understand my body';
@override
String get onboardingReliefQuestion => 'What helps you relieve stress?';
@override
String get onboardingReliefSleep => 'Better sleep';
@override
String get onboardingReliefCare => 'Care from loved ones';
@override
String get onboardingReliefExercise => 'Exercise more';
@override
String get onboardingReliefSun => 'More sunlight';
@override
String get onboardingReliefWater => 'Drink more water';
@override
String get onboardingReliefMeditation => 'Meditation';
@override
String get onboardingKeyDataTitle => '';
@override
String get onboardingKeyDataSubtitle =>
'Your body has a hidden signal that can help you:';
@override
String get onboardingKeyDataStress => 'Track stress';
@override
String get onboardingKeyDataFatigue => 'Avoid burnout';
@override
String get onboardingKeyDataRecovery => 'Balance recovery';
@override
String get onboardingKeyDataHabits => 'Build healthier habits';
@override
String get onboardingKeyDataLovedOnes => 'Let loved ones care for you sooner';
@override
String get onboardingTellMeWhatItIs => 'Tell me what it is!';
@override
String get onboardingHrvTitle => 'It’s called HRV';
@override
String get onboardingHrvSubtitle =>
'HRV helps reflect your stress, recovery, and overall wellness';
@override
String get onboardingHrvDescription =>
'Heart Rate Variability (HRV) measures tiny changes between heartbeats and reflects how your body responds to stress.';
@override
String get onboardingTellMeMore => 'Tell me more';
@override
String get onboardingResearchTitle =>
'Studies show that HRV changes are closely related to how our body and mind feel';
@override
String get onboardingResearchFatigue => 'Feeling tired';
@override
String get onboardingResearchEnergy => 'Feeling great';
@override
String get onboardingResearchHrvDown => 'HRV';
@override
String get onboardingResearchHrvUp => 'HRV';
@override
String get onboardingHealthPermissionTitle => 'Allow Health Access';
@override
String get onboardingHealthPermissionBody =>
'DoubleFeel uses health data to track stress and wellness.';
@override
String get onboardingHealthPermissionPrivacy =>
'Your health raw data stays private and is never uploaded.';
@override
String get onboardingNotificationTitle => 'Turn on notifications';
@override
String get onboardingNotificationSubtitle => '';
@override
String get onboardingNotificationBody =>
'Get notified when your body shows unusual stress or fatigue signals.';
@override
String get onboardingMemberTitle => 'Get Annual Membership Offer';
@override
String get onboardingMemberBody =>
'Start your stress tracking and wellness journey, and never miss caring moments.';
@override
String get onboardingMemberAllOptions => 'View all purchase options';
@override
String get healthCompanionIsNowAvailable => 'Wellness Companion Activated';
@override
String get youCanNowViewEachOtherSHrvStressLevelsAndSleepPatternsAndReachOutToCheckInWhenTheOtherPersonSeemsTired =>
'You can now track HRV, stress, and sleep changes, and share alerts with loved ones.';
@override
String get bindPartnerTitle => 'Add a Loved One\nFollow your health';
@override
String get bindPartnerMyId => 'My ID';
@override
String get bindPartnerShareMyCode => 'Share My ID';
@override
String get bindPartnerOr => 'or';
@override
String get bindPartnerContactId => 'Loved One’s ID';
@override
String get bindPartnerInputHint => 'Enter here';
@override
String get bindPartnerSkip => 'Maybe Later';
@override
String get onboardingResearchStress => 'Stressed';
@override
String get onboardingResearchRelaxed => 'Relaxed';
@override
String get onboardingResearchSick => 'Feeling sick Unwell';
@override
String get onboardingResearchHealthy => 'Recovering well';
@override
String get onboardingResearchPoorSleep => 'Poor Sleep';
@override
String get onboardingResearchGoodSleep => 'Well rested';
@override
String get loginSlogan =>
'Start your journey of stress insights and caring connection.';
@override
String get loginWithPhone => 'Sign in with Phone';
@override
String get loginWithApple => 'Sign in with Apple';
@override
String get loginLastUsed => 'Last used';
@override
String get loginAgreementPrefix => 'By tapping, you agree to ';
@override
String get loginTerms => 'Terms';
@override
String get loginAgreementAnd => ' & ';
@override
String get loginPrivacy => 'Policy';
@override
String get phoneLoginHello => 'Hello~';
@override
String get phoneLoginWelcome => 'Welcome to Double Feel';
@override
String get phoneLoginPhoneHint => 'Enter phone number';
@override
String get phoneLoginSendCode => 'Send Code';
@override
String get phoneLoginSending => 'Sending';
@override
String phoneLoginSentCountdown(int countdown) {
return 'Sent (${countdown}s)';
}
@override
String get phoneLoginResend => 'Resend';
@override
String get phoneLoginCodeHint => 'Enter verification code';
@override
String get phoneLoginAutoRegisterHint =>
'Unregistered numbers will be registered automatically';
@override
String get phoneLoginLoggingIn => 'Signing in...';
@override
String get loginAgreeToTermsToast =>
'Please read and agree to the Terms of Service and Privacy Policy first';
@override
String get phoneLoginInvalidPhone => 'Invalid phone number';
@override
String get phoneLoginCodeSentSuccess => 'Code sent';
@override
String get phoneLoginInvalidCode => 'Invalid verification code';
@override
String get todayHealthDataAuthTitle => 'Syncing Health Data';
@override
String get todayHealthDataAuthDescription =>
'DoubleFeel needs access to your Apple Health data to provide stress analysis, sleep insights, and health reminders. Please complete health data authorization. If already authorized, the first sync may take a few minutes.\nIf your Apple Watch hasn\'t been worn long enough, there may not be sufficient data yet. Please continue wearing your watch to complete data collection.';
@override
String get todayHealthDataAuthAction => 'Allow Health Access';
@override
String get measureYourHrvNow => 'How to take a measurement';
@override
String get todayBottomSheetGotIt => 'Got it';
@override
String get todayFaqTitle => 'FAQ';
@override
String get todayFaqSectionTitle => 'DoubleFeel FAQ';
@override
String get todayFaqLinkNoData => 'What if the app or watch face has no data?';
@override
String get todayFaqLinkHrvRealtimeUpdate =>
'How can HRV data update in real time?';
@override
String get todayFaqLinkWatchNoStatusNotification =>
'Why can\'t my watch receive status notifications?';
@override
String get todayFaqLinkWatchNoStatusAndInteractionNotification =>
'Why can\'t my watch receive status and interaction notifications?';
@override
String get todayFaqLinkWatchFaceDataDelay =>
'Why is watch face data delayed or not updating?';
@override
String get todayFaqLinkWatchFaceBlackScreen =>
'Why does the watch face turn black?';
@override
String get todayStressStatusTitle => 'Overall stress status';
@override
String get todayHrvPrincipleTitle => 'How HRV is measured';
@override
String get todayRealtimeStressTitle => 'How real-time stress works';
@override
String get todayStressStatusOverload => 'Stress overload';
@override
String get todayStressStatusCaution => 'Stress warning';
@override
String get todayStressStatusNormal => 'Normal';
@override
String get todayStressStatusExcellent => 'Excellent';
@override
String get todayStressStatusInsufficientData => 'Insufficient data';
@override
String get todayStressStatusOverloadDescription =>
'Your current HRV is much lower than your long-term average, which may indicate fatigue, high stress, or insufficient recovery. Rest is recommended.';
@override
String get todayStressStatusCautionDescription =>
'Your current HRV is below the normal range, and your body may be accumulating stress. Pay attention to rest and recovery.';
@override
String get todayStressStatusNormalDescription =>
'Your current body state is within your normal fluctuation range.';
@override
String get todayStressStatusExcellentDescription =>
'Your current HRV is higher than your recent average, indicating better recovery and overall state.';
@override
String get todayStressStatusInsufficientDataDescription =>
'There is not enough available data to accurately assess your stress state yet.';
@override
String get todayHrvMeasurementIntro =>
'Apple Watch measures HRV every 2-5 hours by default. If you want to measure it manually right now, follow these steps:';
@override
String get todayHrvMeasurementStep1 =>
'1. Wear your Apple Watch snugly, sit down, and stay calm';
@override
String get todayHrvMeasurementStep2 =>
'2. Open Mindfulness on Apple Watch and start Breathe';
@override
String get todayHrvMeasurementStep3 =>
'3. Keep breathing steadily and wait 1-3 minutes';
@override
String get todayHrvMeasurementStep4 =>
'4. After breathing is complete, lock and unlock your iPhone once';
@override
String get todayHrvMeasurementStep5 =>
'5. Wait about one minute. DoubleFeel will receive and display your data';
@override
String get todayHrvMeasurementHint =>
'Tip: Data comes from Apple Watch. After measurement, there may be delays or data may not sync immediately. If this happens, measure again and wait for the data to be read.';
@override
String get todayHrvMeasurementWarning =>
'Note: Health permissions must be enabled, and Low Power Mode must be turned off.';
@override
String get todayStressStatusWhatTitle => 'What is overall stress status?';
@override
String get todayStressStatusWhatDescription1 =>
'DoubleFeel combines your HRV (heart rate variability), resting heart rate, and body-state changes from the past 30 days to assess your overall stress level.';
@override
String get todayStressStatusWhatDescription2 =>
'Because HRV fluctuates with emotions, exercise, sleep, and fatigue, a single reading has limited value. We recommend focusing on your overall stress status across the day, which is more stable and useful. It helps you understand your body state and helps close contacts notice changes in time.';
@override
String get todayStressStatusWhyHrvTitle =>
'Why use HRV (heart rate variability)?';
@override
String get todayStressStatusWhyHrvDescription =>
'HRV is an important metric for measuring body stress and recovery capacity.';
@override
String get todayStressStatusUsually => 'In general:';
@override
String get todayStressStatusHrvHigher =>
'· Higher HRV usually means better recovery';
@override
String get todayStressStatusHrvLower =>
'· Lower HRV may indicate fatigue, stress, or insufficient sleep';
@override
String get todayStressStatusHrvChangesFast =>
'· HRV changes quickly, making it useful for short-term body-state changes.';
@override
String get todayStressStatusAppWatchDifferenceTitle =>
'How are stress statuses on the phone app and Apple Watch different?';
@override
String get todayStressStatusAppWatchDifferenceApp =>
'The phone app home page shows the day\'s overall stress status, combining HRV, resting heart rate, and overall trends.';
@override
String get todayStressStatusAppWatchDifferenceWatch =>
'Apple Watch shows the most recent real-time stress status, which is better for quickly checking your current body changes.';
@override
String get todayStressStatusWaitingDataTitle =>
'Why does Waiting for data appear?';
@override
String get todayStressStatusWaitingDataDescription1 =>
'Waiting for data means the current amount of collected data is not enough to generate a reliable stress assessment.';
@override
String get todayStressStatusWaitingDataDescription2 =>
'Please keep wearing your Apple Watch and wait for the system to collect data automatically.';
@override
String get todayStressStatusWaitingDataReasonsIntro =>
'Possible reasons include:';
@override
String get todayStressStatusWaitingDataReason1 => '1. Not enough HRV samples';
@override
String get todayStressStatusWaitingDataReason2 =>
'2. Missing resting heart rate data';
@override
String get todayStressStatusWaitingDataReason3 =>
'3. Apple Watch has not been worn long enough';
@override
String get todayStressStatusWaitingDataReason4 =>
'4. Apple Health permissions are not enabled';
@override
String get todayHrvPrincipleHowMeasureTitle =>
'How does DoubleFeel measure stress status?';
@override
String get todayHrvPrincipleHowMeasureDescription1 =>
'When you wear Apple Watch normally, the system automatically collects your heart rate data and syncs it to Apple Health.';
@override
String get todayHrvPrincipleHowMeasureDescription2 =>
'DoubleFeel calculates HRV (heart rate variability) indicators based on this data to assess your body stress and recovery state.';
@override
String get todayHrvPrincipleHowMeasureDescription3 =>
'HRV is sensitive to stress, fatigue, sleep, emotions, and recovery, so it helps us notice body-state changes earlier.';
@override
String get todayHrvPrincipleHowMeasureDescription4 =>
'To make results more accurate, DoubleFeel compares your current HRV state with your own 30-day average instead of comparing it directly with other people.';
@override
String get todayRealtimeStressWhatTitle => 'What is real-time stress?';
@override
String get todayRealtimeStressWhatDescription1 =>
'Real-time stress is a body stress indicator dynamically generated by DoubleFeel based on your current HRV, heart rate state, and changes in your personal history.';
@override
String get todayRealtimeStressWhatDescription2 =>
'A higher stress value means your body state is deviating more from your usual baseline and may reflect fatigue, insufficient recovery, or high stress.';
@override
String get todayRealtimeStressWhatDescription3 =>
'It helps you notice body changes faster and adjust rest, exercise, and daily rhythm in time.';
@override
String get todayRealtimeStressDivisionTitle =>
'How is real-time stress divided?';
@override
String get todayRealtimeStressDivisionIntro =>
'Real-time stress is shown as a percentage:';
@override
String get todayRealtimeStressExcellentRange => 'Excellent: 1%-20%';
@override
String get todayRealtimeStressNormalRange => 'Normal: 21%-60%';
@override
String get todayRealtimeStressCautionRange => 'Stress warning: 61%-80%';
@override
String get todayRealtimeStressOverloadRange => 'Stress overload: 81%-100%';
@override
String get todayRealtimeStressExcellentDescription =>
'Your recovery state is good and you are generally relaxed.';
@override
String get todayRealtimeStressNormalDescription =>
'Your body is within the normal fluctuation range.';
@override
String get todayRealtimeStressCautionDescription =>
'Your body may be accumulating stress and needs proper rest and recovery.';
@override
String get todayRealtimeStressOverloadDescription =>
'Your body stress is clearly high. Reduce load and pay attention to sleep and recovery.';
@override
String get todayRealtimeStressDivisionBaseline =>
'These ranges are adjusted dynamically based on your personal baseline and should not be directly compared between users.';
@override
String get todayRealtimeStressDivisionAwake =>
'Real-time stress mainly reflects body stress changes while awake.';
@override
String get todayRealtimeStressLowBetterTitle =>
'Is lower real-time stress always better?';
@override
String get todayRealtimeStressLowBetterNo => 'Not necessarily.';
@override
String get todayRealtimeStressLowBetterType =>
'Body stress can be normal or abnormal.';
@override
String get todayRealtimeStressLowBetterExample =>
'For example, real-time stress rising briefly during or after exercise is a normal recovery response. It can also rise temporarily during focused work or emotional excitement, which are normal body adjustments.';
@override
String get todayRealtimeStressLowBetterHighStress =>
'But if stress remains high while resting, sitting for a long time, or after poor sleep, it may indicate physical fatigue, mental stress, insufficient sleep recovery, incomplete exercise recovery, too much caffeine, alcohol, stimulants, or possible discomfort.';
@override
String get todayRealtimeStressLowBetterTrend =>
'DoubleFeel focuses more on your long-term trend than on a single fluctuation.';
@override
String get todayRealtimeStressScenarioTitle =>
'When should HRV and real-time stress be used?';
@override
String get todayRealtimeStressScenarioHrvDefault =>
'With Apple Watch default settings, HRV updates every 2-5 hours.';
@override
String get todayRealtimeStressScenarioRegionLimit =>
'In some regions, Apple Watch breathing features may be limited, which can affect HRV update frequency. Turning on breathing features may also consume more battery.';
@override
String get todayRealtimeStressScenarioIntro =>
'To address the long interval between HRV updates, DoubleFeel designed real-time stress:';
@override
String get todayRealtimeStressScenarioUpdateEvery6Min =>
'· Real-time stress updates every 6 minutes (Friend status updates rely on Apple Health sync and may experience brief delays due to system mechanisms. If your friend uses DoubleFeel frequently, their health status will be updated more promptly)';
@override
String get todayRealtimeStressScenarioTimely =>
'· It can reflect body-state changes more promptly';
@override
String get todayRealtimeStressScenarioConsistentTrend =>
'· In most cases, the real-time stress trend is consistent with the HRV trend';
@override
String get todayRealtimeStressScenarioSummary =>
'This lets users see long-term HRV trends while also using real-time stress as a short-term body-state reference.';
@override
String get todayFaqNoDataTitle =>
'What if the app or watch face has no data?';
@override
String get todayFaqNoDataDescription1 =>
'1. Confirm that Apple Watch is on watchOS 10.0 or above and iPhone is on iOS 14 or above. You can check system versions in About.';
@override
String get todayFaqNoDataDescription2 =>
'2. Confirm all permissions are enabled: iPhone Health > Sharing > Apps > DoubleFeel > Turn On All Permissions.';
@override
String get todayFaqNoDataDescription3 =>
'3. Confirm the device is not in Low Power Mode, low battery, or worn too loosely, as these can affect data collection.';
@override
String get todayFaqContactPrefix =>
'If everything above is correct, you can ';
@override
String get todayFaqContactAction => 'contact us';
@override
String get todayFaqContactSuffix => '.';
@override
String get todayFaqWatchNoNotificationTitle =>
'Watch cannot receive status notifications?';
@override
String get todayFaqWatchNoNotificationDescription1 =>
'Apple Watch and iPhone notifications have priority rules: when your iPhone is unlocked and the screen is on, notifications only appear on the phone and will not appear on the watch.';
@override
String get todayFaqWatchNoNotificationDescription2 =>
'If stress data displays and updates normally but your watch does not receive notifications, try the following:';
@override
String get todayFaqWatchNoNotificationCheckPhoneNotification =>
'1. Check whether iPhone notifications are enabled (Settings > DoubleFeel > Notifications).';
@override
String get todayFaqWatchNoNotificationCheckPhoneBackgroundRefresh =>
'2. Check whether iPhone Background App Refresh is enabled (Settings > DoubleFeel > Background App Refresh).';
@override
String get todayFaqWatchNoNotificationCheckWatchBackgroundRefresh =>
'3. Check whether Apple Watch Background App Refresh is enabled (Settings > General > Background App Refresh, and make sure DoubleFeel is enabled).';
@override
String get todayFaqWatchNoNotificationCheckModes =>
'4. Make sure Low Power, Focus, Do Not Disturb, Theater, Sleep, and similar modes are off.';
@override
String get todayFaqWatchNoNotificationReinstall =>
'5. Reinstall DoubleFeel and restart Apple Watch and iPhone.';
@override
String get todayFaqWatchFaceDelayTitle =>
'Watch face data not updating or delayed?';
@override
String get todayFaqWatchFaceDelayDescription1 =>
'Due to Apple system limits, all watch faces, third-party or official, may have delays from a few minutes to half an hour. Developers cannot control the refresh frequency.';
@override
String get todayFaqWatchFaceDelayIfOverOneHour =>
'If the phone data refreshes but the watch face still has not updated after more than 1 hour:';
@override
String get todayFaqWatchFaceDelayOpenWatchApp =>
'Manually open DoubleFeel on Apple Watch and wait about 1 minute.';
@override
String get todayFaqWatchFaceDelayIfStill => 'If it still does not update:';
@override
String get todayFaqWatchFaceDelayRestartApp =>
'Close the DoubleFeel background process and restart it.';
@override
String get todayFaqWatchFaceDelayCheckIntro =>
'If it still does not work, check:';
@override
String get todayFaqWatchFaceDelayCheckData =>
'· Whether both phone and watch apps can show HRV data normally.';
@override
String get todayFaqWatchFaceDelayCheckPhoneHealth =>
'· Make sure all permissions are enabled on iPhone: iOS Settings > Privacy & Security > Health > DoubleFeel.';
@override
String get todayFaqWatchFaceDelayCheckWatchHealth =>
'· Make sure all permissions are enabled on Apple Watch: Settings > Health > Data Sources & Access > DoubleFeel.';
@override
String get todayFaqWatchFaceDelayCheckBackgroundRefresh =>
'· Confirm DoubleFeel is enabled in Apple Watch > Settings > General > Background App Refresh.';
@override
String get todayFaqWatchFaceDelayRestartWatch =>
'· If it still does not refresh automatically, restart Apple Watch. Long runtimes or high background usage may cause watch face updates to pause.';
@override
String get todayFaqWatchFaceBlackScreenTitle => 'Watch face turns black?';
@override
String get todayFaqWatchFaceBlackScreenDescription =>
'If the custom interactive watch face turns black after being added and only shows time and date, long-press the watch face, tap Edit, swipe left to Complications, choose DoubleFeel, and add each component again as needed.';
@override
String get today => 'Today';
@override
String get yesterday => 'Yesterday';
@override
String get backToToday => 'Back to Today';
@override
String get redeemOffer => 'Redeem Offer';
@override
String get allPlans => 'All Plans';
@override
String get clickToAddTheHrvThemedWatchFace =>
'Click to add the HRV-themed watch face';
@override
String get stayOnTopOfYourHealthFluctuations =>
'Stay on top of your health fluctuations';
@override
String get addACloseContact => 'Add a close contact';
@override
String get oneMorePersonLookingOutForYourHealth =>
'One more person looking out for your health';
@override
String get addAFriend => 'Add a friend';
@override
String get averageHrvForTheDay => 'Average HRV for the day';
@override
String get restingHeartRate => 'Resting heart rate';
@override
String get todaySHrvTrend => 'Today\'s HRV Trend';
@override
String get more => 'More';
@override
String get noDataAvailableForToday => 'No data available for today';
@override
String get realTimePressure => 'Real-time pressure';
@override
String get accountInformation => 'Account Information';
@override
String get help => 'Help';
@override
String get changeNickname => 'Change Nickname';
@override
String get pleaseEnterANickname => 'Please enter a nickname';
@override
String get feedbackLog => 'Feedback Log';
@override
String get noFeedbackRecordsYet => 'No feedback records yet';
@override
String get feedbackDetails => 'Feedback Details';
@override
String get reportAnIssue => 'Report an Issue';
@override
String get contactInformation => 'Contact Information';
@override
String get submit => 'Submit';
@override
String get questionsAndFeedback => 'Questions and Feedback';
@override
String get ifYouWouldLikeUsToReplyPleaseProvideYourEmailAddress =>
'If you would like us to reply, please provide your email address';
@override
String get feedbackHintText =>
'1. Please describe the screen and scenario where the issue occurred\n2. Please provide screenshots to help us resolve the issue more efficiently\n3. Please leave your contact information so we can get back to you as soon as possible';
@override
String get uploadProof => 'Upload Proof';
@override
String get frequentlyAskedQuestions => 'Frequently Asked Questions';
@override
String get areYouSureYouWantToDeleteYourAccount =>
'Are you sure you want to delete your account?';
@override
String get accountSettings => 'Account Settings';
@override
String get deleteAccount => 'Delete Account';
@override
String get mobilePhoneNumber => 'Mobile phone number';
@override
String get logOut => 'Log Out';
@override
String get confirmLogoutPrompt => 'Are you sure you want to log out?';
@override
String get confirmLogout => 'Log Out';
@override
String get loggedOutSuccessfully => 'Logged out successfully';
@override
String get accountDeletedSuccessfully => 'Account deleted successfully';
@override
String get deleteAccountWarningTitle =>
'Once deleted, the account cannot be recovered! Please proceed with caution.';
@override
String get deleteAccountWarningPrompt =>
'Note: Deleting the account will remove all information in this account, including but not limited to\npersonal profile, mood records, and statistical data.';
@override
String get deleteAccountWarningNote1 =>
'Note 1: Your health data will be saved in Apple Health, and we will not delete data from Apple Health.';
@override
String get deleteAccountWarningNote2 =>
'Note 2: Deleting the account will not affect your subscription status in the App Store. If you need to cancel the subscription, please cancel it manually in the App Store -> Profile -> Subscriptions.';
@override
String get confirmDeletion => 'Confirm Deletion';
@override
String get iLlThinkAboutItSomeMore => 'I\'ll think about it some more.';
@override
String get sleep => 'Sleep';
@override
String get viewSleepReport => 'View Sleep Report';
@override
String get duration => 'Duration';
@override
String get quality => 'Quality';
@override
String get averageHeartRate => 'Average heart rate';
@override
String get fitness => 'Fitness';
@override
String get viewFitnessReport => 'View Fitness Report';
@override
String get event => 'Event';
@override
String get exercise => 'Exercise';
@override
String get standing => 'Standing';
@override
String get dailyActions => 'Daily Actions';
@override
String get trendHrvHeartRate => 'HRV';
@override
String get trendActivityBurn => 'Activity';
@override
String get trendSleepReport => 'Sleep';
@override
String get reportPeriodDay => 'Day';
@override
String get reportPeriodWeek => 'Week';
@override
String get reportPeriodMonth => 'Month';
@override
String get reportPeriodYear => 'Year';
@override
String reportDateYear(int year) {
return '$year';
}
@override
String reportDateMonth(int month) {
return 'Month $month';
}
@override
String reportDateMonthDay(int month, int day) {
return '$month/$day';
}
@override
String reportDateYearMonthDay(int year, int month, int day) {
return '$month/$day/$year';
}
@override
String get reportDatePickerTitle => 'Select Date';
@override
String get reportDatePickerConfirm => 'Confirm';
@override
String reportDatePickerYearOption(int year) {
return '$year';
}
@override
String reportDatePickerMonthOption(int month) {
return '$month';
}
@override
String reportDatePickerDayOption(int day) {
return '$day';
}
@override
String get reportWaitingForData => 'Waiting for data';
@override
String get reportWaitingForOtherData => 'Waiting for their data';
@override
String get reportNoData => 'No data';
@override
String get reportNoDataToday => 'No data for today';
@override
String get reportUnitDay => 'days';
@override
String get reportUnitHour => 'hr';
@override
String get reportUnitMinute => 'min';
@override
String get reportUnitScore => 'pts';
@override
String get reportUnitKcal => 'kcal';
@override
String get reportWeekdayMonday => 'Mon';
@override
String get reportWeekdayTuesday => 'Tue';
@override
String get reportWeekdayWednesday => 'Wed';
@override
String get reportWeekdayThursday => 'Thu';
@override
String get reportWeekdayFriday => 'Fri';
@override
String get reportWeekdaySaturday => 'Sat';
@override
String get reportWeekdaySunday => 'Sun';
@override
String reportDateWithWeekday(String date, String weekday) {
return '$date, $weekday';
}
@override
String reportOtherPossessiveTitle(String title) {
return '$title';
}
@override
String reportOtherTitle(String title) {
return '$title';
}
@override
String get reportTrend => 'Trends';
@override
String reportExampleTitle(String title) {
return '$title (Example)';
}
@override
String get hrvStressExcellent => 'Excellent';
@override
String get hrvStressNormal => 'Normal';
@override
String get hrvStressAttention => 'Stress alert';
@override
String get hrvStressOverload => 'Stress overload';
@override
String get sleepQualityGreat => 'Great sleep';
@override
String get sleepQualityGood => 'Good sleep';
@override
String get sleepQualityPoor => 'Poor sleep';
@override
String get sleepQualityExcellent => 'Excellent';
@override
String get sleepQualityNormal => 'Normal';
@override
String get sleepQualityAttention => 'Needs attention';
@override
String get hrvDailyStressTrend => 'Daily Stress Trend';
@override
String get hrvMonthlyStressTrend => 'Monthly Stress Trend';
@override
String get hrvMoreRelaxed => 'More relaxed';
@override
String get hrvMoreStressed => 'More stressed';
@override
String get hrvStressDistribution => 'Stress Distribution';
@override
String get hrvDailyStressDistribution => 'Daily Stress Distribution';
@override
String get hrvRelaxedAxisLabel => 'Relaxed';
@override
String get hrvStressedAxisLabel => 'Stressed';
@override
String get hrvEmptyMonthPlaceholder => '-';
@override
String get hrvEmptyMonthDayPlaceholder => '-';
@override
String get hrvValidDays => 'Valid HRV days';
@override
String get hrvLowest => 'Lowest HRV';
@override
String get hrvHighest => 'Highest HRV';
@override
String get hrvMostStressed => 'Most stressed';
@override
String get hrvLeastStressed => 'Least stressed';
@override
String get hrvMostRelaxed => 'Most relaxed';
@override
String get hrvComparedLastWeekUnavailable => 'Compared with last week: -';
@override
String get hrvSameAsLastWeek => 'Same as last week';
@override
String hrvMoreDaysThanLastWeek(int count) {
return '$count more days than last week';
}
@override
String hrvFewerDaysThanLastWeek(int count) {
return '$count fewer days than last week';
}
@override
String get hrvComparedLastMonthUnavailable => 'Compared with last month: -';
@override
String get hrvSameAsLastMonth => 'Same as last month';
@override
String hrvMoreDaysThanLastMonth(int count) {
return '$count more days than last month';
}
@override
String hrvFewerDaysThanLastMonth(int count) {
return '$count fewer days than last month';
}
@override
String get hrvUnlockNow => 'Unlock Now';
@override
String get hrvTrendTitle => 'HRV Trend';
@override
String hrvPeriodAverage(String period) {
return 'This $period average';
}
@override
String hrvComparedPreviousPeriod(String period) {
return 'vs previous $period';
}
@override
String hrvPeriodTrendChart(String period) {
return 'HRV $period Trend Chart';
}
@override
String get activityTotalBurn => 'Total Activity Burn';
@override
String get activityExerciseTotalDuration => 'Total Exercise Time';
@override
String get activityStandTotalDuration => 'Total Stand Time';
@override
String get activityPerfectRings => 'Perfect Rings';
@override
String get activityCloseMoveRing => 'Move Ring Closed';
@override
String get activityCloseExerciseRing => 'Exercise Ring Closed';
@override
String get activityCloseStandRing => 'Stand Ring Closed';
@override
String get activityCalorieTrend => 'Calorie Burn Trend';
@override
String get activityKcalDailyAverage => 'kcal/daily average';
@override
String get activityComparedLastWeek => '34% less than last week';
@override
String get activityComparedLastMonth => '34% less than last month';
@override
String get activityComparedUnavailable => 'Compared with last week: -';
@override
String get activityComparedLastMonthUnavailable =>
'Compared with last month: -';
@override
String get activitySameAsLastWeek => 'Same as last week';
@override
String activityMoreThanLastWeek(int percent) {
return '$percent% more than last week';
}
@override
String activityLessThanLastWeek(int percent) {
return '$percent% less than last week';
}
@override
String get activitySameAsLastMonth => 'Same as last month';
@override
String activityMoreThanLastMonth(int percent) {
return '$percent% more than last month';
}
@override
String activityLessThanLastMonth(int percent) {
return '$percent% less than last month';
}
@override
String get activityTrendTitle => 'Activity Burn Trend';
@override
String activityPeriodTotalBurn(String period) {
return 'This $period total burn';
}
@override
String get activityDailyAverageBurn => 'Daily average burn';
@override
String activityPeriodTrendChart(String period) {
return 'Activity Burn $period Trend Chart';
}
@override
String get activityMove => 'Move';
@override
String get activityExercise => 'Exercise';
@override
String get activityStand => 'Stand';
@override
String get activityHeartRateZone => 'Heart Rate Zones';
@override
String get activityRealtimeHeartRate => 'Real-time Heart Rate';
@override
String get sleepDurationTitle => 'Sleep Duration';
@override
String get sleepQualityTitle => 'Sleep Quality';
@override
String get sleepHeartRateTitle => 'Sleep Heart Rate';
@override
String get sleepLongest => 'Longest Sleep';
@override
String get sleepShortest => 'Shortest Sleep';
@override
String get sleepBestQuality => 'Best Quality';
@override
String get sleepWorstQuality => 'Lowest Quality';
@override
String get sleepBedtime => 'Bedtime';
@override
String get sleepEarliestBedtime => 'Earliest Bedtime';
@override
String get sleepLatestBedtime => 'Latest Bedtime';
@override
String get sleepAverageDuration => 'Average Duration';
@override
String get sleepAverageQuality => 'Average Quality';
@override
String get sleepPreviousWeek => 'last week';
@override
String get sleepPreviousMonth => 'last month';
@override
String sleepComparedPercent(String period, String value) {
return '$value% vs. $period';
}
@override
String sleepDurationValue(int hours, int minutes) {
return '$hours hr $minutes min';
}
@override
String sleepQualityScore(String level, int score) {
return '$level: $score pts';
}
@override
String sleepFellAsleepAt(String time) {
return 'Asleep at $time';
}
@override
String get sleepAverage => 'Average';
@override
String get sleepTarget => 'Target';
@override
String get sleepHighest => 'Highest';
@override
String get sleepLowest => 'Lowest';
@override
String get sleepTrendTitle => 'Sleep Report Trend';
@override
String sleepPeriodAverageDuration(String period) {
return 'This $period average sleep';
}
@override
String get sleepDeepSleepRatio => 'Deep sleep ratio';
@override
String sleepDurationPeriodTrendChart(String period) {
return 'Sleep Duration $period Trend Chart';
}
@override
String get sleepEmptyDateWithWeekday => '-';
@override
String get sleepQualityDescription =>
'DoubleFeel calculates your daily sleep quality score from sleep duration, sleep stages, deep sleep and recovery, nighttime heart rate, and HRV changes.\nThis score helps you understand your recovery and sleep performance more clearly.';
@override
String get sleepQualityAttentionRange => '<60 pts';
@override
String get sleepQualityNormalRange => '60–85 pts';
@override
String get sleepQualityExcellentRange => '>85 pts';
@override
String get friendsAddCloseContactDescription =>
'Add a close contact so someone else can look out for your health';
@override
String get friendsLimitReached => 'You can add up to 10 friends';
@override
String get friendsAddCloseContact => 'Add a close contact';
@override
String friendsAddCloseContactWithCount(int count, int max) {
return 'Add a close contact ($count/$max)';
}
@override
String get friendsMe => 'Me';
@override
String friendsRemarkedDisplayName(String remark, String name) {
return '$remark ($name)';
}
@override
String friendsRemarkSuffix(String remark) {
return ' ($remark)';
}
@override
String get friendsUnknownFriend => 'Unknown friend';
@override
String friendsUpdatedAt(String time) {
return 'Updated at $time';
}
@override
String friendsRealtimeStressUpdatedAt(String time) {
return 'Real-time stress updated at $time';
}
@override
String friendsHrvUpdatedAt(String time) {
return 'HRV updated at $time';
}
@override
String friendsStepCount(int count) {
return '$count steps';
}
@override
String get friendsStressAttention => 'Stress alert';
@override
String get friendsWaitingForData => 'Waiting for data';
@override
String get friendsSleepQuality => 'Sleep quality';
@override
String get friendsTodaySteps => 'Steps today';
@override
String get friendsSleepQualityExcellent => 'Slept great';
@override
String get friendsSleepQualityNormal => 'Slept well';
@override
String get friendsSleepQualityAttention => 'Slept poorly';
@override
String get friendsRemove => 'Remove';
@override
String get friendsEditRemark => 'Edit nickname';
@override
String get friendsShowOnWatchFace => 'Show on watch';
@override
String get friendsShownOnWatchFace => 'Shown on watch';
@override
String get friendsSelect => 'Select a friend';
@override
String get friendsSelectAndSync => 'Select and sync to watch';
@override
String get friendsBack => 'Back';
@override
String friendsTrendTitle(String name) {
return '$name\'s Trends';
}
@override
String get friendsAddAction => 'Add';
@override
String get friendsEnterId => 'Enter ID';
@override
String get friendsPromptGotIt => 'Got it';
@override
String get friendsPromptIdNotFoundTitle => 'ID not found';
@override
String get friendsPromptAlreadyFriendTitle => 'Already a close contact';
@override
String get friendsPromptSelfIdTitle => 'You can\'t add yourself';
@override
String get friendsPromptIdNotFoundMessage =>
'This ID doesn\'t exist. Check it and try again.';
@override
String get friendsPromptAlreadyFriendMessage =>
'You\'re already close contacts.';
@override
String get friendsPromptSelfIdMessage => 'Enter your close contact\'s ID.';
@override
String get friendsEditRemarkTitle => 'Edit friend nickname';
@override
String get friendsEditRemarkHint => 'Enter a nickname';
@override
String get friendsSave => 'Save';
@override
String friendsDeleteConfirmTitle(String name) {
return 'Remove $name from your friends?';
}
@override
String get friendsDeleteConfirmMessage =>
'You will no longer be able to view their mood or health status.';
@override
String get friendsDeleteConfirmAction => 'Remove';
@override
String get privacySettingsTitle => 'Privacy Settings';
@override
String get privacySettingsDisableAddById =>
'Don\'t allow others to add me by ID';
@override
String get privacySettingsShowRealtimeStress => 'Show real-time stress';
@override
String get premiumActivatedTitle => 'DoubleFeel Pro is now active';
@override
String get premiumActivatedDescription =>
'You can now monitor stress, sleep, and HRV in real time, build healthier habits, and share health updates with close contacts so the people who matter can stay informed.';
@override
String get premiumActivatedContinue => 'Continue';
@override
String get purchaseHeroTitle => 'Unlock Pro for more timely care';
@override
String get purchaseBenefitsTitle => 'Enjoy all premium benefits';
@override
String get purchaseUnlockNow => 'Unlock Now';
@override
String get purchaseRestore => 'Restore';
@override
String get purchaseTermsOfService => 'Terms of Service';
@override
String get purchasePrivacyPolicy => 'Privacy Policy';
@override
String get purchaseLifetimePlan => 'Lifetime';
@override
String get purchaseLifetimeSubtitle => 'Lifetime access with free updates';
@override
String get purchaseSpecialOffer => 'Special Offer';
@override
String get purchaseAnnualPlan => 'Annual';
@override
String get purchaseAnnualSubtitle => 'Only ¥6.5 per month';
@override
String get purchaseAnnualDiscount => '20% Off';
@override
String get purchaseCurrencySymbol => '¥';
@override
String get purchaseProductInfoUnavailable =>
'Product information is unavailable. Please try again later.';
@override
String get purchaseOrderInfoUnavailable =>
'Order information is unavailable. Please try again later.';
@override
String purchaseMonthlyUnitPrice(String unitPrice) {
return 'Only $unitPrice per month';
}
@override
String get purchaseApplePaymentInvalidOrder => 'Invalid UUID format.';
@override
String get purchaseApplePaymentProductNotFound =>
'Failed to find product by product ID.';
@override
String get purchaseApplePaymentCancelled => 'The user cancelled the payment.';
@override
String get purchaseApplePaymentVerificationFailed =>
'Payment verification failed.';
@override
String get purchaseApplePaymentFailed => 'Unknown error.';
@override
String get purchaseBenefitRealtimeStress => 'Real-time stress monitoring';
@override
String get purchaseBenefitStressTrends =>
'Weekly, monthly, and yearly stress trends';
@override
String get purchaseBenefitActivityTrends =>
'Weekly, monthly, and yearly activity trends';
@override
String get purchaseBenefitSleepReports =>
'Weekly, monthly, and yearly sleep reports';
@override
String get purchaseBenefitHealthSync => 'Real-time health data sync';
@override
String get purchaseBenefitContactNotifications =>
'Real-time health updates for close contacts';
@override
String get purchaseBenefitCustomWatchFace => 'Exclusive custom watch faces';
@override
String get purchaseBenefitSleepAnalysis => 'Sleep analysis';
@override
String get purchaseBenefitFutureFeatures =>
'Free access to future premium features';
@override
String get purchaseNotesTitle => 'Notes';
@override
String get purchaseNoteSubscription =>
'After you confirm and pay, the subscription will renew automatically through your iTunes account. Your Apple account will be charged within 24 hours before the current period ends, and the subscription will renew for another period. To cancel, turn off auto-renewal in your iTunes/Apple ID subscription settings at least 24 hours before the current period ends.\n\nDoubleFeel Pro is a virtual product. Purchases are non-refundable except through the App Store refund process. Tap ';
@override
String get purchaseLinkLearnMore => 'Learn More';
@override
String get purchaseNoteRestore =>
'If your purchase does not take effect, tap Restore Purchases.';
@override
String get purchaseNoteContact => 'If you have any other questions, ';
@override
String get purchaseLinkContactUs => 'Contact Us';
@override
String get reportBottomSlogan => 'FEEL MORE, STRESS LESS';
@override
String get refundExplanationTitle => 'Refund Information';
@override
String get refundAppStoreReviewTitle =>
'Refunds are reviewed by the App Store';
@override
String get refundAppStoreReviewDescription =>
'All subscriptions and virtual products are purchased through the official App Store payment system. DoubleFeel cannot directly process payments or refunds.';
@override
String get refundAppleRulesIntroduction => 'Under Apple\'s platform rules:';
@override
String get refundAppleCollectsPayments =>
' · All payments are collected by the App Store';
@override
String get refundAppleReviewsRequests =>
' · All refund requests are reviewed by Apple';
@override
String get refundDeveloperCannotSubmit =>
' · Developers cannot submit requests for users';
@override
String get refundDeveloperCannotIntervene =>
' · Developers cannot influence Apple\'s decision';
@override
String get refundAppStoreFinalDecision =>
'Your refund request will therefore be decided by the App Store.';
@override
String get refundMayBeRejectedTitle => 'The App Store may reject a refund';
@override
String get refundNoUnconditionalRefunds =>
'Apple\'s refund policy does not provide unconditional refunds in every situation.';
@override
String get refundAppleTermsDescription =>
'By using the App Store, you agree to Apple\'s terms of service and refund rules. https://www.apple.com/legal/internet-services/itunes/';
@override
String get refundAppleReviewsCircumstances =>
'Apple reviews the order, account history, and actual usage when deciding whether to approve a refund.';
@override
String get refundRejectionReasonsTitle => 'Why might a refund be rejected?';
@override
String get refundRejectionReasonsIntroduction =>
'The App Store may reject a request for reasons including, but not limited to:';
@override
String get refundReasonPurchaseTooOld =>
' · Too much time has passed since purchase';
@override
String get refundReasonFrequentRequests =>
' · Frequent requests from the same account';
@override
String get refundReasonAbnormalHistory =>
' · A history of unusual refund activity';
@override
String get refundReasonInsufficient => ' · An insufficient refund reason';
@override
String get refundReasonLongTermUse =>
' · Extended normal use of membership features';
@override
String get refundReasonPriceChange =>
' · Promotions, discounts, or price changes';
@override
String get refundReasonNoReceipt =>
' · No valid order receipt can be provided';
@override
String get refundOfficialDecision =>
'The App Store\'s final decision applies.';
@override
String get refundRejectedNextStepsTitle => 'What if my request is rejected?';
@override
String get refundTryAgain =>
'If your refund request is rejected, you can try submitting it to the App Store again.';
@override
String get refundFinalReview =>
'If it is rejected again, the App Store has completed its final review. Neither DoubleFeel nor Apple Support can change the result.';
@override
String get refundNoAlternativeChannel =>
'DoubleFeel cannot process refund requests outside the App Store system.';
@override
String get refundMembershipCancellation =>
'After a successful refund, your DoubleFeel Pro benefits will also be canceled.';
@override
String get refundHelpTitle => 'Need help?';
@override
String get refundHelpDescription =>
'If you have questions about refunds or experience payment errors, duplicate charges, or a missing order, contact DoubleFeel Support and we will do our best to assist.';
@override
String get refundFaqTitle => 'DoubleFeel FAQs';
@override
String get appReviewPromptTitle => 'Enjoying DoubleFeel?';
@override
String get appReviewPromptMessage =>
'Hi! Is DoubleFeel helping you better understand\nyour stress and sleep? 💜';
@override
String get appReviewPromptLikeActionEmoji => '😍';
@override
String get appReviewPromptLikeAction => 'Love it';
@override
String get appReviewPromptFeedbackAction => 'I have feedback';
@override
String get appReviewFeedbackTitle =>
'We\'re sorry DoubleFeel didn\'t give you\na good experience';
@override
String get appReviewFeedbackMessage =>
'Would you tell us what went wrong?\nYour feedback helps us improve the stress and health experience. 💜';
@override
String get appReviewFeedbackSendAction => 'Send Feedback';
@override
String get appReviewFeedbackLaterAction => 'Maybe Later';
@override
String get appReviewIllustrationPlaceholder => 'Illustration Placeholder';
@override
String get overallStressLevelToday => 'Overall Stress Level Today';
@override
String get stressLevelsOnThatDay => 'Stress Levels on That Day';
@override
String get noPressureDataAvailableAtThisTime =>
'No pressure data available at this time';
@override
String get membersCanViewTheCompleteData =>
'Members can view the complete data';
@override
String get unlockNow => 'Unlock Now';
@override
String get pressureOverload => 'Pressure Overload';
@override
String get beMindfulOfStress => 'Be Aware of Stress';
@override
String get statusNormal => 'Status: Normal';
@override
String get inExcellentCondition => 'In excellent condition';
@override
String get waitingForData => 'Waiting for data';
@override
String get pressure => 'Pressure';
@override
String get mostRecent => 'Most recent';
@override
String get theDayBeforeYesterday => 'The day before yesterday';
@override
String get uploadPhotos => 'Upload Photos';
@override
String get filming => 'Filming';
@override
String get unlockTheProVersion => 'Unlock the Pro Version';
@override
String get embarkOnAJourneyOfStressAwarenessAndWellnessSupport =>
'Embark on a Journey of Stress Awareness and Wellness Support';
@override
String sharePartnerCodeTemplate(String inviteCode) {
return 'My friend ID: $inviteCode. Hey ❤️ Come and use DoubleFeel with me! It helps us care for each other—track stress and sleep, view HRV and body status, and stay updated on each other\'s health in real-time. Come join me 👉 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';
}
@override
String get bindPartnerIdNotExistTitle => 'ID does not exist';
@override
String get bindPartnerIdNotExistMessage =>
'This ID does not exist. Please check and try again';
@override
String get bindPartnerDialogGotIt => 'Got it';
@override
String get bindPartnerAddFailedTitle => 'Failed to add';
@override
String get bindPartnerAddFailedMessage =>
'This user does not allow adding friends, cannot add them';
@override
String get bindPartnerAlreadyFriendTitle => 'They are already your friend';
@override
String get bindPartnerAlreadyFriendMessage => 'Please do not add again';
@override
String friendStatusTitle(String remarkName) {
return '$remarkName\'s Status';
}
@override
String get annualMemberDiscounts => 'Annual Member Discounts';
@override
String get specialOffers => 'Special Offers';
@override
String get currentPrice => 'Current Price';
@override
String originalPrice(String price) {
return 'Original price $price';
}
@override
String get freeRedemptionOffer => 'Free Redemption Offer';
@override
String get cellPhoneNumber => 'Cell phone number';
@override
String get todayOnWeeklyCalendar => 'today';
@override
String get hrvTrendForThatDay => 'HRV Trend for That Day';
@override
String get todaySAverageHrv => 'Today\'s Average HRV';
@override
String get helpNoDataReason1 =>
'1. Ensure your Apple Watch is on watchOS 10.0+ and iPhone is on iOS 14+. The system version can be checked in [Settings] -> [General] -> [About].';
@override
String get helpNoDataReason2 =>
'2. Confirm if all permissions are enabled: iPhone [Health] -> [Sharing] -> [Apps] -> [DoubleFeel] -> [Turn On All].';
@override
String get helpNoDataReason3 =>
'3. Confirm if devices are in power-saving mode, low battery status, or if the watch is not worn snugly, as these conditions affect watch data collection.';
@override
String get helpNoDataReasonFooter =>
'If all checks are correct and the issue persists, you can submit the problem in [Feedback] -> [Contact Us]. We will reply as soon as possible.';
@override
String get noHealthDataNeedHelp => 'Need help?';
@override
String get noHealthDataRefresh => 'Refresh';
@override
String get noHealthDataHeadingTitle => 'No Heart Rate Data Available';
@override
String get noHealthDataHeadingBody =>
'DoubleFeel is unable to retrieve your HRV data from Apple Health. Please follow the instructions to grant permissions, then tap \'Refresh\' in the top right to continue.';
@override
String get noHealthDataError1Title => 'Error 1: Apple Watch Data Unavailable';
@override
String get noHealthDataError1Body =>
'It looks like you haven\'t used your Apple Watch in the past 12 months. If you just started using it and have enabled all data permissions, this message might still appear. Please continue to wear your Apple Watch to allow data collection, or add HRV data manually on the homepage.';
@override
String get noHealthDataError2Title =>
'Error 2: Health Data Access Unauthorized';
@override
String get noHealthDataError2Body =>
'DoubleFeel requires access to Apple Health data to provide stress stats, alerts, and recommendations. If not authorized, some features may not work properly.\n\nRest assured, all health data is only stored locally and will not be uploaded.\n\nTo enable permissions, follow the prompt and select Allow All -> Health -> DoubleFeel in iOS Settings.';
@override
String get noHealthDataError3Title => 'Error 3: System Issue';
@override
String get noHealthDataError3Body =>
'Based on user feedback, we found two reasons why HRV or heart rate data might be missing:\n\n1. Apple Watch not connected\n · If your Apple Watch has not been worn for a long time, heart rate data may not be collected.\n · Please check iOS Health App -> \'My Watch\' to confirm if recent heart rate data was recorded while wearing the Apple Watch.\n · If not, please try wearing your Apple Watch for data collection and turn on the heart rate feature supported by Apple.\n\n2. Heart rate or HRV data missing in the past 30 days\n · Open iOS Health App -> Browse -> \'Heart Rate\' or \'HRV\' -> \'No Data Found\' to confirm if it\'s missing.\n · If data is missing, please wear the watch again, restart your iPhone and Apple Watch, then open DoubleFeel again.';
@override
String get noHealthDataGoToSettings => 'Go to Settings';
@override
String get watchThemeDefaultTheme => 'Default Theme';
@override
String get watchThemeNoWatchTitle => 'Apple Watch Not Found';
@override
String get watchThemeNoWatchMessage => 'Pair an Apple Watch and try again';
@override
String get watchThemeOk => 'OK';
@override
String get watchThemeSelectFriend => 'Select Friend';
@override
String get watchThemeSelectAndSync => 'Select and Sync to Watch';
@override
String get watchThemeCustomTheme => 'Custom Themes';
@override
String get watchThemeCustomDescription =>
'Capture every mood with your creativity and make a watch face that\'s uniquely yours.';
@override
String get watchThemeCreateTheme => 'Create Theme';
@override
String get watchThemeOfficialTheme => 'Official Themes';
@override
String get watchThemeRenameStatus => 'Rename Status';
@override
String get watchThemeEnterNickname => 'Enter a name';
@override
String get watchThemeSave => 'Save';
@override
String get watchThemeContentUnavailable =>
'This content is unavailable. Try another one.';
@override
String get watchThemeDialPreview => 'Watch Face Preview';
@override
String get watchThemeSwitchFriend => 'Switch Friend';
@override
String get watchThemeStatusPreview => 'Status Preview';
@override
String get watchThemeAddWatchFace => 'Add Watch Face';
@override
String get watchThemeInUse => 'In Use';
@override
String get watchThemeUseNow => 'Use Now';
@override
String get watchThemeSyncIntro =>
'Open the DoubleFeel app on your Apple Watch, then tap Next below.';
@override
String get watchThemeSyncWaiting => 'Keep the Watch app open while syncing';
@override
String get watchThemeSyncComplete => 'Sync Complete';
@override
String get watchThemeSyncFailed => 'Sync Failed';
@override
String get watchThemeNext => 'Next';
@override
String watchThemeSyncingProgress(int progress) {
return 'Syncing $progress%';
}
@override
String get watchThemePreview => 'Preview';
@override
String get watchThemeDelete => 'Delete';
@override
String get watchThemePageTitle => 'Watch Themes';
@override
String get watchThemeImagesOnly => 'Images only';
@override
String get watchThemeName => 'Theme Name';
@override
String get watchThemeNameMaxLength => 'Up to 10 characters';
@override
String get watchThemeSubmissionAgreement =>
'I have read and agree to the User Submission Agreement';
@override
String get watchThemeSubmissionAgreementPrefix =>
'I have read and agree to the User ';
@override
String get watchThemeSubmissionAgreementLink => 'Submission Agreement';
@override
String get watchThemeSaving => 'Saving';
@override
String get watchThemeSaveTheme => 'Save Theme';
@override
String get watchThemeExcellent => 'Excellent';
@override
String get watchThemeNormal => 'Normal';
@override
String get watchThemeSlightStressful => 'Watch Your Stress';
@override
String get watchThemeStressful => 'Stress Overload';
@override
String get watchThemeCropImage => 'Crop Watch Face Image';
@override
String get watchThemeImageProcessFailed =>
'Image processing failed. Please try again';
@override
String get watchThemeAbandonEdit => 'Discard Changes';
@override
String get watchThemeAbandonMessage =>
'Your changes won\'t be saved if you close this page. Discard them?';
@override
String get watchThemeContinueEditing => 'Continue Editing';
@override
String get watchThemeImageUploadFailed =>
'Image upload failed. Please try again';
@override
String watchThemeImageDownloadFailed(String error) {
return 'Failed to download theme images: $error';
}
@override
String get watchThemeCreateFailed =>
'Failed to create watch face. Please try again';
@override
String get watchThemeDeleteTheme => 'Delete Theme';
@override
String get watchThemeDeleteMessage =>
'Deleted themes cannot be restored. Delete this theme?';
@override
String get watchThemeCancel => 'Cancel';
@override
String get watchThemeDeleteFailed => 'Failed to delete theme';
@override
String get watchThemeDeleted => 'Theme deleted';
@override
String get watchThemeIncomplete => 'Theme information is incomplete';
@override
String get watchThemeApplyFailed => 'Failed to apply theme';
@override
String get watchThemeWatchSyncFailed => 'Watch face sync failed';
@override
String get watchThemePurchaseChannel => 'Watch Face Themes';
@override
String feedbackMaxImagesLimit(int count) {
return 'Up to $count images or videos can be uploaded';
}
@override
String get feedbackSelectImageError =>
'Unable to select images, please try again later';
@override
String get feedbackEmptyContentHint => 'Please enter questions and feedback';
@override
String get feedbackInvalidEmail => 'Invalid email format, please enter again';
@override
String get feedbackSubmitSuccessTitle => 'Feedback submitted successfully';
@override
String get feedbackSubmitSuccessMessage =>
'Thank you for your feedback. If further communication is needed, we will contact you via the email address you left as soon as possible. Please keep an eye on your inbox.';
@override
String get feedbackSubmitSuccessConfirm => 'OK';
@override
String get frequentMovement => 'Frequent movement';
@override
String get latestHrvTipExcellentAboveBaseline =>
'Your HRV is above your usual level. Your body appears relaxed and your stress state looks good. Keep your current rhythm.';
@override
String get latestHrvTipExcellentBelowBaseline =>
'Your HRV is in an excellent range, but slightly lower than usual. Keep a regular routine and make time for recovery.';
@override
String get latestHrvTipNormalAboveBaseline =>
'Your HRV is within the normal range and your current stress state is stable. Keep maintaining healthy rest habits.';
@override
String get latestHrvTipNormalBelowBaseline =>
'Your HRV is within the normal range, but below your usual level. Consider relaxing and resting appropriately.';
@override
String get latestHrvTipAttentionAboveBaseline =>
'Your HRV is on the low side. Consider relaxing, keeping regular rest, and paying attention to nutrition and recovery.';
@override
String get latestHrvTipAttentionBelowBaseline =>
'Your HRV is clearly below your usual level. Recent stress may be elevated, so try to rest and adjust your state.';
@override
String get latestHrvTipOverloadAboveBaseline =>
'Your HRV is at a relatively low level. Your body may be under higher stress. If this is after exercise, a lower HRV can be normal. Rest and recover in time.';
@override
String get latestHrvTipOverloadBelowBaseline =>
'Your HRV is clearly below your usual level. Your body may be under high stress. If this is after exercise, a lower HRV can be normal. Reduce exertion, rest in time, and support sleep recovery.';
@override
String healthLocalNotificationSleepDuration(int hours, int minutes) {
return '${hours}h ${minutes}m';
}
@override
String healthLocalNotificationSleepTitle(String duration, String state) {
return 'Sleep $duration · $state';
}
@override
String get healthLocalNotificationSleepContent =>
'Today\'s sleep report is ready. Tap to view your detailed sleep data.';
@override
String healthLocalNotificationHrvTitle(int hrv, String state, String time) {
return 'HRV ${hrv}ms · $state · $time';
}
@override
String healthLocalNotificationRealtimeStressTitle(
String state, String startTime, String endTime) {
return '$state · $startTime-$endTime';
}
@override
String get healthLocalNotificationRealtimeStressExcellentContent =>
'Your realtime stress stayed low over the past 60 minutes. You seem relaxed overall. Keep your current rhythm.';
@override
String get healthLocalNotificationRealtimeStressNormalContent =>
'Your stress state was stable over the past 60 minutes. Your current rhythm looks normal.';
@override
String get healthLocalNotificationRealtimeStressAttentionContent =>
'Your stress was elevated over the past 60 minutes. Consider relaxing and making time for rest and recovery.';
@override
String get healthLocalNotificationRealtimeStressOverloadContent =>
'You stayed in a high-stress state over the past 60 minutes. Reduce exertion and prioritize rest and sleep.';
@override
String get turnOnNotifications => 'Turn on Notifications';
@override
String get stayUpToDateOnChangesInYourOwnAndYourFriendsHealth =>
'Stay up to date on changes in your own and your friends\' health';
@override
String get refreshComplete => 'Refresh Complete';
@override
String originalPricePerYear(String price) {
return 'Was: $price/year';
}
}