Skip to content

Commit 30e9641

Browse files
committed
chore: fix i18n
1 parent 8ca9c75 commit 30e9641

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/_locales/en/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"Append Query": "Append Query",
2525
"Prepend Query": "Prepend Query",
2626
"Wechat Pay": "Wechat Pay",
27-
"Type your question here\nEnter to send, shift + enter to break line": "Type your question here\nEnter to send, shift + enter to break line",
27+
"Type your question here\nEnter to send, shift + enter to break line": "Type your question here\nEnter to send\nShift + enter to break line",
2828
"Wait for the answer to finish and then continue here": "Wait for the answer to finish and then continue here",
2929
"Ask ChatGPT": "Ask ChatGPT",
3030
"No Input Found": "No Input Found",

src/_locales/zh-hans/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"Append Query": "挂载到末尾的查询选择器",
2525
"Prepend Query": "插入到开头的查询选择器",
2626
"Wechat Pay": "微信打赏",
27-
"Type your question here\nEnter to send, shift + enter to break line": "在此输入你的问题\n回车 发送, shift+回车 换行",
27+
"Type your question here\nEnter to send, shift + enter to break line": "在此输入你的问题\n回车 发送\nshift+回车 换行",
2828
"Wait for the answer to finish and then continue here": "等待回答完成, 然后在此继续",
2929
"Ask ChatGPT": "询问ChatGPT",
3030
"No Input Found": "无输入",

src/_locales/zh-hant/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"Append Query": "附加查詢選擇器",
2525
"Prepend Query": "插入查詢選擇器",
2626
"Wechat Pay": "微信支付贊助",
27-
"Type your question here\nEnter to send, shift + enter to break line": "在此輸入你的問題\n按Enter傳送,Shift + Enter 換行",
27+
"Type your question here\nEnter to send, shift + enter to break line": "在此輸入你的問題\n按Enter傳送\nShift + Enter 換行",
2828
"Wait for the answer to finish and then continue here": "等待回答完成後再在此繼續",
2929
"Ask ChatGPT": "詢問ChatGPT",
3030
"No Input Found": "找不到輸入",

src/components/InputBox/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function InputBox({ onSubmit, enabled, port, reverseResizeDir }) {
8080
}
8181
placeholder={
8282
enabled
83-
? t('Type your question here\nEnter to send\nShift + enter to break line')
83+
? t('Type your question here\nEnter to send, shift + enter to break line')
8484
: t('Type your question here\nEnter to stop generating\nShift + enter to break line')
8585
}
8686
value={value}

0 commit comments

Comments
 (0)