app-log.ts 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. const translation = {
  2. title: 'Logs',
  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: 'Title',
  12. messageCount: 'Message Count',
  13. userRate: 'User Rate',
  14. adminRate: 'Op. Rate',
  15. startTime: 'START TIME',
  16. status: 'STATUS',
  17. runtime: 'RUN TIME',
  18. tokens: 'TOKENS',
  19. user: 'END-USER',
  20. version: 'VERSION',
  21. },
  22. pagination: {
  23. previous: 'Prev',
  24. next: 'Next',
  25. },
  26. empty: {
  27. noChat: 'No conversation yet',
  28. noOutput: 'No output',
  29. element: {
  30. title: 'Is anyone there?',
  31. 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.',
  32. },
  33. },
  34. },
  35. detail: {
  36. time: 'Time',
  37. conversationId: 'Conversation ID',
  38. promptTemplate: 'Prompt Template',
  39. promptTemplateBeforeChat: 'Prompt Template Before Chat · As System Message',
  40. annotationTip: 'Improvements Marked by {{user}}',
  41. timeConsuming: '',
  42. second: 's',
  43. tokenCost: 'Token spent',
  44. loading: 'loading',
  45. operation: {
  46. like: 'like',
  47. dislike: 'dislike',
  48. addAnnotation: 'Add Improvement',
  49. editAnnotation: 'Edit Improvement',
  50. 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.',
  51. },
  52. variables: 'Variables',
  53. uploadImages: 'Uploaded Images',
  54. },
  55. filter: {
  56. period: {
  57. today: 'Today',
  58. last7days: 'Last 7 Days',
  59. last4weeks: 'Last 4 weeks',
  60. last3months: 'Last 3 months',
  61. last12months: 'Last 12 months',
  62. monthToDate: 'Month to date',
  63. quarterToDate: 'Quarter to date',
  64. yearToDate: 'Year to date',
  65. allTime: 'All time',
  66. },
  67. annotation: {
  68. all: 'All',
  69. annotated: 'Annotated Improvements ({{count}} items)',
  70. not_annotated: 'Not Annotated',
  71. },
  72. },
  73. workflowTitle: 'Workflow Logs',
  74. workflowSubtitle: 'The log recorded the operation of Automate.',
  75. runDetail: {
  76. title: 'Conversation Log',
  77. workflowTitle: 'Log Detail',
  78. },
  79. promptLog: 'Prompt Log',
  80. agentLog: 'Agent Log',
  81. viewLog: 'View Log',
  82. agentLogDetail: {
  83. agentMode: 'Agent Mode',
  84. toolUsed: 'Tool Used',
  85. iterations: 'Iterations',
  86. iteration: 'Iteration',
  87. finalProcessing: 'Final Processing',
  88. },
  89. }
  90. export default translation