app_localizations_en.dart 51.9 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
// 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 =>
      'We hope to help you\n<em>notice changes in your mind and body, and help the people who love you</em> see when you are <em>tired or need support</em>';

  @override
  String get onboardingStateQuestion => 'Which of these often happens to you?';

  @override
  String get onboardingStateStressAnxiety => 'I often feel stressed or anxious';

  @override
  String get onboardingStateTired => 'I get tired easily';

  @override
  String get onboardingStatePoorRest =>
      'I wake up but still do not feel rested';

  @override
  String get onboardingStateNeedStimulants =>
      'I rely on cigarettes, alcohol, coffee, or other stimulants to stay alert';

  @override
  String get onboardingStateNone => 'None of the above';

  @override
  String get onboardingStressGoalQuestion =>
      'What do you want to learn by understanding stress?';

  @override
  String get onboardingStressGoalSource => 'Understand where stress comes from';

  @override
  String get onboardingStressGoalReminder => 'Get reminded when stress appears';

  @override
  String get onboardingStressGoalLovedOnes =>
      'Let people who care about me know my stress state';

  @override
  String get onboardingStressGoalRelax => 'Understand stress and feel lighter';

  @override
  String get onboardingStressGoalBodyTalk => 'Communicate better with my body';

  @override
  String get onboardingReliefQuestion =>
      'Which methods do you think can ease stress?';

  @override
  String get onboardingReliefSleep => 'Regular sleep';

  @override
  String get onboardingReliefCare => 'Care from people close to me';

  @override
  String get onboardingReliefExercise => 'More exercise';

  @override
  String get onboardingReliefSun => 'More sunlight';

  @override
  String get onboardingReliefWater => 'Drink more water';

  @override
  String get onboardingReliefMeditation => 'Mindfulness meditation';

  @override
  String get onboardingKeyDataTitle => 'Did you know?';

  @override
  String get onboardingKeyDataSubtitle =>
      'Everyone has a magical and important body metric that can help us:';

  @override
  String get onboardingKeyDataStress => 'Monitor stress';

  @override
  String get onboardingKeyDataFatigue => 'Avoid overwork and physical fatigue';

  @override
  String get onboardingKeyDataRecovery => 'Measure exercise recovery';

  @override
  String get onboardingKeyDataHabits => 'Build healthy habits';

  @override
  String get onboardingKeyDataLovedOnes =>
      'Help important people care about your state in time';

  @override
  String get onboardingTellMeWhatItIs => 'Tell me what it is!';

  @override
  String get onboardingHrvTitle => 'It is HRV, heart rate variability';

  @override
  String get onboardingHrvSubtitle =>
      'It helps us measure overall stress and health';

  @override
  String get onboardingHrvDescription =>
      'Heart rate variability (HRV) is the tiny variation in time between heartbeats. It reflects autonomic nervous system activity and how the body responds to stress.';

  @override
  String get onboardingTellMeMore => 'Tell me more';

  @override
  String get onboardingResearchTitle =>
      'Many studies show that HRV changes are closely related to how our body and mind feel';

  @override
  String get onboardingResearchFatigue => 'Physical fatigue';

  @override
  String get onboardingResearchEnergy => 'Full of energy';

  @override
  String get onboardingResearchHrvDown => 'HRV down';

  @override
  String get onboardingResearchHrvUp => 'HRV up';

  @override
  String get onboardingHealthPermissionTitle => 'Allow health data access';

  @override
  String get onboardingHealthPermissionBody =>
      'DoubleFeel needs connected wearable health data to send reminders, count stress moments, and provide suggestions.';

  @override
  String get onboardingHealthPermissionPrivacy =>
      'Your health data is stored locally. We do not upload any related data.';

  @override
  String get onboardingNotificationTitle => 'Turn on notifications';

  @override
  String get onboardingNotificationSubtitle =>
      'Learn about every body change in time';

  @override
  String get onboardingNotificationBody =>
      'After Apple Watch data updates, we can remind you in time and help you act to improve your stress state.';

  @override
  String get onboardingMemberTitle => 'Get an annual membership offer';

  @override
  String get onboardingMemberBody =>
      'Start your pressure alert and health companion journey, so love and care are always present.';

  @override
  String get onboardingMemberAllOptions => 'View all purchase options';

  @override
  String get healthCompanionIsNowAvailable =>
      'Health Companion is now available';

  @override
  String get youCanNowViewEachOtherSHrvStressLevelsAndSleepPatternsAndReachOutToCheckInWhenTheOtherPersonSeemsTired =>
      'You can now view each other\'s HRV, stress levels, and sleep patterns, and reach out to check in when the other person seems tired.';

  @override
  String get bindPartnerTitle =>
      'Add a Close Contact\nOne more person to care about your health';

  @override
  String get bindPartnerMyId => 'My ID';

  @override
  String get bindPartnerShareMyCode => 'Share My Code';

  @override
  String get bindPartnerOr => 'or';

  @override
  String get bindPartnerContactId => 'Close Contact\'s ID';

  @override
  String get bindPartnerInputHint => 'Enter here';

  @override
  String get bindPartnerSkip => 'Maybe Later';

  @override
  String get onboardingResearchStress => 'High Stress';

  @override
  String get onboardingResearchRelaxed => 'Feeling Relaxed';

  @override
  String get onboardingResearchSick => 'Sick or Unwell';

  @override
  String get onboardingResearchHealthy => 'Feeling Great';

  @override
  String get onboardingResearchPoorSleep => 'Poor Sleep';

  @override
  String get onboardingResearchGoodSleep => 'Good Sleep';

  @override
  String get loginSlogan =>
      'Start your pressure alert and health companion journey\nso love and care are always present';

  @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 => 'I have read and agree to the ';

  @override
  String get loginTerms => 'Terms of Service';

  @override
  String get loginAgreementAnd => ' and ';

  @override
  String get loginPrivacy => 'Privacy 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 =>
      'Unable to access heart rate health data';

  @override
  String get todayHealthDataAuthDescription =>
      'DoubleFeel needs permission to access your health data to provide stress reminders, real-time stress statistics, and health suggestions. Otherwise, some app features may not work properly. Your health data is stored locally only and will not be uploaded to any server.';

  @override
  String get todayHealthDataAuthAction => 'Authorize health data access';

  @override
  String get measureYourHrvNow => 'Measure your HRV now';

  @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. StressWatch 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';

  @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 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 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 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 hrvUnlockNow => 'Unlock Now';

  @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 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 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 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 face';

  @override
  String get friendsShownOnWatchFace => 'Shown on watch face';

  @override
  String get friendsSelect => 'Select a friend';

  @override
  String get friendsSelectAndSync => 'Select and sync to watch face';

  @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 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 Learn More for additional information.';

  @override
  String get purchaseNoteRestore =>
      'If your purchase does not take effect, tap Restore Purchases.';

  @override
  String get purchaseNoteContact =>
      'Contact us if you have any other questions.';

  @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 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 'Hey ❤️ I found an app called DoubleFeel!\nIt helps us care for each other — track stress and sleep, view HRV and physical status, and stay updated on each other\'s health in real-time.\nCome join me 👉 https://doublefeel.cn/\nMy friend ID: $inviteCode';
  }

  @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';
}