en.ts 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781
  1. import { getClientConfig } from "../config/client";
  2. import { SubmitKey } from "../store/config";
  3. import { LocaleType } from "./index";
  4. import { SAAS_CHAT_UTM_URL } from "@/app/constant";
  5. // if you are adding a new translation, please use PartialLocaleType instead of LocaleType
  6. const isApp = !!getClientConfig()?.isApp;
  7. const en: LocaleType = {
  8. WIP: "Coming Soon...",
  9. Error: {
  10. Unauthorized: isApp
  11. ? `😆 Oops, there's an issue. No worries:
  12. \\ 1️⃣ New here? [Click to start chatting now 🚀](${SAAS_CHAT_UTM_URL})
  13. \\ 2️⃣ Want to use your own OpenAI resources? [Click here](/#/settings) to change settings ⚙️`
  14. : `😆 Oops, there's an issue. Let's fix it:
  15. \ 1️⃣ New here? [Click to start chatting now 🚀](${SAAS_CHAT_UTM_URL})
  16. \ 2️⃣ Using a private setup? [Click here](/#/auth) to enter your key 🔑
  17. \ 3️⃣ Want to use your own OpenAI resources? [Click here](/#/settings) to change settings ⚙️
  18. `,
  19. },
  20. Auth: {
  21. Return: "Return",
  22. Title: "Need Access Code",
  23. Tips: "Please enter access code below",
  24. SubTips: "Or enter your OpenAI or Google API Key",
  25. Input: "access code",
  26. Confirm: "Confirm",
  27. Later: "Later",
  28. SaasTips: "Too Complex, Use Immediately Now",
  29. TopTips:
  30. "🥳 NextChat AI launch promotion: Instantly unlock the latest models like OpenAI o1, GPT-4o, Claude-3.5!",
  31. },
  32. ChatItem: {
  33. ChatItemCount: (count: number) => `${count} messages`,
  34. },
  35. Chat: {
  36. SubTitle: (count: number) => `${count} messages`,
  37. EditMessage: {
  38. Title: "Edit All Messages",
  39. Topic: {
  40. Title: "Topic",
  41. SubTitle: "Change the current topic",
  42. },
  43. },
  44. Actions: {
  45. ChatList: "Go To Chat List",
  46. CompressedHistory: "Compressed History Memory Prompt",
  47. Export: "Export All Messages as Markdown",
  48. Copy: "Copy",
  49. Stop: "Stop",
  50. Retry: "Retry",
  51. Pin: "Pin",
  52. PinToastContent: "Pinned 1 messages to contextual prompts",
  53. PinToastAction: "View",
  54. Delete: "Delete",
  55. Edit: "Edit",
  56. FullScreen: "FullScreen",
  57. RefreshTitle: "Refresh Title",
  58. RefreshToast: "Title refresh request sent",
  59. Speech: "Play",
  60. StopSpeech: "Stop",
  61. },
  62. Commands: {
  63. new: "Start a new chat",
  64. newm: "Start a new chat with mask",
  65. next: "Next Chat",
  66. prev: "Previous Chat",
  67. clear: "Clear Context",
  68. fork: "Copy Chat",
  69. del: "Delete Chat",
  70. },
  71. InputActions: {
  72. Stop: "Stop",
  73. ToBottom: "To Latest",
  74. Theme: {
  75. auto: "Auto",
  76. light: "Light Theme",
  77. dark: "Dark Theme",
  78. },
  79. Prompt: "Prompts",
  80. Masks: "Masks",
  81. Clear: "Clear Context",
  82. Settings: "Settings",
  83. UploadImage: "Upload Images",
  84. },
  85. Rename: "Rename Chat",
  86. Typing: "Typing…",
  87. Input: (submitKey: string) => {
  88. var inputHints = `${submitKey} to send`;
  89. if (submitKey === String(SubmitKey.Enter)) {
  90. inputHints += ", Shift + Enter to wrap";
  91. }
  92. return inputHints + ", / to search prompts, : to use commands";
  93. },
  94. Send: "Send",
  95. StartSpeak: "Start Speak",
  96. StopSpeak: "Stop Speak",
  97. Config: {
  98. Reset: "Reset to Default",
  99. SaveAs: "Save as Mask",
  100. },
  101. IsContext: "Contextual Prompt",
  102. ShortcutKey: {
  103. Title: "Keyboard Shortcuts",
  104. newChat: "Open New Chat",
  105. focusInput: "Focus Input Field",
  106. copyLastMessage: "Copy Last Reply",
  107. copyLastCode: "Copy Last Code Block",
  108. showShortcutKey: "Show Shortcuts",
  109. },
  110. },
  111. Export: {
  112. Title: "Export Messages",
  113. Copy: "Copy All",
  114. Download: "Download",
  115. MessageFromYou: "Message From You",
  116. MessageFromChatGPT: "Message From ChatGPT",
  117. Share: "Share to ShareGPT",
  118. Format: {
  119. Title: "Export Format",
  120. SubTitle: "Markdown or PNG Image",
  121. },
  122. IncludeContext: {
  123. Title: "Including Context",
  124. SubTitle: "Export context prompts in mask or not",
  125. },
  126. Steps: {
  127. Select: "Select",
  128. Preview: "Preview",
  129. },
  130. Image: {
  131. Toast: "Capturing Image...",
  132. Modal: "Long press or right click to save image",
  133. },
  134. Artifacts: {
  135. Title: "Share Artifacts",
  136. Error: "Share Error",
  137. },
  138. },
  139. Select: {
  140. Search: "Search",
  141. All: "Select All",
  142. Latest: "Select Latest",
  143. Clear: "Clear",
  144. },
  145. Memory: {
  146. Title: "Memory Prompt",
  147. EmptyContent: "Nothing yet.",
  148. Send: "Send Memory",
  149. Copy: "Copy Memory",
  150. Reset: "Reset Session",
  151. ResetConfirm:
  152. "Resetting will clear the current conversation history and historical memory. Are you sure you want to reset?",
  153. },
  154. Home: {
  155. NewChat: "New Chat",
  156. DeleteChat: "Confirm to delete the selected conversation?",
  157. DeleteToast: "Chat Deleted",
  158. Revert: "Revert",
  159. },
  160. Settings: {
  161. Title: "Settings",
  162. SubTitle: "All Settings",
  163. ShowPassword: "ShowPassword",
  164. Danger: {
  165. Reset: {
  166. Title: "Reset All Settings",
  167. SubTitle: "Reset all setting items to default",
  168. Action: "Reset",
  169. Confirm: "Confirm to reset all settings to default?",
  170. },
  171. Clear: {
  172. Title: "Clear All Data",
  173. SubTitle: "Clear all messages and settings",
  174. Action: "Clear",
  175. Confirm: "Confirm to clear all messages and settings?",
  176. },
  177. },
  178. Lang: {
  179. Name: "Language", // ATTENTION: if you wanna add a new translation, please do not translate this value, leave it as `Language`
  180. All: "All Languages",
  181. },
  182. Avatar: "Avatar",
  183. FontSize: {
  184. Title: "Font Size",
  185. SubTitle: "Adjust font size of chat content",
  186. },
  187. FontFamily: {
  188. Title: "Chat Font Family",
  189. SubTitle:
  190. "Font Family of the chat content, leave empty to apply global default font",
  191. Placeholder: "Font Family Name",
  192. },
  193. InjectSystemPrompts: {
  194. Title: "Inject System Prompts",
  195. SubTitle: "Inject a global system prompt for every request",
  196. },
  197. InputTemplate: {
  198. Title: "Input Template",
  199. SubTitle: "Newest message will be filled to this template",
  200. },
  201. Update: {
  202. Version: (x: string) => `Version: ${x}`,
  203. IsLatest: "Latest version",
  204. CheckUpdate: "Check Update",
  205. IsChecking: "Checking update...",
  206. FoundUpdate: (x: string) => `Found new version: ${x}`,
  207. GoToUpdate: "Update",
  208. },
  209. SendKey: "Send Key",
  210. Theme: "Theme",
  211. TightBorder: "Tight Border",
  212. SendPreviewBubble: {
  213. Title: "Send Preview Bubble",
  214. SubTitle: "Preview markdown in bubble",
  215. },
  216. AutoGenerateTitle: {
  217. Title: "Auto Generate Title",
  218. SubTitle: "Generate a suitable title based on the conversation content",
  219. },
  220. Sync: {
  221. CloudState: "Last Update",
  222. NotSyncYet: "Not sync yet",
  223. Success: "Sync Success",
  224. Fail: "Sync Fail",
  225. Config: {
  226. Modal: {
  227. Title: "Config Sync",
  228. Check: "Check Connection",
  229. },
  230. SyncType: {
  231. Title: "Sync Type",
  232. SubTitle: "Choose your favorite sync service",
  233. },
  234. Proxy: {
  235. Title: "Enable CORS Proxy",
  236. SubTitle: "Enable a proxy to avoid cross-origin restrictions",
  237. },
  238. ProxyUrl: {
  239. Title: "Proxy Endpoint",
  240. SubTitle:
  241. "Only applicable to the built-in CORS proxy for this project",
  242. },
  243. WebDav: {
  244. Endpoint: "WebDAV Endpoint",
  245. UserName: "User Name",
  246. Password: "Password",
  247. },
  248. UpStash: {
  249. Endpoint: "UpStash Redis REST Url",
  250. UserName: "Backup Name",
  251. Password: "UpStash Redis REST Token",
  252. },
  253. },
  254. LocalState: "Local Data",
  255. Overview: (overview: any) => {
  256. return `${overview.chat} chats,${overview.message} messages,${overview.prompt} prompts,${overview.mask} masks`;
  257. },
  258. ImportFailed: "Failed to import from file",
  259. },
  260. Mask: {
  261. Splash: {
  262. Title: "Mask Splash Screen",
  263. SubTitle: "Show a mask splash screen before starting new chat",
  264. },
  265. Builtin: {
  266. Title: "Hide Builtin Masks",
  267. SubTitle: "Hide builtin masks in mask list",
  268. },
  269. },
  270. Prompt: {
  271. Disable: {
  272. Title: "Disable auto-completion",
  273. SubTitle: "Input / to trigger auto-completion",
  274. },
  275. List: "Prompt List",
  276. ListCount: (builtin: number, custom: number) =>
  277. `${builtin} built-in, ${custom} user-defined`,
  278. Edit: "Edit",
  279. Modal: {
  280. Title: "Prompt List",
  281. Add: "Add One",
  282. Search: "Search Prompts",
  283. },
  284. EditModal: {
  285. Title: "Edit Prompt",
  286. },
  287. },
  288. HistoryCount: {
  289. Title: "Attached Messages Count",
  290. SubTitle: "Number of sent messages attached per request",
  291. },
  292. CompressThreshold: {
  293. Title: "History Compression Threshold",
  294. SubTitle:
  295. "Will compress if uncompressed messages length exceeds the value",
  296. },
  297. Usage: {
  298. Title: "Account Balance",
  299. SubTitle(used: any, total: any) {
  300. return `Used this month $${used}, subscription $${total}`;
  301. },
  302. IsChecking: "Checking...",
  303. Check: "Check",
  304. NoAccess: "Enter API Key to check balance",
  305. },
  306. Access: {
  307. SaasStart: {
  308. Title: "Use NextChat AI",
  309. Label: " (Most Cost-Effective Option)",
  310. SubTitle:
  311. "Maintained by NextChat, zero setup needed, unlock OpenAI o1, GPT-4o," +
  312. " Claude-3.5 and more",
  313. ChatNow: "Start Now",
  314. },
  315. AccessCode: {
  316. Title: "Access Code",
  317. SubTitle: "Access control Enabled",
  318. Placeholder: "Enter Code",
  319. },
  320. CustomEndpoint: {
  321. Title: "Custom Endpoint",
  322. SubTitle: "Use custom Azure or OpenAI service",
  323. },
  324. Provider: {
  325. Title: "Model Provider",
  326. SubTitle: "Select Azure or OpenAI",
  327. },
  328. OpenAI: {
  329. ApiKey: {
  330. Title: "OpenAI API Key",
  331. SubTitle: "User custom OpenAI Api Key",
  332. Placeholder: "sk-xxx",
  333. },
  334. Endpoint: {
  335. Title: "OpenAI Endpoint",
  336. SubTitle: "Must start with http(s):// or use /api/openai as default",
  337. },
  338. },
  339. Azure: {
  340. ApiKey: {
  341. Title: "Azure Api Key",
  342. SubTitle: "Check your api key from Azure console",
  343. Placeholder: "Azure Api Key",
  344. },
  345. Endpoint: {
  346. Title: "Azure Endpoint",
  347. SubTitle: "Example: ",
  348. },
  349. ApiVerion: {
  350. Title: "Azure Api Version",
  351. SubTitle: "Check your api version from azure console",
  352. },
  353. },
  354. Anthropic: {
  355. ApiKey: {
  356. Title: "Anthropic API Key",
  357. SubTitle:
  358. "Use a custom Anthropic Key to bypass password access restrictions",
  359. Placeholder: "Anthropic API Key",
  360. },
  361. Endpoint: {
  362. Title: "Endpoint Address",
  363. SubTitle: "Example: ",
  364. },
  365. ApiVerion: {
  366. Title: "API Version (claude api version)",
  367. SubTitle: "Select and input a specific API version",
  368. },
  369. },
  370. Baidu: {
  371. ApiKey: {
  372. Title: "Baidu API Key",
  373. SubTitle: "Use a custom Baidu API Key",
  374. Placeholder: "Baidu API Key",
  375. },
  376. SecretKey: {
  377. Title: "Baidu Secret Key",
  378. SubTitle: "Use a custom Baidu Secret Key",
  379. Placeholder: "Baidu Secret Key",
  380. },
  381. Endpoint: {
  382. Title: "Endpoint Address",
  383. SubTitle: "not supported, configure in .env",
  384. },
  385. },
  386. Tencent: {
  387. ApiKey: {
  388. Title: "Tencent API Key",
  389. SubTitle: "Use a custom Tencent API Key",
  390. Placeholder: "Tencent API Key",
  391. },
  392. SecretKey: {
  393. Title: "Tencent Secret Key",
  394. SubTitle: "Use a custom Tencent Secret Key",
  395. Placeholder: "Tencent Secret Key",
  396. },
  397. Endpoint: {
  398. Title: "Endpoint Address",
  399. SubTitle: "not supported, configure in .env",
  400. },
  401. },
  402. ByteDance: {
  403. ApiKey: {
  404. Title: "ByteDance API Key",
  405. SubTitle: "Use a custom ByteDance API Key",
  406. Placeholder: "ByteDance API Key",
  407. },
  408. Endpoint: {
  409. Title: "Endpoint Address",
  410. SubTitle: "Example: ",
  411. },
  412. },
  413. Alibaba: {
  414. ApiKey: {
  415. Title: "Alibaba API Key",
  416. SubTitle: "Use a custom Alibaba Cloud API Key",
  417. Placeholder: "Alibaba Cloud API Key",
  418. },
  419. Endpoint: {
  420. Title: "Endpoint Address",
  421. SubTitle: "Example: ",
  422. },
  423. },
  424. Moonshot: {
  425. ApiKey: {
  426. Title: "Moonshot API Key",
  427. SubTitle: "Use a custom Moonshot API Key",
  428. Placeholder: "Moonshot API Key",
  429. },
  430. Endpoint: {
  431. Title: "Endpoint Address",
  432. SubTitle: "Example: ",
  433. },
  434. },
  435. Stability: {
  436. ApiKey: {
  437. Title: "Stability API Key",
  438. SubTitle: "Use a custom Stability API Key",
  439. Placeholder: "Stability API Key",
  440. },
  441. Endpoint: {
  442. Title: "Endpoint Address",
  443. SubTitle: "Example: ",
  444. },
  445. },
  446. Iflytek: {
  447. ApiKey: {
  448. Title: "Iflytek API Key",
  449. SubTitle: "Use a Iflytek API Key",
  450. Placeholder: "Iflytek API Key",
  451. },
  452. ApiSecret: {
  453. Title: "Iflytek API Secret",
  454. SubTitle: "Use a Iflytek API Secret",
  455. Placeholder: "Iflytek API Secret",
  456. },
  457. Endpoint: {
  458. Title: "Endpoint Address",
  459. SubTitle: "Example: ",
  460. },
  461. },
  462. CustomModel: {
  463. Title: "Custom Models",
  464. SubTitle: "Custom model options, seperated by comma",
  465. },
  466. Google: {
  467. ApiKey: {
  468. Title: "API Key",
  469. SubTitle: "Obtain your API Key from Google AI",
  470. Placeholder: "Google AI API Key",
  471. },
  472. Endpoint: {
  473. Title: "Endpoint Address",
  474. SubTitle: "Example: ",
  475. },
  476. ApiVersion: {
  477. Title: "API Version (specific to gemini-pro)",
  478. SubTitle: "Select a specific API version",
  479. },
  480. GoogleSafetySettings: {
  481. Title: "Google Safety Settings",
  482. SubTitle: "Select a safety filtering level",
  483. },
  484. },
  485. },
  486. Model: "Model",
  487. CompressModel: {
  488. Title: "Summary Model",
  489. SubTitle: "Model used to compress history and generate title",
  490. },
  491. Temperature: {
  492. Title: "Temperature",
  493. SubTitle: "A larger value makes the more random output",
  494. },
  495. TopP: {
  496. Title: "Top P",
  497. SubTitle: "Do not alter this value together with temperature",
  498. },
  499. MaxTokens: {
  500. Title: "Max Tokens",
  501. SubTitle: "Maximum length of input tokens and generated tokens",
  502. },
  503. PresencePenalty: {
  504. Title: "Presence Penalty",
  505. SubTitle:
  506. "A larger value increases the likelihood to talk about new topics",
  507. },
  508. FrequencyPenalty: {
  509. Title: "Frequency Penalty",
  510. SubTitle:
  511. "A larger value decreasing the likelihood to repeat the same line",
  512. },
  513. TTS: {
  514. Enable: {
  515. Title: "Enable TTS",
  516. SubTitle: "Enable text-to-speech service",
  517. },
  518. Autoplay: {
  519. Title: "Enable Autoplay",
  520. SubTitle:
  521. "Automatically generate speech and play, you need to enable the text-to-speech switch first",
  522. },
  523. Model: "Model",
  524. Voice: {
  525. Title: "Voice",
  526. SubTitle: "The voice to use when generating the audio",
  527. },
  528. Speed: {
  529. Title: "Speed",
  530. SubTitle: "The speed of the generated audio",
  531. },
  532. Engine: "TTS Engine",
  533. },
  534. },
  535. Store: {
  536. DefaultTopic: "New Conversation",
  537. BotHello: "Hello! How can I assist you today?",
  538. Error: "Something went wrong, please try again later.",
  539. Prompt: {
  540. History: (content: string) =>
  541. "This is a summary of the chat history as a recap: " + content,
  542. Topic:
  543. "Please generate a four to five word title summarizing our conversation without any lead-in, punctuation, quotation marks, periods, symbols, bold text, or additional text. Remove enclosing quotation marks.",
  544. Summarize:
  545. "Summarize the discussion briefly in 200 words or less to use as a prompt for future context.",
  546. },
  547. },
  548. Copy: {
  549. Success: "Copied to clipboard",
  550. Failed: "Copy failed, please grant permission to access clipboard",
  551. },
  552. Download: {
  553. Success: "Content downloaded to your directory.",
  554. Failed: "Download failed.",
  555. },
  556. Context: {
  557. Toast: (x: any) => `With ${x} contextual prompts`,
  558. Edit: "Current Chat Settings",
  559. Add: "Add a Prompt",
  560. Clear: "Context Cleared",
  561. Revert: "Revert",
  562. },
  563. Discovery: {
  564. Name: "Discovery",
  565. },
  566. FineTuned: {
  567. Sysmessage: "You are an assistant that",
  568. },
  569. SearchChat: {
  570. Name: "Search",
  571. Page: {
  572. Title: "Search Chat History",
  573. Search: "Enter search query to search chat history",
  574. NoResult: "No results found",
  575. NoData: "No data",
  576. Loading: "Loading...",
  577. SubTitle: (count: number) => `Found ${count} results`,
  578. },
  579. Item: {
  580. View: "View",
  581. },
  582. },
  583. Plugin: {
  584. Name: "Plugin",
  585. Page: {
  586. Title: "Plugins",
  587. SubTitle: (count: number) => `${count} plugins`,
  588. Search: "Search Plugin",
  589. Create: "Create",
  590. Find: "You can find awesome plugins on github: ",
  591. },
  592. Item: {
  593. Info: (count: number) => `${count} method`,
  594. View: "View",
  595. Edit: "Edit",
  596. Delete: "Delete",
  597. DeleteConfirm: "Confirm to delete?",
  598. },
  599. Auth: {
  600. None: "None",
  601. Basic: "Basic",
  602. Bearer: "Bearer",
  603. Custom: "Custom",
  604. CustomHeader: "Parameter Name",
  605. Token: "Token",
  606. Proxy: "Using Proxy",
  607. ProxyDescription: "Using proxies to solve CORS error",
  608. Location: "Location",
  609. LocationHeader: "Header",
  610. LocationQuery: "Query",
  611. LocationBody: "Body",
  612. },
  613. EditModal: {
  614. Title: (readonly: boolean) =>
  615. `Edit Plugin ${readonly ? "(readonly)" : ""}`,
  616. Download: "Download",
  617. Auth: "Authentication Type",
  618. Content: "OpenAPI Schema",
  619. Load: "Load From URL",
  620. Method: "Method",
  621. Error: "OpenAPI Schema Error",
  622. },
  623. },
  624. Mask: {
  625. Name: "Mask",
  626. Page: {
  627. Title: "Prompt Template",
  628. SubTitle: (count: number) => `${count} prompt templates`,
  629. Search: "Search Templates",
  630. Create: "Create",
  631. },
  632. Item: {
  633. Info: (count: number) => `${count} prompts`,
  634. Chat: "Chat",
  635. View: "View",
  636. Edit: "Edit",
  637. Delete: "Delete",
  638. DeleteConfirm: "Confirm to delete?",
  639. },
  640. EditModal: {
  641. Title: (readonly: boolean) =>
  642. `Edit Prompt Template ${readonly ? "(readonly)" : ""}`,
  643. Download: "Download",
  644. Clone: "Clone",
  645. },
  646. Config: {
  647. Avatar: "Bot Avatar",
  648. Name: "Bot Name",
  649. Sync: {
  650. Title: "Use Global Config",
  651. SubTitle: "Use global config in this chat",
  652. Confirm: "Confirm to override custom config with global config?",
  653. },
  654. HideContext: {
  655. Title: "Hide Context Prompts",
  656. SubTitle: "Do not show in-context prompts in chat",
  657. },
  658. Artifacts: {
  659. Title: "Enable Artifacts",
  660. SubTitle: "Can render HTML page when enable artifacts.",
  661. },
  662. CodeFold: {
  663. Title: "Enable CodeFold",
  664. SubTitle:
  665. "Automatically collapse/expand overly long code blocks when CodeFold is enabled",
  666. },
  667. Share: {
  668. Title: "Share This Mask",
  669. SubTitle: "Generate a link to this mask",
  670. Action: "Copy Link",
  671. },
  672. },
  673. },
  674. NewChat: {
  675. Return: "Return",
  676. Skip: "Just Start",
  677. Title: "Pick a Mask",
  678. SubTitle: "Chat with the Soul behind the Mask",
  679. More: "Find More",
  680. NotShow: "Never Show Again",
  681. ConfirmNoShow: "Confirm to disable?You can enable it in settings later.",
  682. },
  683. UI: {
  684. Confirm: "Confirm",
  685. Cancel: "Cancel",
  686. Close: "Close",
  687. Create: "Create",
  688. Edit: "Edit",
  689. Export: "Export",
  690. Import: "Import",
  691. Sync: "Sync",
  692. Config: "Config",
  693. },
  694. Exporter: {
  695. Description: {
  696. Title: "Only messages after clearing the context will be displayed",
  697. },
  698. Model: "Model",
  699. Messages: "Messages",
  700. Topic: "Topic",
  701. Time: "Time",
  702. },
  703. URLCommand: {
  704. Code: "Detected access code from url, confirm to apply? ",
  705. Settings: "Detected settings from url, confirm to apply?",
  706. },
  707. SdPanel: {
  708. Prompt: "Prompt",
  709. NegativePrompt: "Negative Prompt",
  710. PleaseInput: (name: string) => `Please input ${name}`,
  711. AspectRatio: "Aspect Ratio",
  712. ImageStyle: "Image Style",
  713. OutFormat: "Output Format",
  714. AIModel: "AI Model",
  715. ModelVersion: "Model Version",
  716. Submit: "Submit",
  717. ParamIsRequired: (name: string) => `${name} is required`,
  718. Styles: {
  719. D3Model: "3d-model",
  720. AnalogFilm: "analog-film",
  721. Anime: "anime",
  722. Cinematic: "cinematic",
  723. ComicBook: "comic-book",
  724. DigitalArt: "digital-art",
  725. Enhance: "enhance",
  726. FantasyArt: "fantasy-art",
  727. Isometric: "isometric",
  728. LineArt: "line-art",
  729. LowPoly: "low-poly",
  730. ModelingCompound: "modeling-compound",
  731. NeonPunk: "neon-punk",
  732. Origami: "origami",
  733. Photographic: "photographic",
  734. PixelArt: "pixel-art",
  735. TileTexture: "tile-texture",
  736. },
  737. },
  738. Sd: {
  739. SubTitle: (count: number) => `${count} images`,
  740. Actions: {
  741. Params: "See Params",
  742. Copy: "Copy Prompt",
  743. Delete: "Delete",
  744. Retry: "Retry",
  745. ReturnHome: "Return Home",
  746. History: "History",
  747. },
  748. EmptyRecord: "No images yet",
  749. Status: {
  750. Name: "Status",
  751. Success: "Success",
  752. Error: "Error",
  753. Wait: "Waiting",
  754. Running: "Running",
  755. },
  756. Danger: {
  757. Delete: "Confirm to delete?",
  758. },
  759. GenerateParams: "Generate Params",
  760. Detail: "Detail",
  761. },
  762. };
  763. export default en;