Compare commits

..

2 Commits

Author SHA1 Message Date
6815eb869b build: 生产环境构建 (ENV=prod) - 全中文界面
- 修复所有英文文字为中文
- 充值、提现、划转功能完整中文化
- 字体 tree-shaking 优化完成
- WebAssembly dry run 成功
2026-03-24 02:22:02 +08:00
fcbce03dc6 fix(ui): 将所有英文文字改为中文
- 'Amount to Transfer' → '充值金额'
- 'Withdrawal Amount' → '提现金额'
- 'Enter withdrawal amount (USDT)' → '请输入提现金额(USDT)'
- 'Destination Address' → '目标地址'
- 'Enter withdrawal address' → '请输入提现地址'
- 'Contact Info (Optional)' → '联系方式(可选)'
- 'Contact info' → '联系方式'

确保所有 UI 文字都使用中文
2026-03-24 02:21:25 +08:00
3 changed files with 3544 additions and 3547 deletions

View File

@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"e4b8dca3f1b4ede4c30371002441c88c12187e
_flutter.loader.load({
serviceWorkerSettings: {
serviceWorkerVersion: "2149079038" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
serviceWorkerVersion: "538720166" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
}
});

File diff suppressed because one or more lines are too long

View File

@@ -526,7 +526,7 @@ void _showDepositDialog(BuildContext context) {
child: ShadInputFormField(
id: 'amount',
controller: amountController,
label: const Text('Amount to Transfer'),
label: const Text('充值金额'),
placeholder: const Text('0.00'),
keyboardType: const TextInputType.numberWithOptions(decimal: true),
validator: Validators.amount,
@@ -885,8 +885,8 @@ void _showWithdrawDialog(BuildContext context, String? balance) {
ShadInputFormField(
id: 'amount',
controller: amountController,
label: const Text('Withdrawal Amount'),
placeholder: const Text('Enter withdrawal amount (USDT)'),
label: const Text('提现金额'),
placeholder: const Text('请输入提现金额(USDT)'),
keyboardType: const TextInputType.numberWithOptions(decimal: true),
validator: Validators.amount,
),
@@ -894,16 +894,16 @@ void _showWithdrawDialog(BuildContext context, String? balance) {
ShadInputFormField(
id: 'address',
controller: addressController,
label: const Text('Destination Address'),
placeholder: const Text('Enter withdrawal address'),
label: const Text('目标地址'),
placeholder: const Text('请输入提现地址'),
validator: (v) => Validators.required(v, '提现地址'),
),
SizedBox(height: AppSpacing.md),
ShadInputFormField(
id: 'contact',
controller: contactController,
label: const Text('Contact Info (Optional)'),
placeholder: const Text('Contact info'),
label: const Text('联系方式(可选)'),
placeholder: const Text('联系方式'),
),
],
),