From cac604aee3e77a6d8b23fc4f7f2828ee49629c65 Mon Sep 17 00:00:00 2001 From: HimiCos Date: Wed, 29 Mar 2023 19:31:34 +0800 Subject: [PATCH] chore: standardize input box punctuation --- app/locales/cn.ts | 2 +- app/locales/tw.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/locales/cn.ts b/app/locales/cn.ts index d65e36e1..b93ec859 100644 --- a/app/locales/cn.ts +++ b/app/locales/cn.ts @@ -22,7 +22,7 @@ const cn = { Input: (submitKey: string) => { var inputHints = `输入消息,${submitKey} 发送`; if (submitKey === String(SubmitKey.Enter)) { - inputHints += ", Shift + Enter 换行"; + inputHints += ",Shift + Enter 换行"; } return inputHints; }, diff --git a/app/locales/tw.ts b/app/locales/tw.ts index 5899fa99..29f5ec22 100644 --- a/app/locales/tw.ts +++ b/app/locales/tw.ts @@ -23,7 +23,7 @@ const tw: LocaleType = { Input: (submitKey: string) => { var inputHints = `輸入訊息後,按下 ${submitKey} 鍵即可發送`; if (submitKey === String(SubmitKey.Enter)) { - inputHints += ", Shift + Enter 鍵換行"; + inputHints += ",Shift + Enter 鍵換行"; } return inputHints; },