en.ts 21 KB

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