diff --git a/it0_app/lib/l10n/app_localizations.dart b/it0_app/lib/l10n/app_localizations.dart index aee3939..adb63c1 100644 --- a/it0_app/lib/l10n/app_localizations.dart +++ b/it0_app/lib/l10n/app_localizations.dart @@ -1504,81 +1504,159 @@ abstract class AppLocalizations { String get languageEn; /// No description provided for @languageAuto. + /// + /// In zh, this message translates to: + /// **'自动(跟随系统)'** String get languageAuto; /// No description provided for @referralTabTenant. + /// + /// In zh, this message translates to: + /// **'企业推荐'** String get referralTabTenant; /// No description provided for @referralTabPersonal. + /// + /// In zh, this message translates to: + /// **'我的圈子'** String get referralTabPersonal; /// No description provided for @loadFailed. + /// + /// In zh, this message translates to: + /// **'加载失败'** String get loadFailed; /// No description provided for @myPersonalInviteCode. + /// + /// In zh, this message translates to: + /// **'我的个人邀请码'** String get myPersonalInviteCode; /// No description provided for @pointsBalanceTitle. + /// + /// In zh, this message translates to: + /// **'积分余额'** String get pointsBalanceTitle; /// No description provided for @currentBalanceLabel. + /// + /// In zh, this message translates to: + /// **'当前余额'** String get currentBalanceLabel; /// No description provided for @circleMembersCountLabel. + /// + /// In zh, this message translates to: + /// **'圈子成员'** String get circleMembersCountLabel; /// No description provided for @totalEarnedLabel. + /// + /// In zh, this message translates to: + /// **'累计获得'** String get totalEarnedLabel; /// No description provided for @circleRewardRulesTitle. + /// + /// In zh, this message translates to: + /// **'圈子奖励规则'** String get circleRewardRulesTitle; /// No description provided for @circleRule1. + /// + /// In zh, this message translates to: + /// **'新成员加入你的圈子,你和对方各获 200 积分欢迎礼'** String get circleRule1; /// No description provided for @circleRule2. + /// + /// In zh, this message translates to: + /// **'圈子成员订阅 Pro 时,你获 1500 pts,对方获 500 pts'** String get circleRule2; /// No description provided for @circleRule3. + /// + /// In zh, this message translates to: + /// **'圈子成员订阅 Enterprise 时,你获 5000 pts,对方获 2000 pts'** String get circleRule3; /// No description provided for @circleRule4. + /// + /// In zh, this message translates to: + /// **'每月续订时你持续获得付款额 10% 的积分,最长 12 个月'** String get circleRule4; /// No description provided for @circleRule5. + /// + /// In zh, this message translates to: + /// **'二级圈子续订,你获 5% 积分,最长 6 个月'** String get circleRule5; /// No description provided for @circleRule6. + /// + /// In zh, this message translates to: + /// **'积分可兑换额外使用配额或解锁智能体'** String get circleRule6; /// No description provided for @myCircleMembersSection. + /// + /// In zh, this message translates to: + /// **'我的圈子成员'** String get myCircleMembersSection; /// No description provided for @pointsHistorySection. + /// + /// In zh, this message translates to: + /// **'积分记录'** String get pointsHistorySection; /// No description provided for @noCircleMembersMessage. + /// + /// In zh, this message translates to: + /// **'暂无圈子成员,快去邀请好友吧!'** String get noCircleMembersMessage; /// No description provided for @noPointsHistoryMessage. + /// + /// In zh, this message translates to: + /// **'暂无积分记录'** String get noPointsHistoryMessage; /// No description provided for @activatedStatus. + /// + /// In zh, this message translates to: + /// **'已激活'** String get activatedStatus; /// No description provided for @joinedAtLabel. + /// + /// In zh, this message translates to: + /// **'加入于'** String get joinedAtLabel; /// No description provided for @viewAllButton. + /// + /// In zh, this message translates to: + /// **'查看全部'** String get viewAllButton; /// No description provided for @rewardHistoryPageTitle. + /// + /// In zh, this message translates to: + /// **'奖励历史'** String get rewardHistoryPageTitle; /// No description provided for @noRewardsHistoryMessage. + /// + /// In zh, this message translates to: + /// **'暂无奖励记录'** String get noRewardsHistoryMessage; /// No description provided for @creditDeductionReward. + /// + /// In zh, this message translates to: + /// **'积分自动抵扣你的下期账单'** String get creditDeductionReward; /// No description provided for @selectLanguageTitle. diff --git a/it0_app/lib/l10n/app_localizations_en.dart b/it0_app/lib/l10n/app_localizations_en.dart index 65707fe..1a4d20f 100644 --- a/it0_app/lib/l10n/app_localizations_en.dart +++ b/it0_app/lib/l10n/app_localizations_en.dart @@ -786,16 +786,20 @@ class AppLocalizationsEn extends AppLocalizations { String get circleRewardRulesTitle => 'Circle Reward Rules'; @override - String get circleRule1 => 'New member joins your circle: both get 200 pts welcome gift'; + String get circleRule1 => + 'New member joins your circle: both get 200 pts welcome gift'; @override - String get circleRule2 => 'Member subscribes Pro: you get 1500 pts, they get 500 pts'; + String get circleRule2 => + 'Member subscribes Pro: you get 1500 pts, they get 500 pts'; @override - String get circleRule3 => 'Member subscribes Enterprise: you get 5000 pts, they get 2000 pts'; + String get circleRule3 => + 'Member subscribes Enterprise: you get 5000 pts, they get 2000 pts'; @override - String get circleRule4 => 'Earn 10% of their monthly payments for up to 12 months'; + String get circleRule4 => + 'Earn 10% of their monthly payments for up to 12 months'; @override String get circleRule5 => 'L2 circle renewals earn you 5% for up to 6 months'; @@ -831,7 +835,8 @@ class AppLocalizationsEn extends AppLocalizations { String get noRewardsHistoryMessage => 'No rewards yet'; @override - String get creditDeductionReward => 'Credits auto-deducted from your next bill'; + String get creditDeductionReward => + 'Credits auto-deducted from your next bill'; @override String get selectLanguageTitle => 'Select Language';