share-app.ts 2.5 KB

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