app-log.ts 2.8 KB

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