Commit e85fd87499d91bd28f769b710e7728ed0da0cea0

Authored by 常守达
1 parent af56c0e3

fix(today):修改卡片文案

... ... @@ -104,7 +104,7 @@
"phoneLoginInvalidPhone": "Invalid phone number",
"phoneLoginCodeSentSuccess": "Code sent",
"phoneLoginInvalidCode": "Invalid verification code",
"todayHealthDataAuthTitle": "Unable to access heart rate health data",
"todayHealthDataAuthTitle": "Fetching health data",
"todayHealthDataAuthDescription": "DoubleFeel needs access to your Apple Health data to provide stress reminders, real-time stress statistics, and health suggestions.\nIf you have not authorized it yet, please click below to complete the authorization; if you have authorized it, it may take a few minutes to sync a large amount of health data for the first time, please try again later.",
"todayHealthDataAuthAction": "Authorize health data access",
"measureYourHrvNow": "Measure your HRV now",
... ...
... ... @@ -178,7 +178,7 @@
"@phoneLoginInvalidCode": {
"description": "验证码格式错误 toast"
},
"todayHealthDataAuthTitle": "无法获取心率健康数据",
"todayHealthDataAuthTitle": "正在获取健康数据",
"@todayHealthDataAuthTitle": {
"description": "今日页健康数据授权卡片标题"
},
... ...
... ... @@ -726,7 +726,7 @@ abstract class AppLocalizations {
/// 今日页健康数据授权卡片标题
///
/// In zh, this message translates to:
/// **'无法获取心率健康数据'**
/// **'正在获取健康数据'**
String get todayHealthDataAuthTitle;
/// 今日页健康数据授权卡片说明
... ...
... ... @@ -346,8 +346,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get phoneLoginInvalidCode => 'Invalid verification code';
@override
String get todayHealthDataAuthTitle =>
'Unable to access heart rate health data';
String get todayHealthDataAuthTitle => 'Fetching health data';
@override
String get todayHealthDataAuthDescription =>
... ...
... ... @@ -330,7 +330,7 @@ class AppLocalizationsZh extends AppLocalizations {
String get phoneLoginInvalidCode => '验证码格式错误';
@override
String get todayHealthDataAuthTitle => '无法获取心率健康数据';
String get todayHealthDataAuthTitle => '正在获取健康数据';
@override
String get todayHealthDataAuthDescription =>
... ...