share-app.ts 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. const translation = {
  2. common: {
  3. welcome: '',
  4. appUnavailable: 'App is unavailable',
  5. appUnknownError: 'App is unavailable',
  6. },
  7. chat: {
  8. newChat: 'Start New chat',
  9. chatSettingsTitle: 'New chat setup',
  10. chatFormTip: 'Chat settings cannot be modified after the chat has started.',
  11. pinnedTitle: 'Pinned',
  12. unpinnedTitle: 'Recent',
  13. newChatDefaultName: 'New conversation',
  14. resetChat: 'Reset conversation',
  15. viewChatSettings: 'View chat settings',
  16. poweredBy: 'Powered by',
  17. prompt: 'Prompt',
  18. privatePromptConfigTitle: 'Conversation settings',
  19. publicPromptConfigTitle: 'Initial Prompt',
  20. configStatusDes: 'Before starting, you can modify the conversation settings',
  21. configDisabled:
  22. 'Previous session settings have been used for this session.',
  23. startChat: 'Start Chat',
  24. privacyPolicyLeft:
  25. 'Please read the ',
  26. privacyPolicyMiddle:
  27. 'privacy policy',
  28. privacyPolicyRight:
  29. ' provided by the app developer.',
  30. deleteConversation: {
  31. title: 'Delete conversation',
  32. content: 'Are you sure you want to delete this conversation?',
  33. },
  34. tryToSolve: 'Try to solve',
  35. temporarySystemIssue: 'Sorry, temporary system issue.',
  36. },
  37. generation: {
  38. tabs: {
  39. create: 'Run Once',
  40. batch: 'Run Batch',
  41. saved: 'Saved',
  42. },
  43. savedNoData: {
  44. title: 'You haven\'t saved a result yet!',
  45. description: 'Start generating content, and find your saved results here.',
  46. startCreateContent: 'Start create content',
  47. },
  48. title: 'AI Completion',
  49. queryTitle: 'Query content',
  50. completionResult: 'Completion result',
  51. queryPlaceholder: 'Write your query content...',
  52. run: 'Execute',
  53. execution: 'EXECUTION',
  54. executions: '{{num}} EXECUTIONS',
  55. copy: 'Copy',
  56. resultTitle: 'AI Completion',
  57. noData: 'AI will give you what you want here.',
  58. csvUploadTitle: 'Drag and drop your CSV file here, or ',
  59. browse: 'browse',
  60. csvStructureTitle: 'The CSV file must conform to the following structure:',
  61. downloadTemplate: 'Download the template here',
  62. field: 'Field',
  63. batchFailed: {
  64. info: '{{num}} failed executions',
  65. retry: 'Retry',
  66. outputPlaceholder: 'No output content',
  67. },
  68. errorMsg: {
  69. empty: 'Please input content in the uploaded file.',
  70. fileStructNotMatch: 'The uploaded CSV file not match the struct.',
  71. emptyLine: 'Row {{rowIndex}} is empty',
  72. invalidLine: 'Row {{rowIndex}}: {{varName}} value can not be empty',
  73. moreThanMaxLengthLine: 'Row {{rowIndex}}: {{varName}} value can not be more than {{maxLength}} characters',
  74. atLeastOne: 'Please input at least one row in the uploaded file.',
  75. },
  76. },
  77. }
  78. export default translation