Skip to content

Commit

Permalink
Merge pull request ChatGPTNextWeb#158 from HimiCos/main
Browse files Browse the repository at this point in the history
chore: standardize input box punctuation
  • Loading branch information
Yidadaa authored Mar 29, 2023
2 parents 525b5b8 + cac604a commit f893f53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/locales/cn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
},
Expand Down
2 changes: 1 addition & 1 deletion app/locales/tw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
},
Expand Down

0 comments on commit f893f53

Please sign in to comment.