app-log.en.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. const translation = {
  2. title: 'Logs & Annotations',
  3. description: 'The logs record the running status of the application, including user inputs and AI replies.',
  4. dateTimeFormat: 'MM/DD/YYYY hh:mm A',
  5. table: {
  6. header: {
  7. time: 'Time',
  8. endUser: 'End User',
  9. input: 'Input',
  10. output: 'Output',
  11. summary: 'Summary',
  12. messageCount: 'Message Count',
  13. userRate: 'User Rate',
  14. adminRate: 'Op. Rate',
  15. },
  16. pagination: {
  17. previous: 'Prev',
  18. next: 'Next',
  19. },
  20. empty: {
  21. noChat: 'No conversation yet',
  22. noOutput: 'No output',
  23. element: {
  24. title: 'Is anyone there?',
  25. content: 'Observe and annotate interactions between end-users and AI applications here to continuously improve AI accuracy. You can try <shareLink>sharing</shareLink> or <testLink>testing</testLink> the Web App yourself, then return to this page.',
  26. },
  27. },
  28. },
  29. detail: {
  30. time: 'Time',
  31. conversationId: 'Conversation ID',
  32. promptTemplate: 'Prompt Template',
  33. promptTemplateBeforeChat: 'Prompt Template Before Chat · As System Message',
  34. annotationTip: 'Improvements Marked by {{user}}',
  35. timeConsuming: '',
  36. second: 's',
  37. tokenCost: 'Token spent',
  38. loading: 'loading',
  39. operation: {
  40. like: 'like',
  41. dislike: 'dislike',
  42. addAnnotation: 'Add Improvement',
  43. editAnnotation: 'Edit Improvement',
  44. annotationPlaceholder: 'Enter the expected answer that you want AI to reply, which can be used for model fine-tuning and continuous improvement of text generation quality in the future.',
  45. },
  46. },
  47. filter: {
  48. period: {
  49. today: 'Today',
  50. last7days: 'Last 7 Days',
  51. last4weeks: 'Last 4 weeks',
  52. last3months: 'Last 3 months',
  53. last12months: 'Last 12 months',
  54. monthToDate: 'Month to date',
  55. quarterToDate: 'Quarter to date',
  56. yearToDate: 'Year to date',
  57. allTime: 'All time',
  58. },
  59. annotation: {
  60. all: 'All',
  61. annotated: 'Annotated Improvements ({{count}} items)',
  62. not_annotated: 'Not Annotated',
  63. },
  64. },
  65. }
  66. export default translation