share-app.en.ts 2.3 KB

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