share-app.en.ts 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. newChatDefaultName: "New conversation",
  10. powerBy: "Powered by",
  11. prompt: "Prompt",
  12. privatePromptConfigTitle: "Conversation settings",
  13. publicPromptConfigTitle: "Initial Prompt",
  14. configStatusDes: "Before start, you can modify conversation settings",
  15. configDisabled:
  16. "Previous session settings have been used for this session.",
  17. startChat: "Start Chat",
  18. privacyPolicyLeft:
  19. "Please read the ",
  20. privacyPolicyMiddle:
  21. "privacy policy",
  22. privacyPolicyRight:
  23. " provided by the app developer.",
  24. },
  25. generation: {
  26. tabs: {
  27. create: "Create",
  28. saved: "Saved",
  29. },
  30. savedNoData: {
  31. title: "You haven't saved a result yet!",
  32. description: 'Start generating content, and find your saved results here.',
  33. startCreateContent: 'Start create content'
  34. },
  35. title: "AI Completion",
  36. queryTitle: "Query content",
  37. queryPlaceholder: "Write your query content...",
  38. run: "RUN",
  39. copy: "Copy",
  40. resultTitle: "AI Completion",
  41. noData: "AI will give you what you want here.",
  42. },
  43. };
  44. export default translation;