diff --git a/src/i18n/lang/en-US/donation.ts b/src/i18n/lang/en-US/donation.ts index 58cf19c..2c92e84 100644 --- a/src/i18n/lang/en-US/donation.ts +++ b/src/i18n/lang/en-US/donation.ts @@ -3,5 +3,7 @@ export default { 'Your donation will be used to support development and maintenance work, including but not limited to server maintenance, domain name renewal, etc.', message: 'You can leave your email or github name when leaving a message.', refresh: 'Refresh List', - toDonateList: 'Buy me a coffee' + toDonateList: 'Buy me a coffee', + title: 'Donation List', + noMessage: 'No Message' }; diff --git a/src/i18n/lang/zh-CN/donation.ts b/src/i18n/lang/zh-CN/donation.ts index e79eeb5..01a1704 100644 --- a/src/i18n/lang/zh-CN/donation.ts +++ b/src/i18n/lang/zh-CN/donation.ts @@ -2,5 +2,7 @@ export default { description: '您的捐赠将用于支持开发和维护工作,包括但不限于服务器维护、域名续费等。', message: '留言时可留下您的邮箱或 github名称。', refresh: '刷新列表', - toDonateList: '请我喝咖啡' + toDonateList: '请我喝咖啡', + noMessage: '暂无留言', + title: '捐赠列表' }; diff --git a/src/renderer/components/common/DonationList.vue b/src/renderer/components/common/DonationList.vue index 5271350..5956181 100644 --- a/src/renderer/components/common/DonationList.vue +++ b/src/renderer/components/common/DonationList.vue @@ -1,6 +1,44 @@