From df3d5f49b193048f74fc1c2e72dd156b2bb9467e Mon Sep 17 00:00:00 2001 From: jingrow Date: Sun, 7 Sep 2025 16:23:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=88=A0=E9=99=A4=E7=AB=99?= =?UTF-8?q?=E7=82=B9=E7=9A=84=E5=8E=9F=E5=9B=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src2/components/ChurnFeedbackDialog.vue | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/dashboard/src2/components/ChurnFeedbackDialog.vue b/dashboard/src2/components/ChurnFeedbackDialog.vue index f02c761..78fbecb 100644 --- a/dashboard/src2/components/ChurnFeedbackDialog.vue +++ b/dashboard/src2/components/ChurnFeedbackDialog.vue @@ -95,9 +95,9 @@ export default { if ( [ - 'Payment issues', - 'Features were missing', - 'My reason is not listed here' + '支付问题', + '缺少功能', + '我的原因不在此列表中' ].includes(this.feedback) && !this.note ) { @@ -118,15 +118,15 @@ export default { computed: { options() { return [ - 'I am moving to a different product e.g ZOHO, Quickbooks, etc.', - 'I was just exploring the product', - 'I prefer self-hosting my instance', - 'Moved site to another 今果 Jingrow account', - 'I did not like the 今果 Jingrow experience', - '今果 Jingrow is too expensive for me', - 'Payment issues', - 'Features were missing', - 'My reason is not listed here' + '我要迁移到其他产品', + '我只是在探索这个产品', + '我更喜欢自己托管实例', + '已将站点迁移到另一个Jingrow账户', + '我不喜欢Jingrow的体验', + 'Jingrow对我来说太贵了', + '支付问题', + '缺少功能', + '我的原因不在此列表中' ]; } }