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对我来说太贵了', + '支付问题', + '缺少功能', + '我的原因不在此列表中' ]; } }