share-app.en.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. queryPlaceholder: 'Write your query content...',
  45. run: 'Execute',
  46. copy: 'Copy',
  47. resultTitle: 'AI Completion',
  48. noData: 'AI will give you what you want here.',
  49. csvUploadTitle: 'Drag and drop your CSV file here, or ',
  50. browse: 'browse',
  51. csvStructureTitle: 'The CSV file must conform to the following structure:',
  52. downloadTemplate: 'Download the template here',
  53. field: 'Field',
  54. errorMsg: {
  55. empty: 'Please input content in the uploaded file.',
  56. fileStructNotMatch: 'The uploaded CSV file not match the struct.',
  57. emptyLine: 'Row {{rowIndex}} is empty',
  58. invalidLine: 'Row {{rowIndex}}: variables value can not be empty',
  59. atLeastOne: 'Please input at least one row in the uploaded file.',
  60. },
  61. },
  62. }
  63. export default translation