share-app.ts 2.7 KB

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