en.ts 20 KB

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