refactor(settings): 统一语言设置,合并 interface_language 和 ai_language
- 后端 Schema 将 interface_language 和 ai_language 合并为 language - 前端设置界面只保留一个语言选项 - AI 回复语言统一使用 language 设置 - 更新协议文档 - 新增数据库迁移脚本
This commit is contained in:
@@ -83,8 +83,7 @@
|
||||
"settingsSectionPrivacy": "Privacy",
|
||||
"settingsSectionNotification": "Notification Settings",
|
||||
"settingsAccountAndDataTitle": "Account Data",
|
||||
"settingsInterfaceLanguage": "Interface Language",
|
||||
"settingsAiLanguage": "AI Response Language",
|
||||
"settingsLanguage": "Language",
|
||||
"settingsNotificationAllow": "Allow Notifications",
|
||||
"settingsNotificationVibration": "Allow Vibration",
|
||||
"settingsSectionAbout": "About",
|
||||
@@ -111,12 +110,8 @@
|
||||
}
|
||||
},
|
||||
"settingsCoinHeroSubtitle": "Credits will be used for casting and related services later.",
|
||||
"settingsAiLanguage": "AI Response Language",
|
||||
"settingsAiLanguageHint": "This field will align with profiles.settings.preferences.ai_language once the real preference flow is connected.",
|
||||
"settingsTimezone": "Time Zone",
|
||||
"settingsTimezoneHint": "This field will align with profiles.settings.preferences.timezone and later provide a real time zone picker.",
|
||||
"settingsCountry": "Country/Region",
|
||||
"settingsCountryHint": "This field will align with profiles.settings.preferences.country and later provide a region picker.",
|
||||
"settingsPrivacyProfileVisibility": "Profile Visibility",
|
||||
"settingsPrivacyPersonalization": "Personalization",
|
||||
"settingsPrivacyHistoryVisibility": "History Visibility",
|
||||
@@ -195,6 +190,7 @@
|
||||
"settingsCoinPackPopular": "Popular Pack",
|
||||
"settingsCoinPackPremium": "Premium Pack",
|
||||
"settingsCoinPackPopularBadge": "Popular",
|
||||
"settingsCoinPackNewUserBadge": "Only Once",
|
||||
"settingsPurchaseButton": "Pay Now",
|
||||
"settingsPurchasePending": "",
|
||||
"settingsCoinAmount": "{amount} credits",
|
||||
@@ -511,5 +507,51 @@
|
||||
"paymentProductNotFound": "Product temporarily unavailable",
|
||||
"paymentStarterPackIneligible": "Starter pack is limited to one purchase per user",
|
||||
"paymentProductUnavailable": "Product temporarily unavailable",
|
||||
"paymentPending": "Apple is processing, please wait"
|
||||
"paymentPending": "Apple is processing, please wait",
|
||||
"notifyCenterTitle": "Notifications",
|
||||
"notifyMarkAllRead": "Mark all read",
|
||||
"notifyLoadFailed": "Failed to load",
|
||||
"notifyRetry": "Retry",
|
||||
"notifyEmpty": "No notifications",
|
||||
"timeJustNow": "Just now",
|
||||
"timeMinutesAgo": "{minutes}m ago",
|
||||
"@timeMinutesAgo": {
|
||||
"placeholders": {
|
||||
"minutes": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timeHoursAgo": "{hours}h ago",
|
||||
"@timeHoursAgo": {
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timeDaysAgo": "{days}d ago",
|
||||
"@timeDaysAgo": {
|
||||
"placeholders": {
|
||||
"days": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"pointsLedgerTitle": "Points Ledger",
|
||||
"pointsLedgerEmpty": "No records yet",
|
||||
"pointsLedgerTypeRegister": "Registration bonus",
|
||||
"pointsLedgerTypePurchase": "Purchase credits",
|
||||
"pointsLedgerTypeConsume": "AI chat cost",
|
||||
"pointsLedgerTypeAdjust": "System adjustment",
|
||||
"pointsLedgerTypeRefund": "Refund",
|
||||
"pointsLedgerBalance": "Balance {balance}",
|
||||
"@pointsLedgerBalance": {
|
||||
"placeholders": {
|
||||
"balance": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"retry": "Retry"
|
||||
}
|
||||
|
||||
@@ -513,17 +513,11 @@ abstract class AppLocalizations {
|
||||
/// **'账号数据'**
|
||||
String get settingsAccountAndDataTitle;
|
||||
|
||||
/// No description provided for @settingsInterfaceLanguage.
|
||||
/// No description provided for @settingsLanguage.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'界面语言'**
|
||||
String get settingsInterfaceLanguage;
|
||||
|
||||
/// No description provided for @settingsAiLanguage.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'AI 回复语言'**
|
||||
String get settingsAiLanguage;
|
||||
/// **'语言'**
|
||||
String get settingsLanguage;
|
||||
|
||||
/// No description provided for @settingsNotificationAllow.
|
||||
///
|
||||
@@ -597,12 +591,6 @@ abstract class AppLocalizations {
|
||||
/// **'点数可用于后续起卦与相关服务消费'**
|
||||
String get settingsCoinHeroSubtitle;
|
||||
|
||||
/// No description provided for @settingsAiLanguageHint.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'该字段将对齐 profiles.settings.preferences.ai_language,后续接入真实偏好设置。'**
|
||||
String get settingsAiLanguageHint;
|
||||
|
||||
/// No description provided for @settingsTimezone.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
@@ -615,18 +603,6 @@ abstract class AppLocalizations {
|
||||
/// **'该字段将对齐 profiles.settings.preferences.timezone,后续提供时区选择。'**
|
||||
String get settingsTimezoneHint;
|
||||
|
||||
/// No description provided for @settingsCountry.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'国家/地区'**
|
||||
String get settingsCountry;
|
||||
|
||||
/// No description provided for @settingsCountryHint.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'该字段将对齐 profiles.settings.preferences.country,后续提供国家或地区选择。'**
|
||||
String get settingsCountryHint;
|
||||
|
||||
/// No description provided for @settingsPrivacyProfileVisibility.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
@@ -969,6 +945,12 @@ abstract class AppLocalizations {
|
||||
/// **'推荐'**
|
||||
String get settingsCoinPackPopularBadge;
|
||||
|
||||
/// No description provided for @settingsCoinPackNewUserBadge.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'限购一次'**
|
||||
String get settingsCoinPackNewUserBadge;
|
||||
|
||||
/// No description provided for @settingsPurchaseButton.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
@@ -2468,6 +2450,114 @@ abstract class AppLocalizations {
|
||||
/// In zh, this message translates to:
|
||||
/// **'Apple 正在处理中,请稍候'**
|
||||
String get paymentPending;
|
||||
|
||||
/// No description provided for @notifyCenterTitle.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'通知'**
|
||||
String get notifyCenterTitle;
|
||||
|
||||
/// No description provided for @notifyMarkAllRead.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'全部已读'**
|
||||
String get notifyMarkAllRead;
|
||||
|
||||
/// No description provided for @notifyLoadFailed.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'加载失败'**
|
||||
String get notifyLoadFailed;
|
||||
|
||||
/// No description provided for @notifyRetry.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'重试'**
|
||||
String get notifyRetry;
|
||||
|
||||
/// No description provided for @notifyEmpty.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'暂无通知'**
|
||||
String get notifyEmpty;
|
||||
|
||||
/// No description provided for @timeJustNow.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'刚刚'**
|
||||
String get timeJustNow;
|
||||
|
||||
/// No description provided for @timeMinutesAgo.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'{minutes}分钟前'**
|
||||
String timeMinutesAgo(int minutes);
|
||||
|
||||
/// No description provided for @timeHoursAgo.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'{hours}小时前'**
|
||||
String timeHoursAgo(int hours);
|
||||
|
||||
/// No description provided for @timeDaysAgo.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'{days}天前'**
|
||||
String timeDaysAgo(int days);
|
||||
|
||||
/// No description provided for @pointsLedgerTitle.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'积分流水'**
|
||||
String get pointsLedgerTitle;
|
||||
|
||||
/// No description provided for @pointsLedgerEmpty.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'暂无流水记录'**
|
||||
String get pointsLedgerEmpty;
|
||||
|
||||
/// No description provided for @pointsLedgerTypeRegister.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'注册赠送'**
|
||||
String get pointsLedgerTypeRegister;
|
||||
|
||||
/// No description provided for @pointsLedgerTypePurchase.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'购买积分包'**
|
||||
String get pointsLedgerTypePurchase;
|
||||
|
||||
/// No description provided for @pointsLedgerTypeConsume.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'AI 对话消耗'**
|
||||
String get pointsLedgerTypeConsume;
|
||||
|
||||
/// No description provided for @pointsLedgerTypeAdjust.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'系统调整'**
|
||||
String get pointsLedgerTypeAdjust;
|
||||
|
||||
/// No description provided for @pointsLedgerTypeRefund.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'退款'**
|
||||
String get pointsLedgerTypeRefund;
|
||||
|
||||
/// No description provided for @pointsLedgerBalance.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'余额 {balance}'**
|
||||
String pointsLedgerBalance(int balance);
|
||||
|
||||
/// No description provided for @retry.
|
||||
///
|
||||
/// In zh, this message translates to:
|
||||
/// **'重试'**
|
||||
String get retry;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate
|
||||
|
||||
@@ -226,10 +226,7 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
String get settingsAccountAndDataTitle => 'Account Data';
|
||||
|
||||
@override
|
||||
String get settingsInterfaceLanguage => 'Interface Language';
|
||||
|
||||
@override
|
||||
String get settingsAiLanguage => 'AI Response Language';
|
||||
String get settingsLanguage => 'Language';
|
||||
|
||||
@override
|
||||
String get settingsNotificationAllow => 'Allow Notifications';
|
||||
@@ -274,10 +271,6 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
String get settingsCoinHeroSubtitle =>
|
||||
'Credits will be used for casting and related services later.';
|
||||
|
||||
@override
|
||||
String get settingsAiLanguageHint =>
|
||||
'This field will align with profiles.settings.preferences.ai_language once the real preference flow is connected.';
|
||||
|
||||
@override
|
||||
String get settingsTimezone => 'Time Zone';
|
||||
|
||||
@@ -285,13 +278,6 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
String get settingsTimezoneHint =>
|
||||
'This field will align with profiles.settings.preferences.timezone and later provide a real time zone picker.';
|
||||
|
||||
@override
|
||||
String get settingsCountry => 'Country/Region';
|
||||
|
||||
@override
|
||||
String get settingsCountryHint =>
|
||||
'This field will align with profiles.settings.preferences.country and later provide a region picker.';
|
||||
|
||||
@override
|
||||
String get settingsPrivacyProfileVisibility => 'Profile Visibility';
|
||||
|
||||
@@ -484,6 +470,9 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get settingsCoinPackPopularBadge => 'Popular';
|
||||
|
||||
@override
|
||||
String get settingsCoinPackNewUserBadge => 'Only Once';
|
||||
|
||||
@override
|
||||
String get settingsPurchaseButton => 'Pay Now';
|
||||
|
||||
@@ -1302,4 +1291,66 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get paymentPending => 'Apple is processing, please wait';
|
||||
|
||||
@override
|
||||
String get notifyCenterTitle => 'Notifications';
|
||||
|
||||
@override
|
||||
String get notifyMarkAllRead => 'Mark all read';
|
||||
|
||||
@override
|
||||
String get notifyLoadFailed => 'Failed to load';
|
||||
|
||||
@override
|
||||
String get notifyRetry => 'Retry';
|
||||
|
||||
@override
|
||||
String get notifyEmpty => 'No notifications';
|
||||
|
||||
@override
|
||||
String get timeJustNow => 'Just now';
|
||||
|
||||
@override
|
||||
String timeMinutesAgo(int minutes) {
|
||||
return '${minutes}m ago';
|
||||
}
|
||||
|
||||
@override
|
||||
String timeHoursAgo(int hours) {
|
||||
return '${hours}h ago';
|
||||
}
|
||||
|
||||
@override
|
||||
String timeDaysAgo(int days) {
|
||||
return '${days}d ago';
|
||||
}
|
||||
|
||||
@override
|
||||
String get pointsLedgerTitle => 'Points Ledger';
|
||||
|
||||
@override
|
||||
String get pointsLedgerEmpty => 'No records yet';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeRegister => 'Registration bonus';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypePurchase => 'Purchase credits';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeConsume => 'AI chat cost';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeAdjust => 'System adjustment';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeRefund => 'Refund';
|
||||
|
||||
@override
|
||||
String pointsLedgerBalance(int balance) {
|
||||
return 'Balance $balance';
|
||||
}
|
||||
|
||||
@override
|
||||
String get retry => 'Retry';
|
||||
}
|
||||
|
||||
@@ -224,10 +224,7 @@ class AppLocalizationsZh extends AppLocalizations {
|
||||
String get settingsAccountAndDataTitle => '账号数据';
|
||||
|
||||
@override
|
||||
String get settingsInterfaceLanguage => '界面语言';
|
||||
|
||||
@override
|
||||
String get settingsAiLanguage => 'AI 回复语言';
|
||||
String get settingsLanguage => '语言';
|
||||
|
||||
@override
|
||||
String get settingsNotificationAllow => '允许通知';
|
||||
@@ -270,10 +267,6 @@ class AppLocalizationsZh extends AppLocalizations {
|
||||
@override
|
||||
String get settingsCoinHeroSubtitle => '点数可用于后续起卦与相关服务消费';
|
||||
|
||||
@override
|
||||
String get settingsAiLanguageHint =>
|
||||
'该字段将对齐 profiles.settings.preferences.ai_language,后续接入真实偏好设置。';
|
||||
|
||||
@override
|
||||
String get settingsTimezone => '时区';
|
||||
|
||||
@@ -281,13 +274,6 @@ class AppLocalizationsZh extends AppLocalizations {
|
||||
String get settingsTimezoneHint =>
|
||||
'该字段将对齐 profiles.settings.preferences.timezone,后续提供时区选择。';
|
||||
|
||||
@override
|
||||
String get settingsCountry => '国家/地区';
|
||||
|
||||
@override
|
||||
String get settingsCountryHint =>
|
||||
'该字段将对齐 profiles.settings.preferences.country,后续提供国家或地区选择。';
|
||||
|
||||
@override
|
||||
String get settingsPrivacyProfileVisibility => '资料可见性';
|
||||
|
||||
@@ -469,6 +455,9 @@ class AppLocalizationsZh extends AppLocalizations {
|
||||
@override
|
||||
String get settingsCoinPackPopularBadge => '推荐';
|
||||
|
||||
@override
|
||||
String get settingsCoinPackNewUserBadge => '限购一次';
|
||||
|
||||
@override
|
||||
String get settingsPurchaseButton => '立即支付';
|
||||
|
||||
@@ -1243,6 +1232,68 @@ class AppLocalizationsZh extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get paymentPending => 'Apple 正在处理中,请稍候';
|
||||
|
||||
@override
|
||||
String get notifyCenterTitle => '通知';
|
||||
|
||||
@override
|
||||
String get notifyMarkAllRead => '全部已读';
|
||||
|
||||
@override
|
||||
String get notifyLoadFailed => '加载失败';
|
||||
|
||||
@override
|
||||
String get notifyRetry => '重试';
|
||||
|
||||
@override
|
||||
String get notifyEmpty => '暂无通知';
|
||||
|
||||
@override
|
||||
String get timeJustNow => '刚刚';
|
||||
|
||||
@override
|
||||
String timeMinutesAgo(int minutes) {
|
||||
return '$minutes分钟前';
|
||||
}
|
||||
|
||||
@override
|
||||
String timeHoursAgo(int hours) {
|
||||
return '$hours小时前';
|
||||
}
|
||||
|
||||
@override
|
||||
String timeDaysAgo(int days) {
|
||||
return '$days天前';
|
||||
}
|
||||
|
||||
@override
|
||||
String get pointsLedgerTitle => '积分流水';
|
||||
|
||||
@override
|
||||
String get pointsLedgerEmpty => '暂无流水记录';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeRegister => '注册赠送';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypePurchase => '购买积分包';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeConsume => 'AI 对话消耗';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeAdjust => '系统调整';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeRefund => '退款';
|
||||
|
||||
@override
|
||||
String pointsLedgerBalance(int balance) {
|
||||
return '余额 $balance';
|
||||
}
|
||||
|
||||
@override
|
||||
String get retry => '重试';
|
||||
}
|
||||
|
||||
/// The translations for Chinese, using the Han script (`zh_Hant`).
|
||||
@@ -1397,10 +1448,7 @@ class AppLocalizationsZhHant extends AppLocalizationsZh {
|
||||
String get settingsAccountAndDataTitle => '帳號資料';
|
||||
|
||||
@override
|
||||
String get settingsInterfaceLanguage => '介面語言';
|
||||
|
||||
@override
|
||||
String get settingsAiLanguage => 'AI 回覆語言';
|
||||
String get settingsLanguage => '語言';
|
||||
|
||||
@override
|
||||
String get settingsNotificationAllow => '允許通知';
|
||||
@@ -1562,6 +1610,9 @@ class AppLocalizationsZhHant extends AppLocalizationsZh {
|
||||
@override
|
||||
String get settingsCoinPackPopularBadge => '推薦';
|
||||
|
||||
@override
|
||||
String get settingsCoinPackNewUserBadge => '限購一次';
|
||||
|
||||
@override
|
||||
String get settingsPurchaseButton => '立即支付';
|
||||
|
||||
@@ -2240,4 +2291,66 @@ class AppLocalizationsZhHant extends AppLocalizationsZh {
|
||||
|
||||
@override
|
||||
String get paymentPending => 'Apple 正在處理中,請稍候';
|
||||
|
||||
@override
|
||||
String get notifyCenterTitle => '通知';
|
||||
|
||||
@override
|
||||
String get notifyMarkAllRead => '全部已讀';
|
||||
|
||||
@override
|
||||
String get notifyLoadFailed => '載入失敗';
|
||||
|
||||
@override
|
||||
String get notifyRetry => '重試';
|
||||
|
||||
@override
|
||||
String get notifyEmpty => '暫無通知';
|
||||
|
||||
@override
|
||||
String get timeJustNow => '剛剛';
|
||||
|
||||
@override
|
||||
String timeMinutesAgo(int minutes) {
|
||||
return '$minutes分鐘前';
|
||||
}
|
||||
|
||||
@override
|
||||
String timeHoursAgo(int hours) {
|
||||
return '$hours小時前';
|
||||
}
|
||||
|
||||
@override
|
||||
String timeDaysAgo(int days) {
|
||||
return '$days天前';
|
||||
}
|
||||
|
||||
@override
|
||||
String get pointsLedgerTitle => '積分流水';
|
||||
|
||||
@override
|
||||
String get pointsLedgerEmpty => '暫無流水記錄';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeRegister => '註冊贈送';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypePurchase => '購買積分包';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeConsume => 'AI 對話消耗';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeAdjust => '系統調整';
|
||||
|
||||
@override
|
||||
String get pointsLedgerTypeRefund => '退款';
|
||||
|
||||
@override
|
||||
String pointsLedgerBalance(int balance) {
|
||||
return '餘額 $balance';
|
||||
}
|
||||
|
||||
@override
|
||||
String get retry => '重試';
|
||||
}
|
||||
|
||||
@@ -83,8 +83,7 @@
|
||||
"settingsSectionPrivacy": "隐私设置",
|
||||
"settingsSectionNotification": "通知设置",
|
||||
"settingsAccountAndDataTitle": "账号数据",
|
||||
"settingsInterfaceLanguage": "界面语言",
|
||||
"settingsAiLanguage": "AI回复语言",
|
||||
"settingsLanguage": "语言",
|
||||
"settingsNotificationAllow": "允许通知",
|
||||
"settingsNotificationVibration": "允许振动",
|
||||
"settingsSectionAbout": "关于",
|
||||
@@ -111,12 +110,8 @@
|
||||
}
|
||||
},
|
||||
"settingsCoinHeroSubtitle": "点数可用于后续起卦与相关服务消费",
|
||||
"settingsAiLanguage": "AI 回复语言",
|
||||
"settingsAiLanguageHint": "该字段将对齐 profiles.settings.preferences.ai_language,后续接入真实偏好设置。",
|
||||
"settingsTimezone": "时区",
|
||||
"settingsTimezoneHint": "该字段将对齐 profiles.settings.preferences.timezone,后续提供时区选择。",
|
||||
"settingsCountry": "国家/地区",
|
||||
"settingsCountryHint": "该字段将对齐 profiles.settings.preferences.country,后续提供国家或地区选择。",
|
||||
"settingsPrivacyProfileVisibility": "资料可见性",
|
||||
"settingsPrivacyPersonalization": "个性化推荐",
|
||||
"settingsPrivacyHistoryVisibility": "历史记录展示",
|
||||
@@ -195,6 +190,7 @@
|
||||
"settingsCoinPackPopular": "常用加量包",
|
||||
"settingsCoinPackPremium": "高频进阶包",
|
||||
"settingsCoinPackPopularBadge": "推荐",
|
||||
"settingsCoinPackNewUserBadge": "限购一次",
|
||||
"settingsPurchaseButton": "立即支付",
|
||||
"settingsPurchasePending": "",
|
||||
"settingsCoinAmount": "{amount} 点数",
|
||||
@@ -511,5 +507,51 @@
|
||||
"paymentProductNotFound": "商品暂时不可用",
|
||||
"paymentStarterPackIneligible": "新手包每位用户仅限购买一次",
|
||||
"paymentProductUnavailable": "商品暂时不可用",
|
||||
"paymentPending": "Apple 正在处理中,请稍候"
|
||||
"paymentPending": "Apple 正在处理中,请稍候",
|
||||
"notifyCenterTitle": "通知",
|
||||
"notifyMarkAllRead": "全部已读",
|
||||
"notifyLoadFailed": "加载失败",
|
||||
"notifyRetry": "重试",
|
||||
"notifyEmpty": "暂无通知",
|
||||
"timeJustNow": "刚刚",
|
||||
"timeMinutesAgo": "{minutes}分钟前",
|
||||
"@timeMinutesAgo": {
|
||||
"placeholders": {
|
||||
"minutes": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timeHoursAgo": "{hours}小时前",
|
||||
"@timeHoursAgo": {
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timeDaysAgo": "{days}天前",
|
||||
"@timeDaysAgo": {
|
||||
"placeholders": {
|
||||
"days": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"pointsLedgerTitle": "积分流水",
|
||||
"pointsLedgerEmpty": "暂无流水记录",
|
||||
"pointsLedgerTypeRegister": "注册赠送",
|
||||
"pointsLedgerTypePurchase": "购买积分包",
|
||||
"pointsLedgerTypeConsume": "AI 对话消耗",
|
||||
"pointsLedgerTypeAdjust": "系统调整",
|
||||
"pointsLedgerTypeRefund": "退款",
|
||||
"pointsLedgerBalance": "余额 {balance}",
|
||||
"@pointsLedgerBalance": {
|
||||
"placeholders": {
|
||||
"balance": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"retry": "重试"
|
||||
}
|
||||
|
||||
@@ -55,8 +55,7 @@
|
||||
"settingsSectionPrivacy": "隱私設定",
|
||||
"settingsSectionNotification": "通知設定",
|
||||
"settingsAccountAndDataTitle": "帳號資料",
|
||||
"settingsInterfaceLanguage": "介面語言",
|
||||
"settingsAiLanguage": "AI 回覆語言",
|
||||
"settingsLanguage": "語言",
|
||||
"settingsNotificationAllow": "允許通知",
|
||||
"settingsNotificationVibration": "允許振動",
|
||||
"settingsSectionAbout": "關於",
|
||||
@@ -73,7 +72,6 @@
|
||||
}
|
||||
},
|
||||
"settingsCoinHeroSubtitle": "點數可用於後續起卦與相關服務消費",
|
||||
"settingsAiLanguage": "AI 回覆語言",
|
||||
"settingsPrivacyProfileVisibility": "資料可見性",
|
||||
"settingsPrivacyPersonalization": "個人化推薦",
|
||||
"settingsPrivacyHistoryVisibility": "歷史記錄展示",
|
||||
@@ -128,6 +126,7 @@
|
||||
"settingsCoinPackPopular": "常用加量包",
|
||||
"settingsCoinPackPremium": "高頻進階包",
|
||||
"settingsCoinPackPopularBadge": "推薦",
|
||||
"settingsCoinPackNewUserBadge": "限購一次",
|
||||
"settingsPurchaseButton": "立即支付",
|
||||
"settingsPurchasePending": "",
|
||||
"settingsCoinAmount": "{amount} 點數",
|
||||
@@ -367,16 +366,25 @@
|
||||
"timeMinutesAgo": "{minutes}分鐘前",
|
||||
"@timeMinutesAgo": {
|
||||
"placeholders": {
|
||||
"minutes": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timeHoursAgo": "{hours}小時前",
|
||||
"@timeHoursAgo": {
|
||||
"placeholders": {
|
||||
"hours": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"timeDaysAgo": "{days}天前",
|
||||
"@timeDaysAgo": {
|
||||
"placeholders": {
|
||||
"days": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resultFocusPoints": "斷卦要點",
|
||||
@@ -413,5 +421,20 @@
|
||||
"paymentProductNotFound": "商品暫時不可用",
|
||||
"paymentStarterPackIneligible": "新手包每位用戶僅限購買一次",
|
||||
"paymentProductUnavailable": "商品暫時不可用",
|
||||
"paymentPending": "Apple 正在處理中,請稍候"
|
||||
"paymentPending": "Apple 正在處理中,請稍候",
|
||||
"pointsLedgerTitle": "積分流水",
|
||||
"pointsLedgerEmpty": "暫無流水記錄",
|
||||
"pointsLedgerTypeRegister": "註冊贈送",
|
||||
"pointsLedgerTypePurchase": "購買積分包",
|
||||
"pointsLedgerTypeConsume": "AI 對話消耗",
|
||||
"pointsLedgerTypeAdjust": "系統調整",
|
||||
"pointsLedgerTypeRefund": "退款",
|
||||
"pointsLedgerBalance": "餘額 {balance}",
|
||||
"@pointsLedgerBalance": {
|
||||
"placeholders": {
|
||||
"balance": {
|
||||
"type": "int"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user