app_localizations_en.dart 25.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
// 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 onboardingMemberOriginalPrice => 'Original ¥72.00/year';

  @override
  String get onboardingMemberCurrentPrice => 'Now ¥60.00/year';

  @override
  String get onboardingMemberMonthlyPrice => 'Only ¥5.00/month';

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