ChatGPT-Next-Web/app/locales/en.ts

171 lines
5.1 KiB
TypeScript
Raw Normal View History

import { SubmitKey } from "../store/app";
2023-03-21 16:20:32 +00:00
import type { LocaleType } from "./index";
2023-03-20 16:17:45 +00:00
const en: LocaleType = {
WIP: "WIP...",
Error: {
Unauthorized:
"Unauthorized access, please enter access code in settings page.",
},
2023-03-21 16:20:32 +00:00
ChatItem: {
ChatItemCount: (count: number) => `${count} messages`,
},
Chat: {
SubTitle: (count: number) => `${count} messages with ChatGPT`,
Actions: {
ChatList: "Go To Chat List",
CompressedHistory: "Compressed History Memory Prompt",
Export: "Export All Messages as Markdown",
Copy: "Copy",
Stop: "Stop",
2023-03-26 10:59:09 +00:00
Retry: "Retry",
2023-03-20 16:17:45 +00:00
},
2023-03-29 16:02:50 +00:00
Rename: "Rename Chat",
2023-03-21 16:20:32 +00:00
Typing: "Typing…",
Input: (submitKey: string) => {
var inputHints = `Type something and press ${submitKey} to send`;
if (submitKey === String(SubmitKey.Enter)) {
inputHints += ", press Shift + Enter to newline";
}
return inputHints;
},
2023-03-21 16:20:32 +00:00
Send: "Send",
},
Export: {
Title: "All Messages",
Copy: "Copy All",
Download: "Download",
MessageFromYou: "Message From You",
MessageFromChatGPT: "Message From ChatGPT",
2023-03-21 16:20:32 +00:00
},
Memory: {
Title: "Memory Prompt",
EmptyContent: "Nothing yet.",
Send: "Send Memory",
Copy: "Copy Memory",
Reset: "Reset Session",
ResetConfirm:
"Resetting will clear the current conversation history and historical memory. Are you sure you want to reset?",
2023-03-21 16:20:32 +00:00
},
Home: {
NewChat: "New Chat",
DeleteChat: "Confirm to delete the selected conversation?",
2023-04-06 16:14:27 +00:00
DeleteToast: "Chat Deleted",
Revert: "Revert",
2023-03-21 16:20:32 +00:00
},
Settings: {
Title: "Settings",
SubTitle: "All Settings",
Actions: {
ClearAll: "Clear All Data",
ResetAll: "Reset All Settings",
Close: "Close",
2023-03-20 16:17:45 +00:00
},
2023-03-21 16:20:32 +00:00
Lang: {
2023-04-02 18:02:03 +00:00
Name: "Language", // ATTENTION: if you wanna add a new translation, please do not translate this value, leave it as `Language`
2023-03-21 16:20:32 +00:00
Options: {
cn: "简体中文",
2023-03-21 16:20:32 +00:00
en: "English",
tw: "繁體中文",
2023-03-31 00:48:57 +00:00
es: "Español",
2023-04-02 17:23:50 +00:00
it: "Italiano",
2023-03-21 16:20:32 +00:00
},
2023-03-20 16:17:45 +00:00
},
2023-03-21 16:20:32 +00:00
Avatar: "Avatar",
2023-03-28 06:37:44 +00:00
FontSize: {
Title: "Font Size",
SubTitle: "Adjust font size of chat content",
},
2023-03-23 16:01:00 +00:00
Update: {
Version: (x: string) => `Version: ${x}`,
IsLatest: "Latest version",
CheckUpdate: "Check Update",
IsChecking: "Checking update...",
FoundUpdate: (x: string) => `Found new version: ${x}`,
GoToUpdate: "Update",
},
2023-03-21 16:20:32 +00:00
SendKey: "Send Key",
Theme: "Theme",
TightBorder: "Tight Border",
SendPreviewBubble: "Send Preview Bubble",
2023-03-28 17:39:14 +00:00
Prompt: {
Disable: {
Title: "Disable auto-completion",
SubTitle: "Input / to trigger auto-completion",
2023-03-28 17:39:14 +00:00
},
List: "Prompt List",
ListCount: (builtin: number, custom: number) =>
`${builtin} built-in, ${custom} user-defined`,
Edit: "Edit",
},
2023-03-21 16:20:32 +00:00
HistoryCount: {
Title: "Attached Messages Count",
SubTitle: "Number of sent messages attached per request",
2023-03-20 16:17:45 +00:00
},
2023-03-21 16:20:32 +00:00
CompressThreshold: {
Title: "History Compression Threshold",
SubTitle:
"Will compress if uncompressed messages length exceeds the value",
2023-03-20 16:17:45 +00:00
},
2023-03-26 12:35:15 +00:00
Token: {
Title: "API Key",
SubTitle: "Use your key to ignore access code limit",
Placeholder: "OpenAI API Key",
},
Usage: {
Title: "Account Balance",
2023-04-05 19:56:54 +00:00
SubTitle(used: any, total: any) {
return `Used this month $${used}, subscription $${total}`;
},
IsChecking: "Checking...",
Check: "Check Again",
2023-04-03 12:18:04 +00:00
NoAccess: "Enter API Key to check balance",
},
AccessCode: {
Title: "Access Code",
SubTitle: "Access control enabled",
Placeholder: "Need Access Code",
},
2023-03-21 16:20:32 +00:00
Model: "Model",
Temperature: {
Title: "Temperature",
SubTitle: "A larger value makes the more random output",
2023-03-20 16:17:45 +00:00
},
2023-03-21 16:20:32 +00:00
MaxTokens: {
Title: "Max Tokens",
SubTitle: "Maximum length of input tokens and generated tokens",
2023-03-20 16:17:45 +00:00
},
2023-03-21 16:20:32 +00:00
PresencePenlty: {
Title: "Presence Penalty",
SubTitle:
"A larger value increases the likelihood to talk about new topics",
},
},
Store: {
DefaultTopic: "New Conversation",
BotHello: "Hello! How can I assist you today?",
Error: "Something went wrong, please try again later.",
Prompt: {
History: (content: string) =>
"This is a summary of the chat history between the AI and the user as a recap: " +
content,
Topic:
2023-03-29 16:02:50 +00:00
"Please generate a four to five word title summarizing our conversation without any lead-in, punctuation, quotation marks, periods, symbols, or additional text. Remove enclosing quotation marks.",
2023-03-21 16:20:32 +00:00
Summarize:
"Summarize our discussion briefly in 200 words or less to use as a prompt for future context.",
2023-03-21 16:20:32 +00:00
},
ConfirmClearAll: "Confirm to clear all chat and setting data?",
},
Copy: {
Success: "Copied to clipboard",
Failed: "Copy failed, please grant permission to access clipboard",
},
2023-04-02 18:02:03 +00:00
Context: {
Toast: (x: any) => `With ${x} contextual prompts`,
Edit: "Contextual and Memory Prompts",
Add: "Add One",
},
2023-03-21 16:20:32 +00:00
};
2023-03-20 16:17:45 +00:00
2023-03-21 16:20:32 +00:00
export default en;