share-app.en.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. },
  31. generation: {
  32. tabs: {
  33. create: 'Run Once',
  34. batch: 'Run Batch',
  35. saved: 'Saved',
  36. },
  37. savedNoData: {
  38. title: 'You haven\'t saved a result yet!',
  39. description: 'Start generating content, and find your saved results here.',
  40. startCreateContent: 'Start create content',
  41. },
  42. title: 'AI Completion',
  43. queryTitle: 'Query content',
  44. completionResult: 'Completion result',
  45. queryPlaceholder: 'Write your query content...',
  46. run: 'Execute',
  47. copy: 'Copy',
  48. resultTitle: 'AI Completion',
  49. noData: 'AI will give you what you want here.',
  50. csvUploadTitle: 'Drag and drop your CSV file here, or ',
  51. browse: 'browse',
  52. csvStructureTitle: 'The CSV file must conform to the following structure:',
  53. downloadTemplate: 'Download the template here',
  54. field: 'Field',
  55. errorMsg: {
  56. empty: 'Please input content in the uploaded file.',
  57. fileStructNotMatch: 'The uploaded CSV file not match the struct.',
  58. emptyLine: 'Row {{rowIndex}} is empty',
  59. invalidLine: 'Row {{rowIndex}}: variables value can not be empty',
  60. atLeastOne: 'Please input at least one row in the uploaded file.',
  61. },
  62. },
  63. }
  64. export default translation