From 6311df72863d7516b724e5b3b5607d119e064a2b Mon Sep 17 00:00:00 2001 From: Seven Date: Wed, 14 Jan 2026 11:09:33 +0700 Subject: [PATCH] =?UTF-8?q?feat(locales):=20=E6=B7=BB=E5=8A=A0=E2=80=9C?= =?UTF-8?q?=E8=B4=A6=E6=88=B7=E7=B1=BB=E5=9E=8B=E2=80=9D=E7=BF=BB=E8=AF=91?= =?UTF-8?q?=E6=94=AF=E6=8C=81=EF=BC=8C=E5=8C=85=E6=8B=AC=E8=B5=84=E9=87=91?= =?UTF-8?q?=E8=B4=A6=E6=88=B7=E5=92=8C=E4=BA=A4=E6=98=93=E8=B4=A6=E6=88=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/ar.json | 7 ++++++- src/locales/en-US.json | 7 ++++++- src/locales/zh-CN.json | 7 ++++++- src/locales/zh-HK.json | 7 ++++++- src/views/wallet/asset-record.vue | 2 +- 5 files changed, 25 insertions(+), 5 deletions(-) diff --git a/src/locales/ar.json b/src/locales/ar.json index 6709dda..d2d1080 100644 --- a/src/locales/ar.json +++ b/src/locales/ar.json @@ -26,7 +26,12 @@ "remark": "ملاحظة:", "memo": "مذكرة", "noRecords": "لا توجد سجلات أصول", - "loadingMore": "جاري التحميل..." + "loadingMore": "جاري التحميل...", + "empty": "لا توجد سجلات أصول", + "accountType": { + "funding": "حساب التمويل", + "trading": "حساب التداول" + } }, "bill": { "title": "الفواتير", diff --git a/src/locales/en-US.json b/src/locales/en-US.json index b3a8d81..6ea6354 100644 --- a/src/locales/en-US.json +++ b/src/locales/en-US.json @@ -26,7 +26,12 @@ "remark": "Remark:", "memo": "Memo", "noRecords": "No asset records", - "loadingMore": "Loading more..." + "loadingMore": "Loading more...", + "empty": "No asset records", + "accountType": { + "funding": "Funding Account", + "trading": "Trading Account" + } }, "bill": { "title": "Bills", diff --git a/src/locales/zh-CN.json b/src/locales/zh-CN.json index 1a637e8..301f680 100644 --- a/src/locales/zh-CN.json +++ b/src/locales/zh-CN.json @@ -26,7 +26,12 @@ "remark": "备注:", "memo": "备注", "noRecords": "暂无资产记录", - "loadingMore": "加载更多中..." + "loadingMore": "加载更多中...", + "empty": "暂无资产记录", + "accountType": { + "funding": "资金账户", + "trading": "交易账户" + } }, "bill": { "title": "账单", diff --git a/src/locales/zh-HK.json b/src/locales/zh-HK.json index 1775ff8..5359675 100644 --- a/src/locales/zh-HK.json +++ b/src/locales/zh-HK.json @@ -26,7 +26,12 @@ "remark": "備註:", "memo": "備註", "noRecords": "暫無資產記錄", - "loadingMore": "加載更多中..." + "loadingMore": "加載更多中...", + "empty": "暫無資產記錄", + "accountType": { + "funding": "資金賬戶", + "trading": "交易賬戶" + } }, "bill": { "title": "賬單", diff --git a/src/views/wallet/asset-record.vue b/src/views/wallet/asset-record.vue index 7618ce4..d32177b 100644 --- a/src/views/wallet/asset-record.vue +++ b/src/views/wallet/asset-record.vue @@ -86,7 +86,7 @@ onBeforeMount(() => {
- {{ item.accountType }} + {{ $t(`wallet.assetRecord.accountType.${item.accountType}`) }}
{{ useDateFormat(item.createdAt, 'YYYY/MM/DD HH:mm:ss') }}